/* ================================================================
   DIGITAL GROWTH PARTNERS — LUXURY PREMIUM CSS
   Version 2.0 | Full Redesign with Premium Aesthetics
   ================================================================ */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  /* Core Brand */
  --navy:       #0a1628;
  --navy-mid:   #0d2044;
  --teal:       #00c2cb;
  --teal-light: #33d4dc;
  --gold:       #c9a227;
  --gold-light: #e2b93b;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --mist:       #edf1f7;

  /* Text */
  --text-h:   #0a1628;
  --text-b:   #3d4e63;
  --text-sm:  #6b7a90;

  /* Gradients */
  --g-brand:   linear-gradient(135deg, #0a1628 0%, #0d4b6e 100%);
  --g-teal:    linear-gradient(135deg, #00b4d8 0%, #00c2cb 100%);
  --g-gold:    linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
  --g-hero:    linear-gradient(120deg, rgba(10,22,40,0.97) 0%, rgba(13,64,110,0.92) 55%, rgba(0,194,203,0.15) 100%);

  /* Shadows */
  --s-xs:  0 2px 8px  rgba(10,22,40,0.08);
  --s-sm:  0 4px 16px rgba(10,22,40,0.10);
  --s-md:  0 8px 32px rgba(10,22,40,0.12);
  --s-lg:  0 16px 48px rgba(10,22,40,0.16);
  --s-xl:  0 24px 72px rgba(10,22,40,0.22);
  --s-teal: 0 8px 32px rgba(0,194,203,0.28);
  --s-gold: 0 8px 32px rgba(201,162,39,0.30);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Spacing */
  --section-pad: 110px 0;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-b);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   HEADER & NAVIGATION — Matched to logo style
   ================================================================ */

.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  /* Same light grey-blue as the logo box */
  background: #A0A9AB;
  /*background: linear-gradient(135deg, #dce6ed 0%, #c8d8e4 50%, #bccfdc 100%);*/
  border-bottom: 1px solid rgba(0, 60, 90, 0.12);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255,255,255,0.5) inset;
  transition: all 0.35s ease;
  will-change: transform;
  transform: translateY(0) !important;
}

/* Scrolled — slightly deeper */
/* Scrolled — same color, just tighter shadow */
.main-header.scrolled {
  background: #A0A9AB;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12),
              0 1px 0 rgba(255, 255, 255, 0.5) inset;
  border-bottom-color: rgba(0, 60, 90, 0.12);

}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
  transition: height 0.35s ease;
}

/* Shrink on scroll */
.main-header.scrolled .navbar { height: 62px; }
.main-header.scrolled .logo-img { height: 50px; }

/* ─── LOGO ─── */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo a:hover .logo-img {
  transform: scale(1.03);
  opacity: 0.9;
}

/* ─── NAV MENU — Matches logo dark navy text ─── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a,
.nav-menu > li > .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  /* Dark navy — same as "Digital" in logo */
  color: #0c2840;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 6px;
  transition: all 0.22s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  white-space: nowrap;
  position: relative;
}

/* Underline accent on hover — matches logo teal */
.nav-menu > li > a::after,
.nav-menu > li > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: #0aabcc;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > .nav-link:hover::after,
.nav-menu > li > a.active::after {
  transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li > .nav-link:hover {
  /* Logo teal on hover */
  color: #0aabcc;
  background: rgba(10, 171, 204, 0.08);
}

.nav-menu > li > a.active {
  color: #0aabcc;
  font-weight: 700;
}

/* ─── DROPDOWN CHEVRON ─── */
.nav-chevron {
  display: inline-block;
  width: 14px; height: 14px;
  transition: transform 0.3s ease;
  opacity: 0.5;
}
.nav-menu > li:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* ─── CALL NUMBER — same dark navy ─── */
.btn-call {
  color: #0c2840;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.25s;
  white-space: nowrap;
}
.btn-call:hover { color: #0aabcc; }

/* ─── GET STARTED BUTTON — logo teal ─── */
.btn-primary {
  background: linear-gradient(135deg, #0aabcc 0%, #008fa8 100%);
  color: #ffffff;
  padding: 11px 26px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(10, 171, 204, 0.35);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 171, 204, 0.5);
  background: linear-gradient(135deg, #0cbdd8 0%, #009ebb 100%);
}
.btn-primary.large { padding: 16px 38px; font-size: 16px; border-radius: 10px; }

/* ─── SECONDARY BUTTON ─── */
.btn-secondary {
  background: transparent;
  color: #0c2840;
  padding: 10px 24px;
  border: 2px solid rgba(12, 40, 64, 0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: all 0.28s ease;
}
.btn-secondary:hover {
  border-color: #0aabcc;
  color: #0aabcc;
  background: rgba(10, 171, 204, 0.06);
}
.btn-secondary.large { padding: 16px 38px; font-size: 16px; border-radius: 10px; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: none;
  border: none;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(10, 171, 204, 0.1); }
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: #0c2840;
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── DROPDOWN PANEL ─── */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  border: 1px solid rgba(0, 100, 140, 0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(0, 50, 90, 0.16);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s var(--ease);
  z-index: 1000;
  padding: 10px;
}

/* Wide mega dropdown */
.dropdown.mega {
  width: 700px;
  left: -160px;
  transform: none;
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu > li:hover .dropdown.mega {
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #0a2d4a;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: all 0.2s var(--ease);
}

.dropdown a:hover {
  color: #007a8a;
  background: rgba(0, 140, 160, 0.07);
}

.dropdown a .drop-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 140, 160, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.dropdown a:hover .drop-icon { background: rgba(0, 140, 160, 0.15); }

/* Mega columns */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
}

.mega-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #007a8a;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px 6px;
  border-bottom: 1px solid rgba(0, 140, 160, 0.12);
  margin-bottom: 4px;
}

/* ─── NAV CTA ─── */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-call {
  color: #0a2d4a;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color 0.25s;
}

.btn-call:hover { color: #007a8a; }

.btn-primary {
  background: linear-gradient(135deg, #007a8a 0%, #009aaa 100%);
  color: #ffffff;
  padding: 10px 24px;
  border: none;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s var(--spring);
  box-shadow: 0 4px 18px rgba(0, 130, 150, 0.35);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 130, 150, 0.45);
}

.btn-primary:hover::after { background: rgba(255,255,255,0.1); }

.btn-primary.large { padding: 16px 38px; font-size: 16px; border-radius: var(--r-md); }

.btn-secondary {
  background: transparent;
  color: #0a2d4a;
  padding: 10px 24px;
  border: 1.5px solid rgba(10, 45, 74, 0.3);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
  border-color: #007a8a;
  color: #007a8a;
  background: rgba(0, 140, 160, 0.06);
}

.btn-secondary.large { padding: 16px 38px; font-size: 16px; border-radius: var(--r-md); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
  background: none;
  border: none;
}

.hamburger:hover { background: rgba(0, 140, 160, 0.1); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #0a2d4a;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO SECTION — Dark luxury with real background
   ================================================================ */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

/* Real premium background — dark city/tech aesthetic */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.4) contrast(1.1);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-hero);
  z-index: 1;
}

/* Gold accent lines + decorative blobs like reference sites */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,194,203,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 15% 80%, rgba(201,162,39,0.08) 0%, transparent 60%),
    /* Top-left decorative blob — like Thrive reference */
    radial-gradient(ellipse 35% 45% at -5% 5%, rgba(0,194,203,0.18) 0%, transparent 55%),
    /* Bottom-right decorative blob */
    radial-gradient(ellipse 30% 40% at 105% 95%, rgba(0,154,170,0.14) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.06));
  color: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.gradient-text {
  background: var(--g-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 520px;
}

/* ─── READ MORE BUTTON ─── */
.read-more-section { margin-bottom: 36px; }

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(0,194,203,0.4);
  padding: 11px 22px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s var(--ease);
}

.btn-read-more:hover {
  background: rgba(0,194,203,0.1);
  border-color: var(--teal);
}

.arrow-icon {
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.btn-read-more.open .arrow-icon { transform: rotate(180deg); }

/* Expandable content */
.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}

.expandable-content.open {
  max-height: 2000px;
  opacity: 1;
}

.expandable-inner {
  background: rgba(0,194,203,0.06);
  border: 1px solid rgba(0,194,203,0.15);
  border-radius: var(--r-md);
  padding: 30px;
  margin-top: 16px;
  color: rgba(255,255,255,0.8);
}

.expandable-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.expandable-inner h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin: 18px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expandable-inner p { font-size: 14.5px; line-height: 1.75; margin-bottom: 10px; }

.expandable-inner ul { padding-left: 0; margin: 8px 0; }

.expandable-inner li {
  padding: 5px 0 5px 22px;
  font-size: 14px;
  position: relative;
}

.expandable-inner li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.closing-text { color: var(--gold-light) !important; font-weight: 600 !important; }

/* ─── HERO STATS ─── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}

.stat-item:hover {
  background: rgba(0,194,203,0.1);
  border-color: rgba(0,194,203,0.3);
  transform: translateY(-3px);
}

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-item p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* "Start Growing Today" — bold orange CTA like Thrive/Techmagnate reference */
.hero-cta .btn-primary {
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--r-sm);
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(232, 93, 4, 0.45);
  transition: all 0.32s var(--spring);
}

.hero-cta .btn-primary:hover {
  background: linear-gradient(135deg, #c94d00 0%, #e07a00 100%);
  box-shadow: 0 10px 36px rgba(232, 93, 4, 0.55);
  transform: translateY(-3px);
}


.hero-cta .btn-secondary {
  background: #ffffff;
  color: #0a2d4a;
  border: 2px solid #ffffff;
  border-radius: var(--r-sm);
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(255,255,255,0.25), 0 2px 8px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.32s var(--spring);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Animated teal sweep on hover — like Techmagnate CTA */
.hero-cta .btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #007a8a 0%, #009aaa 100%);
  transform: translateX(-101%);
  transition: transform 0.38s var(--ease);
  z-index: 0;
}

.hero-cta .btn-secondary:hover::before {
  transform: translateX(0);
}

.hero-cta .btn-secondary span,
.hero-cta .btn-secondary {
  position: relative;
  z-index: 1;
}

.hero-cta .btn-secondary:hover {
  color: #ffffff;
  border-color: #009aaa;
  box-shadow: 0 8px 32px rgba(0, 154, 170, 0.45);
  transform: translateY(-3px);
}

/* ─── HERO RIGHT — Floating Cards ─── */
.hero-right { position: relative; }

.hero-image {
  position: relative;
  height: 500px;
}

.hero-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  border: 1px solid rgba(0,194,203,0.12);
  border-radius: 50%;
  animation: pulseRing 4s ease-in-out infinite;
}

.hero-circle::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(0,194,203,0.08);
  border-radius: 50%;
}

@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50%       { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}

.floating-card {
  position: absolute;
  background: rgba(10,22,40,0.85);
  border: 1px solid rgba(0,194,203,0.2);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--s-lg);
  backdrop-filter: blur(12px);
  min-width: 180px;
}

.card-1 { top: 8%;  left: 0;   animation: float1 3.5s ease-in-out infinite; }
.card-2 { top: 45%; right: 0;  animation: float2 4s   ease-in-out infinite; }
.card-3 { bottom: 12%; left: 8%; animation: float3 3.8s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-14px)} }
@keyframes float2 { 0%,100%{transform:translateY(-8px)} 50%{transform:translateY(6px)} }
@keyframes float3 { 0%,100%{transform:translateY(4px)} 50%{transform:translateY(-12px)} }

.card-icon { font-size: 28px; flex-shrink: 0; }

.card-content h4 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-content p {
  font-size: 17px;
  font-weight: 800;
  color: var(--teal);
  margin: 0;
}

/* ================================================================
   SEO HERO / FORM SECTION
   ================================================================ */

.seo-hero {
  background: var(--off-white);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  padding: 80px 0;
}

.seo-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.seo-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.2;
  margin-bottom: 30px;
}

.seo-hero-content h1 span { color: var(--teal); }

.trust-points { padding: 0; }

.trust-points li {
  padding: 9px 0 9px 28px;
  font-size: 15px;
  color: var(--text-b);
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-points li:last-child { border-bottom: none; }

.trust-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-points li::after {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--navy);
  z-index: 1;
}

/* Lead Form */
.seo-lead-form {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--s-xl);
  border: 1px solid rgba(0,194,203,0.15);
}

.seo-lead-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

.seo-lead-form input,
.seo-lead-form select,
.seo-lead-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  margin-bottom: 14px;
  transition: border-color 0.25s;
  outline: none;
}

.seo-lead-form input::placeholder,
.seo-lead-form textarea::placeholder { color: rgba(255,255,255,0.35); }

.seo-lead-form input:focus,
.seo-lead-form select:focus,
.seo-lead-form textarea:focus { border-color: var(--teal); }

.seo-lead-form select { color: rgba(255,255,255,0.7); }

.seo-lead-form select option { background: var(--navy); color: var(--white); }

.seo-lead-form textarea { resize: vertical; min-height: 80px; }

.seo-lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  margin-bottom: 18px;
  cursor: pointer;
  line-height: 1.5;
}

.seo-lead-form .consent input[type=checkbox] { margin-top: 2px; flex-shrink: 0; }

.seo-lead-form button[type=submit] {
  width: 100%;
  background: var(--g-teal);
  color: var(--navy);
  border: none;
  border-radius: var(--r-sm);
  padding: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s var(--spring);
  letter-spacing: 0.3px;
}

.seo-lead-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: var(--s-teal);
}

/* ================================================================
   SECTION SHARED STYLES
   ================================================================ */

.section-header {
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header.centered { text-align: center; }

.section-badge {
  display: inline-block;
  background: rgba(0,194,203,0.1);
  color: var(--teal);
  border: 1px solid rgba(0,194,203,0.25);
  padding: 6px 18px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-sm);
  line-height: 1.7;
}

.highlight-text { color: var(--teal); }
.highlight-primary { color: var(--teal); }

/* ================================================================
   SERVICES SECTION — Dark Futuristic AI Premium
   ================================================================ */

.services-section {
  padding: var(--section-pad);
  background: #060d1a;
  position: relative;
  overflow: hidden;
}

/* ── Deep space mesh background ── */
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%,  rgba(0,194,203,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 75%,  rgba(0,100,200,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 50%,  rgba(10,22,40,0.95)  0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* ── Animated grid lines overlay ── */
.services-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,203,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,203,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.services-section .container { position: relative; z-index: 1; }

/* Section header on dark bg */
.services-section .section-header h2 { color: #ffffff; }
.services-section .section-header p  { color: rgba(255,255,255,0.55); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

/* ── Service Card — Futuristic glass panel ── */
.service-card {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.02) 50%,
    rgba(0,194,203,0.04) 100%
  );
  border: 1px solid rgba(0,194,203,0.18);
  border-radius: 18px;
  padding: 38px 32px;
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Layered depth shadows */
  box-shadow:
    0 0 0 1px rgba(0,194,203,0.08),
    0 8px 32px rgba(0,0,0,0.4),
    0 2px 8px rgba(0,194,203,0.06),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ── Corner glow accent ── */
.service-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 80px;
  background: conic-gradient(
    from 180deg at 0% 0%,
    rgba(0,194,203,0.7) 0deg,
    rgba(0,100,200,0.4) 60deg,
    transparent 120deg
  );
  border-radius: 18px 0 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ── Bottom scanning line ── */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,194,203,0.8) 40%,
    rgba(0,160,220,0.9) 60%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { transform: scaleX(1); }

.service-card:hover {
  border-color: rgba(0,194,203,0.45);
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(0,194,203,0.25),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(0,194,203,0.12),
    0 0 80px rgba(0,194,203,0.06),
    inset 0 1px 0 rgba(255,255,255,0.1);
  background: linear-gradient(145deg,
    rgba(0,194,203,0.08) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(0,100,200,0.06) 100%
  );
}

/* ── Service icon — glowing circle ── */
.service-icon {
  font-size: 38px;
  margin-bottom: 22px;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,194,203,0.1);
  border: 1px solid rgba(0,194,203,0.2);
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow:
    0 0 16px rgba(0,194,203,0.1),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-card:hover .service-icon {
  background: rgba(0,194,203,0.18);
  border-color: rgba(0,194,203,0.45);
  box-shadow:
    0 0 24px rgba(0,194,203,0.25),
    0 0 8px rgba(0,194,203,0.15),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.service-card > p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.75;
}

/* ── Feature list on dark ── */
.service-features { padding: 0; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }

.service-features li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.service-features li:last-child { border-bottom: none; }

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00c2cb;
  font-weight: 800;
  font-size: 12px;
  background: rgba(0,194,203,0.12);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 9px;
  text-indent: 3px;
}

/* ================================================================
   PROCESS SECTION
   ================================================================ */

.process-section {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(0,194,203,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201,162,39,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.process-section .section-header h2 { color: var(--white); }
.process-section .section-header p { color: rgba(255,255,255,0.6); }

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: start;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 44px;
  top: 90px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(to bottom, rgba(0,194,203,0.5), rgba(0,194,203,0.05));
}

.step-number {
  width: 90px; height: 90px;
  background: rgba(0,194,203,0.12);
  border: 2px solid rgba(0,194,203,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.process-step:hover .step-number {
  background: rgba(0,194,203,0.2);
  border-color: var(--teal);
  box-shadow: 0 0 0 8px rgba(0,194,203,0.08);
}

.step-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px 32px;
  border-radius: var(--r-lg);
  transition: all 0.3s var(--ease);
}

.process-step:hover .step-content {
  background: rgba(0,194,203,0.07);
  border-color: rgba(0,194,203,0.2);
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.step-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   SEO RESULTS SECTION
   ================================================================ */

.seo-results-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.result-column {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--mist);
  box-shadow: var(--s-sm);
  transition: box-shadow 0.3s var(--ease);
}

.result-column:hover { box-shadow: var(--s-lg); }

.website-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.result-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sm);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-heading span { color: var(--text-h); }

.keyword-list { display: flex; flex-direction: column; gap: 10px; }

.keyword-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--text-b);
  font-weight: 500;
}

.position-badge {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  color: white;
}

.badge-1 { background: #16a34a; }
.badge-2 { background: #0284c7; }
.badge-5 { background: #7c3aed; }
.badge-6 { background: #b45309; }
.badge-7 { background: #dc2626; }
.badge-8 { background: #9ca3af; }

/* ================================================================
   CASE STUDIES
   ================================================================ */

.case-studies-section {
  padding: var(--section-pad);
  background: var(--white);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.case-study-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--mist);
  transition: all 0.35s var(--ease);
}

.case-study-card:hover {
  box-shadow: var(--s-lg);
  transform: translateY(-5px);
  border-color: rgba(0,194,203,0.2);
}

.case-study-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.case-study-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.case-study-card:hover .case-study-image img { transform: scale(1.06); }

.case-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-badge-digital {
  background: var(--teal);
  color: var(--navy);
}

.case-study-content { padding: 24px 26px; }

.case-study-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 18px;
  line-height: 1.4;
}

.btn-case-study {
  background: none;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s var(--ease);
}

.btn-case-study:hover {
  background: var(--teal);
  color: var(--navy);
}

.view-all-container { text-align: center; margin-top: 10px; }

.btn-view-all {
  background: none;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 12px 36px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s var(--ease);
}

.btn-view-all:hover {
  background: var(--navy);
  color: var(--white);
}

/* ================================================================
   REPORTS SECTION
   ================================================================ */

.reports-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.report-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--mist);
  transition: all 0.35s var(--ease);
}

.report-card:hover { box-shadow: var(--s-lg); transform: translateY(-4px); }

.report-image {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
}

.report-diagnostics {
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
}

.report-cosmetics {
  background: linear-gradient(135deg, #5c0d6b, #b02367);
}

.report-baby {
  background: linear-gradient(135deg, #1a4a7a, #0d8fc7);
}

.report-image h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.report-image p { color: rgba(255,255,255,0.65); font-size: 13px; }

.report-content { padding: 22px 24px; }

.report-category {
  display: inline-block;
  background: rgba(0,194,203,0.1);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.report-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 18px;
  line-height: 1.4;
}

.btn-download {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}

.btn-download:hover { color: var(--navy); }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mist);
  transition: all 0.25s;
  cursor: pointer;
}

.dot.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* ================================================================
   SUCCESS STORIES
   ================================================================ */

.success-stories-section {
  padding: var(--section-pad);
  background: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.story-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.story-card:hover { box-shadow: var(--s-lg); transform: translateY(-4px); }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.story-content { padding: 24px 28px; }

.story-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 20px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  text-align: center;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--r-sm);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-green { color: #16a34a !important; }
.stat-teal { color: var(--teal) !important; }

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sm);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.stat-label-green { color: #16a34a !important; }
.stat-label-teal { color: var(--teal) !important; }

/* ================================================================
   FREE SEO AUDIT
   ================================================================ */

.free-audit-section {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.free-audit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(0,194,203,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.audit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.audit-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 32px;
}

.highlight-green { color: var(--teal); }

.audit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.audit-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.25s;
}

.audit-form input::placeholder { color: rgba(255,255,255,0.35); }
.audit-form input:focus { border-color: var(--teal); }

.btn-audit-submit {
  grid-column: 1 / -1;
  background: var(--g-gold);
  color: var(--navy);
  border: none;
  border-radius: var(--r-sm);
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--spring);
  box-shadow: var(--s-gold);
}

.btn-audit-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,162,39,0.45); }

.audit-right img {
  border-radius: var(--r-lg);
  box-shadow: var(--s-xl);
  width: 100%;
  object-fit: cover;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */

.why-choose-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.why-choose-section .section-header {
  max-width: 900px;
  text-align: left;
}

.section-subtitle {
  font-size: 19px;
  color: var(--text-sm);
  font-weight: 500;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: center;
}

.why-choose-content { display: flex; flex-direction: column; gap: 36px; }

.intro-text p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-b);
}

.team-cta-box {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 38px 36px;
  border: 1px solid rgba(0,194,203,0.15);
}

.team-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.team-cta-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.btn-orange {
  background: var(--g-gold);
  color: var(--navy);
  padding: 14px 36px;
  border: none;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s var(--spring);
  box-shadow: var(--s-gold);
  letter-spacing: 0.5px;
}

.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,162,39,0.45); }

.why-choose-video { position: relative; }

.video-container {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s-xl);
}

.team-image { width: 100%; height: auto; display: block; }

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-container:hover .video-play-overlay { background: rgba(10,22,40,0.5); }

.video-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--spring);
}

.video-play-btn:hover { transform: scale(1.1); }

.company-description {
  max-width: 1000px;
  margin: 0 auto 60px;
}

.company-description p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-b);
  margin-bottom: 22px;
}

.company-description p:last-child {
  font-weight: 600;
  color: var(--text-h);
  font-size: 17.5px;
}

.benefits-luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.luxury-benefit-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 38px 28px;
  text-align: center;
  transition: all 0.38s var(--ease);
  position: relative;
  overflow: hidden;
}

.luxury-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-teal);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.luxury-benefit-card:hover::before { transform: scaleX(1); }

.luxury-benefit-card:hover {
  border-color: rgba(0,194,203,0.2);
  box-shadow: var(--s-lg);
  transform: translateY(-8px);
}

.luxury-icon {
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
}

.luxury-benefit-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 12px;
}

.luxury-benefit-card p {
  font-size: 14.5px;
  color: var(--text-sm);
  line-height: 1.75;
  margin: 0;
}

/* ================================================================
   KEY SERVICES SECTION
   ================================================================ */

.key-services-section {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.key-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300c2cb' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.key-services-section .section-header h2 { color: var(--white); }
.key-services-section .section-header p { color: rgba(255,255,255,0.6); }

.key-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.key-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  counter-increment: svc;
}

.key-service-card::before {
  content: attr(data-number);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(0,194,203,0.07);
  line-height: 1;
}

.key-service-card:hover {
  background: rgba(0,194,203,0.08);
  border-color: rgba(0,194,203,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.key-service-card .service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,194,203,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: initial;
  transition: background 0.3s;
}

.key-service-card:hover .service-icon { background: rgba(0,194,203,0.25); }

.key-service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.35;
}

.key-service-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

/* ================================================================
   PARTNERSHIP SECTION
   ================================================================ */

.partnership-section {
  padding: var(--section-pad);
  background: var(--white);
}

.partnership-section .section-header h2 { color: var(--text-h); }

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

.partnership-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  transition: all 0.35s var(--ease);
  position: relative;
}

.partnership-card:hover {
  box-shadow: var(--s-lg);
  border-color: rgba(0,194,203,0.2);
  transform: translateY(-5px);
}

.card-icon-wrap {
  width: 60px; height: 60px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.partnership-card:hover .card-icon-wrap { background: rgba(0,194,203,0.08); }

.partnership-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 12px;
}

.partnership-card p {
  font-size: 14px;
  color: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  width: 36px; height: 36px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}

.card-link:hover { background: var(--teal); }
.card-link:hover svg path { stroke: var(--navy); }

.highlight-card {
  background: var(--navy) !important;
  border-color: rgba(0,194,203,0.2) !important;
}

.highlight-card h3 { color: var(--white); }

.btn-cta {
  display: inline-block;
  background: var(--g-teal);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 800;
  transition: all 0.3s var(--spring);
  margin-top: 16px;
}

.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--s-teal); }

.values-section { border-top: 1px solid var(--mist); padding-top: 50px; }

.values-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 24px;
}

.values-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.value-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-full);
  padding: 10px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-h);
}

.badge-icon {
  width: 30px; height: 30px;
  background: rgba(0,194,203,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button-wrap { margin-left: auto; }

.btn-work-with-us {
  background: var(--g-brand);
  color: var(--white);
  padding: 13px 32px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s var(--spring);
  display: inline-block;
}

.btn-work-with-us:hover { transform: translateY(-2px); box-shadow: var(--s-md); }

/* ================================================================
   FAQ SECTION
   ================================================================ */

.faq-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.faq-container { max-width: 900px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
  border-color: rgba(0,194,203,0.3);
  box-shadow: var(--s-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-h);
  transition: color 0.25s;
}

.faq-item.open .faq-question { color: var(--teal); }

.faq-icon {
  width: 36px; height: 36px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  background: rgba(0,194,203,0.12);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg path { stroke: var(--teal); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 26px 24px;
  font-size: 15.5px;
  color: var(--text-b);
  line-height: 1.8;
}

/* ================================================================
   BLOG SECTION
   ================================================================ */

.blog-section {
  padding: var(--section-pad);
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.blog-card:hover { box-shadow: var(--s-lg); transform: translateY(-5px); border-color: rgba(0,194,203,0.15); }

.blog-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.blog-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-image img { transform: scale(1.08); }

.blog-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.8px;
}

.blog-content { padding: 20px; }

.blog-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 13.5px;
  color: var(--text-sm);
  margin-bottom: 14px;
  line-height: 1.6;
}

.blog-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.blog-link:hover { color: var(--navy); }

/* ================================================================
   TOOLS SECTION
   ================================================================ */

.tools-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.tools-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.tool-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.tool-card:hover { box-shadow: var(--s-md); border-color: rgba(0,194,203,0.2); transform: translateY(-3px); }

.tool-logo { margin-bottom: 14px; display: flex; justify-content: center; }

.tool-badge {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  letter-spacing: 0.5px;
}

.tool-badge.google { background: #4285f4; }
.tool-badge.analytics { background: #e37400; }
.tool-badge.moz { background: #00c3e3; color: var(--navy); }
.tool-badge.lumar { background: #6c2bd9; }
.tool-badge.awr { background: #1d4ed8; }

.tool-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 5px;
}

.tool-card p {
  font-size: 12px;
  color: var(--text-sm);
  margin: 0;
}

.bespoke-tools h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 28px;
  text-align: center;
}

.bespoke-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bespoke-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s var(--ease);
}

.bespoke-card:hover { box-shadow: var(--s-lg); border-color: rgba(0,194,203,0.2); transform: translateY(-5px); }

.bespoke-icon { margin-bottom: 20px; display: flex; justify-content: center; }

.bespoke-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 8px;
}

.bespoke-card p { font-size: 14px; color: var(--text-sm); }

.tools-footer {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--mist);
}

.tools-footer p {
  font-size: 15px;
  color: var(--text-sm);
  font-style: normal;
}

/* ================================================================
   AUTHOR SECTION
   ================================================================ */

.author-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--mist);
}

.author-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--off-white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.author-header {
  background: var(--navy);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.source-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.verification-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

.badge-rating { text-align: right; }

.rating-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 3px;
}

.stars span {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

.star-icons { color: var(--gold-light); font-size: 14px; letter-spacing: 2px; }

.author-content {
  display: flex;
  gap: 28px;
  padding: 32px;
  align-items: flex-start;
}

.author-profile { flex-shrink: 0; text-align: center; }

.author-image {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 3px solid var(--teal);
}

.author-image img { width: 100%; height: 100%; object-fit: cover; }

.author-update {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.author-bio h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.author-bio h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 12px;
}

.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.credential-tag {
  background: rgba(0,194,203,0.1);
  color: var(--teal);
  border: 1px solid rgba(0,194,203,0.2);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
}

.author-description {
  font-size: 14.5px;
  color: var(--text-b);
  line-height: 1.7;
  margin-bottom: 16px;
  /* Trim the excessive repetition visually */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.author-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--r-full);
  letter-spacing: 1px;
}

/* ================================================================
   TEAM SECTION
   ================================================================ */

.team-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-member-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--mist);
  transition: all 0.38s var(--ease);
}

.team-member-card:hover {
  box-shadow: var(--s-xl);
  transform: translateY(-8px);
  border-color: rgba(0,194,203,0.2);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.member-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.team-member-card:hover .member-image img { transform: scale(1.08); }

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.38s var(--ease);
}

.team-member-card:hover .member-overlay { opacity: 1; }

.social-links-team { display: flex; gap: 12px; }

.social-links-team a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: all 0.25s;
}

.social-links-team a:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }

.member-info {
  padding: 22px 20px;
  text-align: center;
  border-top: 2px solid var(--mist);
}

.member-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 5px;
}

.member-info p {
  font-size: 13.5px;
  color: var(--teal);
  margin: 0;
  font-weight: 600;
}

/* ================================================================
   CTA SECTION
   ================================================================ */

.cta-section {
  padding: 90px 0;
  background: var(--g-brand);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,194,203,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 20%, rgba(201,162,39,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.cta-buttons .btn-primary:hover { background: var(--off-white); box-shadow: none; }

.cta-buttons .btn-secondary {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cta-buttons .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ================================================================
   PRICING SECTION
   ================================================================ */

.seo-pricing {
  padding: var(--section-pad);
  background: var(--off-white);
}

.pricing-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 12px;
}

.pricing-header p { font-size: 17px; color: var(--text-sm); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-xl);
  padding: 42px 36px;
  transition: all 0.38s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover { box-shadow: var(--s-xl); border-color: rgba(0,194,203,0.2); transform: translateY(-6px); }

.pricing-card.popular {
  background: var(--navy);
  border-color: rgba(0,194,203,0.3);
  box-shadow: var(--s-xl);
}

.pricing-card.popular h3,
.pricing-card.popular .price,
.pricing-card.popular .features li { color: var(--white); }

.pricing-card.popular .features li { color: rgba(255,255,255,0.75); }
.pricing-card.popular .features strong { color: var(--teal); }
.pricing-card.popular .price span { color: rgba(255,255,255,0.5); }

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g-gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 16px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 28px;
  line-height: 1;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-sm);
  font-family: 'DM Sans', sans-serif;
}

.features {
  margin-bottom: 28px;
  padding: 0;
  flex: 1;
}

.features li {
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--text-b);
  border-bottom: 1px solid var(--mist);
}

.pricing-card.popular .features li { border-bottom-color: rgba(255,255,255,0.08); }

.features strong { font-weight: 700; color: var(--navy); }

.toggle-btn {
  background: none;
  border: 1.5px solid var(--mist);
  border-radius: var(--r-sm);
  padding: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-b);
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  margin-bottom: 16px;
  transition: all 0.25s;
}

.pricing-card.popular .toggle-btn { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.toggle-btn:hover { border-color: var(--teal); color: var(--teal); }

.extra-features {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s;
  opacity: 0;
  margin-bottom: 8px;
}

.extra-features.open { max-height: 300px; opacity: 1; }

.extra-features p {
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--text-sm);
  border-bottom: 1px solid var(--mist);
}

.pricing-card.popular .extra-features p { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.08); }

.cta-btn {
  display: block;
  text-align: center;
  background: var(--g-teal);
  color: var(--navy);
  padding: 14px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 800;
  transition: all 0.3s var(--spring);
  margin-top: auto;
}

.cta-btn:hover { transform: translateY(-2px); box-shadow: var(--s-teal); }
.cta-btn.primary { background: var(--g-gold); }

/* ================================================================
   AWARDS SECTION
   ================================================================ */

.awards-section {
  padding: var(--section-pad);
  background: var(--white);
}

.awards-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-h);
  text-align: center;
  margin-bottom: 48px;
}

.awards-slider { overflow: hidden; }

.awards-track {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
}

.award-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 280px;
  flex: 1;
  transition: all 0.35s var(--ease);
}

.award-card:hover { box-shadow: var(--s-lg); border-color: rgba(0,194,203,0.2); transform: translateY(-3px); }

.award-icon img { width: 60px; height: 60px; border-radius: var(--r-sm); }

.award-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 6px;
}

.award-description { font-size: 13.5px; color: var(--text-sm); line-height: 1.55; }

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mist);
  cursor: pointer;
  transition: all 0.25s;
}

.indicator.active { background: var(--teal); width: 24px; border-radius: 4px; }

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 32px auto 0;
  background: none;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 12px 36px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
}

.view-all-btn:hover { background: var(--navy); color: var(--white); }

/* ================================================================
   GROUP BRANDS SECTION
   ================================================================ */

.group-brands-section {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--mist);
}

.group-brands-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-h);
  text-align: center;
  margin-bottom: 40px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.brand-item {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
}

.brand-item:hover { box-shadow: var(--s-md); border-color: rgba(0,194,203,0.2); transform: translateY(-3px); }

.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  text-align: center;
  min-height: 80px;
}

.brand-logo { display: flex; flex-direction: column; align-items: center; gap: 3px; }

.brand-text,
.brand-text-blue,
.brand-text-black,
.brand-text-policy,
.brand-text-pension,
.brand-text-paisa,
.brand-text-doc,
.brand-text-quick,
.brand-text-fix,
.brand-text-cars {
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

.brand-text { color: var(--navy); }
.brand-text-blue { color: #1e40af; }
.brand-text-black { color: #1a1a1a; }
.brand-text-policy { color: #059669; }
.brand-text-pension { color: #7c3aed; }
.brand-text-paisa { color: #dc2626; }
.brand-text-doc { color: #2563eb; font-size: 20px; }
.brand-text-quick { color: #d97706; }
.brand-text-fix { color: var(--navy); font-weight: 900; }
.brand-text-cars { color: var(--text-sm); }

.brand-badge { color: var(--text-sm); font-size: 11px; font-weight: 500; }
.brand-tagline { font-size: 9px; color: var(--text-sm); margin-top: 3px; letter-spacing: 0.5px; }
.brand-subtitle { font-size: 11px; color: var(--text-sm); margin-top: 3px; }
.brand-subtitle-doc { color: var(--text-sm); font-size: 12px; font-weight: 600; }
.pb-partners { flex-direction: row; align-items: center; flex-wrap: wrap; justify-content: center; }
.doc-prime { align-items: flex-start; flex-direction: row; align-items: center; gap: 4px; }
.quickfix { flex-direction: row; flex-wrap: wrap; justify-content: center; }

/* ================================================================
   FOOTER
   ================================================================ */

.main-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(0,194,203,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo span { color: var(--teal); }

.footer-col > p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 24px; }

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s;
}

.social-links a:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }

.footer-col h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { padding: 0; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}

.footer-col ul li a:hover { color: var(--teal); }

.contact-info li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  line-height: 1.5;
}

.contact-info a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.contact-info a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.35);
}

/* ================================================================
   MISC SECTIONS
   ================================================================ */

/* Section title utility */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--text-h);
  text-align: center;
  margin-bottom: 48px;
}

/* WhatsApp sticky */

/* Fix hero section overflow */
.hero-section {
  overflow: hidden;
  position: relative;
}

/* Fix the decorative circle bleeding out */
.hero-circle {
  width: 400px;        /* set explicit size */
  height: 400px;
  border-radius: 50%;
  position: absolute;
  z-index: 0;          /* push behind content */
  pointer-events: none;
}

/* Fix hero image container */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;       /* dim so content is readable */
}

/* Ensure hero content sits above background */
.hero-content {
  position: relative;
  z-index: 2;
}
/* ================================================================
   RESPONSIVE — MOBILE OPTIMIZED
   ================================================================ */

/* Tablet */
@media (max-width: 1100px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .partnership-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-row { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --section-pad: 80px 0; }

  /* Header */
  .navbar { height: 68px; }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #cddde8 0%, #bccfdc 100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease), opacity 0.3s;
    opacity: 0;
    border-bottom: 2px solid rgba(0, 100, 140, 0.18);
    box-shadow: 0 8px 32px rgba(0, 50, 90, 0.15);
    z-index: 9998;
    pointer-events: none;
  }

  .nav-menu.open {
    max-height: 90vh;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu > li { width: 100%; }

  .nav-menu > li > a,
  .nav-menu > li > .nav-link {
    padding: 14px 24px;
    width: 100%;
    font-size: 16px;
    border-radius: 0;
  }

  .dropdown {
    position: static;
    transform: none !important;
    background: rgba(255,255,255,0.25);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    min-width: unset;
    width: 100%;
  }

  .nav-menu > li.mobile-open .dropdown { max-height: 600px; }
  .nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; max-height: 600px; }

  .dropdown.mega { width: 100%; }
  .mega-grid { grid-template-columns: 1fr; padding: 0; }

  .dropdown a {
    padding: 12px 24px 12px 40px;
    border-radius: 0;
    font-size: 15px;
    color: #0a2d4a;
  }

  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }

  .seo-hero-container { grid-template-columns: 1fr; }
  .seo-lead-form { max-width: 500px; width: 100%; }

  .case-studies-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .reports-grid { grid-template-columns: 1fr; }
  .bespoke-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .audit-wrapper { grid-template-columns: 1fr; }
  .audit-right { display: none; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .benefits-luxury-grid { grid-template-columns: 1fr 1fr; }
  .key-services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .tools-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px 0; }

  .hero-title { font-size: 34px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-item h3 { font-size: 26px; }

  .services-grid { grid-template-columns: 1fr; }
  .key-services-grid { grid-template-columns: 1fr; }
  .benefits-luxury-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .tools-row { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .partnership-grid { grid-template-columns: 1fr; }

  .audit-form { grid-template-columns: 1fr; }

  .author-content { flex-direction: column; }
  .author-header { flex-direction: column; gap: 12px; }

  .awards-track { overflow-x: auto; }
  .award-card { min-width: 260px; }

  .faq-question { font-size: 15px; }

  .values-grid { flex-direction: column; align-items: flex-start; }
  .cta-button-wrap { margin-left: 0; }
}

@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr; }
  .stat-item h3 { font-size: 30px; }
  .team-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-row { grid-template-columns: 1fr; }
}

/* ================================================================
   ANIMATIONS & UTILITIES
   ================================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Scroll to top btn */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px; height: 46px;
  background: var(--navy);
  border: 1.5px solid rgba(0,194,203,0.25);
  border-radius: 50%;
  color: var(--teal);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 8000;
  text-decoration: none;
}

.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); transform: translateY(-3px); }

/* Ticker / horizontal scroll utility */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track { animation: ticker 25s linear infinite; display: flex; width: max-content; }



