/* ============================================================
   Marketing Simba — assets/css/style.css
   ============================================================ */

/* --- Root Variables --- */
:root {
  --bg-dark: #060d12;
  --bg-secondary: #091620;
  --bg-card: #0d1f2c;
  --gold: #1cc9e8;
  --gold-light: #4ddaf2;
  --text-body: #cce0eb;
  --text-muted: #5a7d90;
  --cream: #eaf5f9;
  /* Updated: Space Grotesk for display, DM Sans for body */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --radius: 6px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--gold-light);
}

a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

section {
  padding: 5rem 5%;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-dark);
  box-shadow: 0 6px 24px rgba(28, 201, 232, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: var(--gold);
  color: var(--gold);
  background-color: transparent;
}

.btn-dark {
  background-color: var(--bg-dark);
  color: var(--gold);
  border-color: var(--bg-dark);
}

/* --- Section Divider --- */
.section-divider {
  width: 48px;
  height: 2px;
  background-color: var(--gold);
  margin: 1rem 0 1.75rem;
  opacity: 0.6;
  border-radius: 2px;
}

/* --- Placeholder image utility --- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-rounded {
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(13, 13, 13, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 201, 232, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(13, 13, 13, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(28, 201, 232, 0.15);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.nav-logo:hover,
.nav-logo:focus {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(232, 226, 217, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--cream);
}

.nav-cta {
  flex-shrink: 0;
}

/* Compact nav CTA — stands out without overpowering the nav */
.btn-nav {
  display: inline-block;
  padding: 0.38rem 1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--bg-dark);
  background-color: var(--gold);
  border: 1.5px solid var(--gold);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-nav:hover,
.btn-nav:focus {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-dark);
  box-shadow: 0 0 0 3px rgba(28, 201, 232, 0.2);
  transform: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-body);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO  — video background, ref.png layout
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 5% 5rem;
}

/* Video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark gradient overlay — heavier on left so text is legible */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 13, 18, 0.92) 0%,
    rgba(6, 13, 18, 0.75) 50%,
    rgba(6, 13, 18, 0.30) 100%
  );
  z-index: 1;
}

/* Bottom fade so hero blends into next section */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-secondary), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Pill badge — matches ref.png style */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  padding: 0.35rem 0.9rem 0.35rem 0.4rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px);
}

.badge-tag {
  background-color: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(232, 226, 217, 0.85);
  letter-spacing: 0.02em;
}

#hero h1 {
  max-width: 740px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-sub {
  max-width: 580px;
  font-size: 1.1rem;
  color: rgba(232, 226, 217, 0.72);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: center;
}

.hero-trust {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

.hero-trust span {
  color: rgba(28, 201, 232, 0.45);
  margin: 0 0.5rem;
}

/* Fade-in animations (hero elements) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.65s ease forwards;
}
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.25s; }
.fade-in-delay-3 { animation-delay: 0.4s; }
.fade-in-delay-4 { animation-delay: 0.55s; }
.fade-in-delay-5 { animation-delay: 0.7s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-top-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.service-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.5rem;
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  color: var(--cream);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.services-cta {
  text-align: center;
  padding-top: 1rem;
}

.services-cta p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background-color: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-label,
.about-text h2,
.about-text .section-divider {
  display: block;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.about-text p:first-of-type {
  color: var(--text-body);
  font-size: 1.05rem;
}

.about-cta-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-display);
}

.about-cta-link:hover {
  color: var(--gold-light);
}

/* Right column: image + stat overlay */
.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stat-overlay {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--bg-card);
  border: 1px solid rgba(28, 201, 232, 0.25);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.stat-number-large {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
  max-width: 160px;
}

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.process-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  pointer-events: none;
}

.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.process-connector {
  position: absolute;
  top: 27px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(28, 201, 232, 0.15) 100%);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 0.875rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--cream);
}

.process-step p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team image strip below steps */
.process-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.process-img-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.process-img-row img:hover {
  opacity: 1;
}

/* ============================================================
   SEO
   ============================================================ */
#seo {
  background-color: var(--bg-dark);
}

.seo-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.seo-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.seo-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.seo-content p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.local-seo {
  margin-top: 2.5rem;
}

.local-seo p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}

.stat-item {
  background-color: var(--bg-card);
  padding: 2rem 1.25rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.result-callout {
  background-color: var(--bg-card);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.result-callout h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.result-callout ul li {
  font-size: 0.95rem;
  color: var(--text-body);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.result-callout ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   WEB DESIGN
   ============================================================ */
#webdesign {
  background-color: var(--bg-secondary);
}

.webdesign-intro {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.webdesign-intro p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.webdesign-hero-img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}

.webdesign-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.webdesign-closing {
  max-width: 680px;
  color: var(--text-muted) !important;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ============================================================
   MORE SERVICES — TABS
   ============================================================ */
#more-services {
  background-color: var(--bg-dark);
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.85rem 1.75rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
  margin-bottom: -1px;
}

.tab-btn:hover { color: var(--text-body); }

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
}

.tab-panel-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
}

.tab-panel-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.tab-panel-img {
  border-radius: var(--radius);
  overflow: hidden;
}

.tab-panel-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================================
   RESULTS
   ============================================================ */
#results {
  background-color: var(--bg-secondary);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.result-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.result-card:hover {
  border-color: rgba(28, 201, 232, 0.3);
  transform: translateY(-4px);
}

.result-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.result-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.result-card:hover .result-card-img img {
  transform: scale(1.05);
}

.result-card-body {
  padding: 2rem;
}

.result-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.result-stats {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.result-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.result-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.results-cta {
  text-align: center;
}

.results-cta p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  background-color: var(--bg-dark);
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 5rem;
  align-items: start;
}

.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pillar-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease;
}

.pillar-card:hover {
  transform: translateX(4px);
}

.pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.benefits-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
}

.benefits-checklist li {
  font-size: 0.92rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check-mark {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Right column image */
.why-us-img-col {
  position: sticky;
  top: 90px;
}

.why-us-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.why-us-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.why-us-img-secondary {
  border-radius: var(--radius);
  overflow: hidden;
}

.why-us-img-secondary img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.035;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
  display: block;
  margin-bottom: -0.4rem;
  user-select: none;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  font-family: var(--font-display);
}

.author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
#industries {
  background-color: var(--bg-dark);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.industry-item {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.industry-item:hover {
  border-color: rgba(28, 201, 232, 0.3);
  transform: translateY(-3px);
}

.industry-item-img {
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.industry-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.industry-item:hover .industry-item-img img {
  transform: scale(1.06);
}

.industry-item-label {
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.industry-icon {
  font-size: 1.1rem;
}

.industry-item-label span:last-child {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
}

.roofing-spotlight {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 380px;
  border-left: 4px solid var(--gold);
}

.roofing-spotlight-text {
  padding: 2.5rem 3rem;
}

.roofing-spotlight-text h3 {
  margin-bottom: 0.875rem;
}

.roofing-spotlight-text p {
  color: var(--text-muted);
}

.roofing-spotlight-img {
  overflow: hidden;
}

.roofing-spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.newsletter-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  pointer-events: none;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-inner h2 {
  margin-bottom: 0.75rem;
}

.newsletter-inner .sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.newsletter-form .full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color 0.2s ease;
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus {
  border-color: var(--gold);
  outline: none;
}

/* ============================================================
   CONTACT CTA BANNER
   ============================================================ */
#contact {
  background-color: #05111a;
  background-image: linear-gradient(135deg, rgba(28, 201, 232, 0.08) 0%, transparent 60%);
  border-top: 1px solid rgba(28, 201, 232, 0.18);
  text-align: center;
  padding: 6rem 5%;
}

#contact h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 1rem;
}

.contact-sub {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.contact-secondary-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.contact-secondary-link:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background-color: #040c11;
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: var(--text-body); }

.footer-contact-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer-social a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-wrap { aspect-ratio: 16 / 7; }
  .about-stat-overlay { position: static; margin-top: 1.5rem; display: inline-block; }
  .seo-layout { grid-template-columns: 1fr; }
  .seo-img-wrap { position: static; }
  .seo-img-wrap img { aspect-ratio: 16 / 6; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-panel-img { display: none; }
  .why-us-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-us-img-col { position: static; }
  .roofing-spotlight { grid-template-columns: 1fr; }
  .roofing-spotlight-img { height: 200px; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 3.5rem 5%; }

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background-color: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.75rem 0 1rem;
    border-bottom: 1px solid rgba(28, 201, 232, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 5%; width: 100%; font-size: 0.95rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* Grid collapses */
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .pillars-grid { flex-direction: column; }
  .benefits-checklist { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .process-img-row { grid-template-columns: 1fr; }

  /* Process vertical */
  .process-steps { flex-direction: column; gap: 1.5rem; }
  .process-connector { display: none; }
  .process-step { text-align: left; display: flex; gap: 1.25rem; align-items: flex-start; padding: 0; }
  .step-number { flex-shrink: 0; margin: 0; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  /* Tabs */
  .tabs-nav { flex-direction: column; border-bottom: none; gap: 0.25rem; }
  .tab-btn { border-bottom: none; border-left: 3px solid transparent; text-align: left; padding: 0.7rem 1rem; }
  .tab-btn.active { border-bottom: none; border-left-color: var(--gold); }

  /* Roofing spotlight */
  .roofing-spotlight { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form .full-width { grid-column: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
