/* ================================================
   TOKENS
================================================ */
:root {
  --navy:        #1B1F3B;
  --navy-deep:   #0F1221;
  --navy-mid:    #252A4A;
  --lime:        #C5E32B;
  --lime-hover:  #D4F030;
  --lime-dark:   #96AE1A;
  --lime-tint:   rgba(197,227,43,0.10);
  --cream:       #F5F2EB;
  --cream-dark:  #EDE9DF;
  --white:       #FFFFFF;
  --body:        #383B52;
  --muted:       #6F718A;
  --border:      #E3E0D9;
  --border-lt:   #F0EDE8;
  --red-tint:    #FFF0F0;
  --red-text:    #C93232;
}

/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ================================================
   LAYOUT
================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ================================================
   ANIMATIONS
================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   TYPOGRAPHY SYSTEM
================================================ */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--lime-dark);
  margin-bottom: 14px;
  display: inline-block;
}

.section-label--light { color: var(--lime); }

.section-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.6px;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-heading--light { color: #FFFFFF; }
.section-heading .accent { color: var(--lime); }

.section-sub {
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
  max-width: 540px;
}

.section-sub--light { color: rgba(255,255,255,0.52); }

/* ================================================
   BUTTONS
================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy-deep);
  padding: 14px 26px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.1px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--lime-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(197,227,43,0.28);
}
.btn-primary svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 13px 24px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.btn-ghost--light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 13px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-ghost--light:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-deep);
  color: var(--lime);
  padding: 14px 26px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-dark:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(0,0,0,0.22); }

/* ================================================
   NAVIGATION
================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

nav.scrolled .nav-links a        { color: var(--body); }
nav.scrolled .nav-links a:hover  { color: var(--navy); }
nav.scrolled .nav-logo svg path   { fill: var(--navy); }
nav.scrolled .mobile-toggle span { background: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-full {
  height: 80px;
  width: auto;
  display: block;
}

.logo-mark {
  height: 42px;
  width: auto;
  display: none;
}

nav.scrolled .logo-full { display: none; }
nav.scrolled .logo-mark { display: block; }

footer .logo-full { height: 48px; width: auto; display: block; }

nav .nav-logo svg path    { fill: white; }
nav.scrolled .nav-logo svg path { fill: var(--navy); }
footer .nav-logo svg path { fill: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }

.nav-cta {
  background: var(--lime) !important;
  color: var(--navy-deep) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.18s !important;
}
nav.scrolled .nav-cta { color: var(--navy-deep) !important; }
.nav-cta:hover { background: var(--lime-hover) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.25s;
}

body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: var(--navy-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 100px 40px 60px;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.17s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.24s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.31s; border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 22px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.7) !important;
    letter-spacing: -0.3px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: #fff !important; }
  .nav-cta {
    margin-top: 16px;
    background: var(--lime) !important;
    color: var(--navy-deep) !important;
    font-size: 16px !important;
    padding: 16px 36px !important;
    border-radius: 8px !important;
    display: inline-block !important;
  }
  .nav-links li:last-child { border-bottom: none; }

  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 201;
  }
  .mobile-toggle.open span { background: white; }
  .mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ================================================
   HERO
================================================ */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/wrightwatch-hero.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.15;
  z-index: 0;
}

/* Gradient overlay — keeps left text legible, lets image breathe on the right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy) 38%, rgba(27,31,59,0.75) 65%, rgba(27,31,59,0.45) 100%),
    radial-gradient(ellipse 70% 55% at 105% -5%, rgba(197,227,43,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 144px 0 100px;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 120px 0 80px;
  }
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--lime);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.65s 0.15s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(40px, 5.2vw, 66px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.2px;
  color: white;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.65s 0.3s forwards;
}

.hero h1 .accent { color: var(--lime); }

.hero-sub {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255,255,255,0.55);
  max-width: 490px;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeUp 0.65s 0.45s forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.65s 0.6s forwards;
}

/* Hero Card */
.hero-card {
  background: white;
  border-radius: 12px;
  padding: 34px;
  opacity: 0;
  animation: fadeUp 0.65s 0.75s forwards;
}

.hero-card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 6px;
}

.hero-card-stat {
  font-family: 'Manrope', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}

.hero-card-stat .cur  { font-size: 22px; color: var(--muted); font-weight: 500; letter-spacing: 0; vertical-align: super; line-height: 1; }
.hero-card-stat .per  { font-size: 18px; color: var(--muted); font-weight: 500; letter-spacing: 0; }

.hero-card-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.hero-card-divider {
  height: 1px;
  background: var(--border-lt);
  margin-bottom: 18px;
}

.hero-card-compare {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--red-tint);
  border-radius: 6px;
  border-left: 2px solid #FFA0A0;
  line-height: 1.5;
}

.hero-card-compare strong { color: var(--red-text); font-weight: 600; }

.hero-card-features { display: flex; flex-direction: column; gap: 10px; }

.hero-card-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--body);
  font-weight: 500;
}

.hero-card-feature svg { width: 15px; height: 15px; color: var(--lime-dark); flex-shrink: 0; }

/* ================================================
   TRUST BAR
================================================ */
.trust-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 18px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2px;
}

.trust-dot {
  width: 5px; height: 5px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================
   STATS
================================================ */
.stats-section {
  padding: 96px 0;
  background: var(--cream);
}

.stats-header { margin-bottom: 52px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  gap: 1px;
}

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

.stat-card {
  background: white;
  padding: 40px 32px;
  transition: background 0.18s;
}

.stat-card:hover { background: #FAFAF8; }

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.stat-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ================================================
   PROBLEM / SOLUTION
================================================ */
.problem-section {
  padding: 96px 0;
  background: white;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-col {
  background: white;
  padding: 48px;
}

.problem-col.solution-col {
  background: var(--navy);
}

.problem-col h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 30px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 40px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tag-problem  { background: var(--red-tint); color: var(--red-text); }
.tag-solution { background: var(--lime-tint); color: var(--lime); }

.problem-list { display: flex; flex-direction: column; gap: 22px; }

.problem-item, .solution-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.problem-icon, .solution-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.problem-icon  { background: var(--red-tint); }
.solution-icon { background: var(--lime-tint); }

.problem-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.solution-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.problem-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.62; }
.solution-item p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.62; }

/* ================================================
   SERVICES
================================================ */
.services-section {
  padding: 96px 0;
  background: var(--cream);
}

.services-header { margin-bottom: 52px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  border-radius: 10px;
  padding: 34px 30px;
  border: 1px solid var(--border-lt);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(27,31,59,0.08);
}

.service-icon-wrap {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--lime);
}

.service-icon-wrap svg { width: 22px; height: 22px; }

.service-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ================================================
   CASE STUDIES
================================================ */
.cases-section {
  padding: 96px 0;
  background: var(--navy);
}

.cases-section .section-label  { color: var(--lime); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, border-color 0.2s;
}

.case-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.13);
}

.case-card-top { padding: 30px; flex: 1; }

.case-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.case-card-top h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.28;
  margin-bottom: 10px;
}

.case-card-top p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.46);
  line-height: 1.65;
}

.case-card-result {
  padding: 18px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(197,227,43,0.05);
}

.result-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 3px;
}

.result-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
}

/* ================================================
   QUOTE
================================================ */
.quote-section { padding: 0; overflow: hidden; }

.quote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

@media (max-width: 768px) { .quote-split { grid-template-columns: 1fr; } }

.quote-split-left {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) { .quote-split-left { padding: 60px 28px; } }

.quote-split-right {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.quote-split-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-split-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 25%);
  pointer-events: none;
}

.quote-mark {
  font-family: 'Manrope', sans-serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--lime-dark);
  margin-bottom: 24px;
  display: block;
  opacity: 0.45;
}

.quote-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.48;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  max-width: 520px;
}

.quote-text em { font-style: italic; color: var(--lime-dark); font-weight: 700; }

.quote-attr {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ================================================
   PRICING
================================================ */
.pricing-section {
  padding: 96px 0;
  background: white;
}

.pricing-header { margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

.price-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 34px;
  transition: box-shadow 0.2s;
}

.price-card:hover { box-shadow: 0 8px 30px rgba(27,31,59,0.07); }

.price-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
}

.price-tier-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 18px;
}

.price-card.featured .price-tier-name { color: var(--lime); }

.price-amount {
  font-family: 'Manrope', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1.2px;
  margin-bottom: 4px;
}

.price-card.featured .price-amount { color: white; }

.price-amount .currency {
  font-size: 20px;
  vertical-align: super;
  line-height: 1;
  opacity: 0.45;
  font-weight: 600;
  letter-spacing: 0;
}

.price-per {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 26px;
}

.price-card.featured .price-per { color: rgba(255,255,255,0.38); }

.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.price-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--body);
}

.price-card.featured .price-feature { color: rgba(255,255,255,0.75); }

.price-feature svg { width: 15px; height: 15px; color: var(--lime-dark); flex-shrink: 0; }
.price-card.featured .price-feature svg { color: var(--lime); }

.price-card .btn-ghost  { width: 100%; justify-content: center; }
.price-card .btn-primary { width: 100%; justify-content: center; }

/* ================================================
   CTA
================================================ */
.cta-section { padding: 0; }

.cta-box {
  background: var(--lime);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(15,18,33,0.05);
  pointer-events: none;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-inner { grid-template-columns: 1fr; text-align: center; padding: 0 24px; }
  .cta-right  { text-align: center; }
}

.cta-inner h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 15px;
  color: rgba(15,18,33,0.55);
  line-height: 1.65;
  max-width: 460px;
}

.cta-right { text-align: right; }

.cta-phone {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.cta-web { font-size: 13px; color: rgba(15,18,33,0.45); margin-bottom: 18px; }

/* ================================================
   FOOTER
================================================ */
footer {
  background: var(--navy-deep);
  padding: 64px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.3);
  line-height: 1.72;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.3);
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.46);
  text-decoration: none;
  margin-bottom: 11px;
  transition: color 0.18s;
  font-weight: 400;
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.18); }

.footer-creds { display: flex; gap: 22px; }

.footer-creds span {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.18);
  font-weight: 600;
}

/* ================================================
   OBJECTIONS
================================================ */
.objections-section {
  padding: 96px 0;
  background: var(--cream);
}

.objections-header { margin-bottom: 52px; }

.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px) { .objections-grid { grid-template-columns: 1fr; } }

.objection-card {
  background: white;
  border-radius: 10px;
  padding: 34px 30px;
  border: 1px solid var(--border-lt);
}

.objection-q {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-lt);
  line-height: 1.35;
}

.objection-q::before {
  content: '\201C';
  color: var(--lime-dark);
  font-size: 20px;
  line-height: 0;
  vertical-align: -4px;
  margin-right: 2px;
}

.objection-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.objection-a strong { color: var(--body); font-weight: 600; }

/* ================================================
   CONTACT
================================================ */
.contact-section {
  padding: 0;
  overflow: hidden;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } }

.contact-left {
  background: var(--navy-deep);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

@media (max-width: 768px) { .contact-left { padding: 60px 28px; } }

.contact-left .section-label { color: var(--lime); }

.contact-left-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: white;
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.contact-left-heading .accent { color: var(--lime); }

.contact-left-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 380px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(197,227,43,0.1);
  border: 1px solid rgba(197,227,43,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { color: var(--lime); }

.contact-detail-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.contact-detail-text span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-usp {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  letter-spacing: 0.3px;
}

/* Right — Form */
.contact-right {
  background: var(--cream);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) { .contact-right { padding: 60px 28px; } }

.contact-form-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: var(--body);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236F718A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,31,59,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }

.form-submit {
  margin-top: 4px;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 16px 28px;
}

.form-notice {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}
