/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --charcoal:   #121417;
  --dark-hero:  #033436;
  --off-white:  #FCFAF4;
  --soft-green: #E3F5CC;
  --deep-green: #033436;
  --lime:       #76bd43;
  --orange:     #EC9A29;
  --teal:       #70C2C8;
  --grey-text:  #667085;
  --border:     #E5E7EB;
  --border-dark:rgba(255,255,255,0.1);
  --white:      #ffffff;

  --font-head:  'Manrope', sans-serif;
  --font-body:  'Inter', sans-serif;

  --sp:         96px;
  --sp-m:       56px;
  --max-w:      1180px;

  --r-card:     20px;
  --r-btn:      10px;
  --shadow-sm:  0 1px 3px rgba(18,20,23,0.06), 0 4px 16px rgba(18,20,23,0.06);
  --shadow-md:  0 4px 24px rgba(18,20,23,0.1);
  --shadow-lg:  0 12px 48px rgba(18,20,23,0.14);
  --shadow-up:  0 -4px 40px rgba(2,52,54,0.12);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(40px, 5.5vw, 72px); }
h2 { font-size: clamp(30px, 3.8vw, 48px); }
h3 { font-size: 22px; }
h4 { font-size: 17px; font-weight: 700; }

.body-large { font-size: 19px; line-height: 1.7; color: var(--grey-text); }
.body-base  { font-size: 16px; line-height: 1.7; color: var(--grey-text); }
.body-sm    { font-size: 14px; line-height: 1.65; color: var(--grey-text); }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-green {
  background: linear-gradient(135deg, var(--deep-green) 0%, #025f63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-green);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Eyebrow on dark backgrounds */
.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow-dark::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}
.section    { padding-block: var(--sp); }
.section-sm { padding-block: 64px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-btn);
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s ease;
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-primary {
  background: var(--deep-green);
  color: var(--white);
  border: 2px solid var(--deep-green);
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: #034a4d;
  border-color: #034a4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,52,54,0.3);
}

.btn-lime {
  background: var(--lime);
  color: var(--charcoal);
  border: 2px solid var(--lime);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.btn-lime:hover {
  background: #93d135;
  border-color: #93d135;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(118,189,29,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid rgba(18,20,23,0.25);
}
.btn-secondary:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-lg  { padding: 17px 36px; font-size: 16px; }
.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-xl  { padding: 19px 42px; font-size: 17px; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.btn-orange:hover {
  background: #f5a93a;
  border-color: #f5a93a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236,154,41,0.35);
}

.btn:disabled, .btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--lime);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-head);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--white); }

.navbar-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark-hero);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 28px;
  gap: 20px;
}
.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding-block: 4px;
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu.open { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #033436;
  color: var(--white);
  padding-block: 72px 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
  max-width: 280px;
  line-height: 1.75;
}

.footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   HERO  (dark, full-bleed)
   ============================================================ */
.hero {
  background: var(--dark-hero);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(2,52,54,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(118,189,29,0.06) 0%, transparent 60%);
  padding-block: 100px 80px;
  overflow: hidden;
  position: relative;
}

/* subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 580px; }

.hero-content .eyebrow-dark { margin-bottom: 28px; }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.07;
}

.hero-content .body-large {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  font-size: 18px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stars {
  display: flex;
  gap: 2px;
  color: var(--lime);
  font-size: 16px;
}

.hero-proof-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.hero-proof-text strong { color: rgba(255,255,255,0.8); font-weight: 600; }

/* Hero illustration container */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual svg { width: 100%; max-width: 560px; height: auto; }

/* SVG animation */
@keyframes dashMove {
  to { stroke-dashoffset: -24; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.15); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.dash-anim { animation: dashMove 2s linear infinite; }
.pulse-dot { animation: pulse 2.5s ease-in-out infinite; }
.float-anim { animation: floatUp 4s ease-in-out infinite; }
.live-dot { animation: blink 1.5s ease-in-out infinite; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 32px;
  position: relative;
  text-align: center;
}
.stat-item + .stat-item {
  border-left: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-suffix {
  color: var(--deep-green);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-desc {
  font-size: 12px;
  color: rgba(102,112,133,0.7);
  margin-top: 4px;
}

/* ============================================================
   TRUST STRIP (logo/icon bar)
   ============================================================ */
.trust-strip {
  padding-block: 56px;
  border-bottom: 1px solid var(--border);
}

.trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-text);
  text-align: center;
  margin-bottom: 36px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.22s ease;
  background: var(--white);
}
.trust-item:hover {
  border-color: var(--deep-green);
  box-shadow: 0 4px 20px rgba(2,52,54,0.08);
  transform: translateY(-3px);
}

.trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--soft-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item h4 { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.trust-item p  { font-size: 13px; color: var(--grey-text); line-height: 1.55; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 56px; }
.section-header .eyebrow,
.section-header .eyebrow-dark { display: inline-flex; margin-bottom: 20px; }
.section-header h2 { margin-bottom: 18px; }
.section-header .body-large { max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered .body-large { margin-inline: auto; }

/* ============================================================
   PROBLEM CARDS
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.problem-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: var(--border); }

.problem-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card p { font-size: 15px; color: var(--grey-text); line-height: 1.65; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--deep-green), var(--lime));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card h4 { font-size: 15px; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p  { font-size: 14px; color: var(--grey-text); line-height: 1.65; }

/* ============================================================
   SPLIT SECTION (image + text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* Illustration wrapper (replaces placeholder boxes) */
.illus-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--dark-hero);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-wrap svg { width: 100%; height: 100%; }

/* ============================================================
   EPC HIGHLIGHT
   ============================================================ */
.epc-section {
  background: var(--deep-green);
  padding-block: var(--sp);
  position: relative;
  overflow: hidden;
}

.epc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 80% at 95% 10%, rgba(118,189,29,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 5% 90%, rgba(0,0,0,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.epc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.epc-content h2 { color: var(--white); margin-bottom: 20px; }
.epc-content .body-large { color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.epc-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 36px;
  line-height: 1.6;
}

.epc-cards { display: flex; flex-direction: column; gap: 16px; }

.epc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.epc-card:hover { background: rgba(255,255,255,0.1); }

.epc-card-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(118,189,29,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.epc-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.epc-card p  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-section { background: var(--off-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.step-num {
  width: 56px; height: 56px;
  background: var(--deep-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(2,52,54,0.1);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-item:hover .step-num {
  box-shadow: 0 0 0 10px rgba(2,52,54,0.12);
  transform: scale(1.05);
}

.step-item h4 { font-size: 15px; margin-bottom: 8px; }
.step-item p  { font-size: 14px; color: var(--grey-text); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--dark-hero); padding-block: var(--sp); }

.testimonials-header h2 { color: var(--white); margin-bottom: 16px; }
.testimonials-header .body-large { color: rgba(255,255,255,0.5); max-width: 480px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.25s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(118,189,29,0.25);
  transform: translateY(-4px);
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.t-star {
  width: 14px; height: 14px;
  background: var(--lime);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.t-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--lime);
  flex-shrink: 0;
}

.t-name  { font-size: 14px; font-weight: 700; color: var(--white); }
.t-role  { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--deep-green);
  border-radius: 28px;
  padding: 88px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(118,189,29,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-block h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-block .body-large { color: rgba(255,255,255,0.6); max-width: 480px; margin-inline: auto; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--dark-hero);
  background-image: radial-gradient(ellipse 70% 60% at 15% 50%, rgba(2,52,54,0.4) 0%, transparent 70%);
  padding-block: 80px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow-dark { margin-bottom: 20px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .body-large { color: rgba(255,255,255,0.6); max-width: 580px; }

/* ============================================================
   CARDS (general)
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }

.card-green {
  background: var(--soft-green);
  border-radius: var(--r-card);
  padding: 32px;
  border: 1px solid rgba(2,52,54,0.1);
}

.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card);
  padding: 32px;
}

/* ============================================================
   NUMBERED CARDS
   ============================================================ */
.numbered-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 36px 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.numbered-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--soft-green);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.numbered-card h4 { margin-bottom: 10px; }
.numbered-card p { font-size: 15px; color: var(--grey-text); line-height: 1.7; }

/* ============================================================
   BENEFIT CARDS
   ============================================================ */
.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  transition: all 0.25s ease;
}
.benefit-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 50px; height: 50px;
  background: var(--soft-green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h4 { font-size: 17px; }
.benefit-card p  { font-size: 15px; color: var(--grey-text); line-height: 1.7; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.25s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pricing-card.featured {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: var(--white);
}
.pricing-card.featured:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(2,52,54,0.35); }

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-sub { color: var(--white); }

.pricing-card h3 { font-size: 18px; letter-spacing: -0.02em; }

.pricing-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  line-height: 1;
}
.price span { font-size: 22px; font-weight: 700; vertical-align: super; font-size: 18px; }

.price-sub { font-size: 14px; color: var(--grey-text); margin-top: 6px; }

.pricing-features { display: flex; flex-direction: column; gap: 12px; flex: 1; }

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--soft-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--deep-green);
  font-weight: 800;
}
.pricing-card.featured .check {
  background: rgba(118,189,29,0.15);
  color: var(--lime);
}

.pricing-note {
  background: var(--off-white);
  border-radius: 16px;
  padding: 24px 28px;
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.75;
  margin-top: 40px;
  border: 1px solid var(--border);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 3px rgba(2,52,54,0.06);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: -0.01em;
}

.faq-chevron {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: transform 0.25s ease, background 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--soft-green);
}

.faq-body {
  display: none;
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--grey-text);
  line-height: 1.75;
}
.faq-item.open .faq-body { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 3px rgba(2,52,54,0.08);
}
.form-control::placeholder { color: #C0C8D2; }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   ACTIVATE PAGE
   ============================================================ */
.stepper {
  display: flex;
  align-items: flex-start;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.step-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--grey-text);
  transition: all 0.3s;
  flex-shrink: 0;
}
.step-circle.active { border-color: var(--deep-green); background: var(--deep-green); color: var(--white); }
.step-circle.done   { border-color: var(--lime); background: var(--lime); color: var(--deep-green); }

.stepper-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-top: 17px;
  transition: background 0.4s;
  align-self: flex-start;
}
.stepper-line.done { background: var(--lime); }

.step-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey-text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.step-label.active { color: var(--deep-green); }

.activate-step { display: none; }
.activate-step.active { display: block; }

.activate-box {
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.activate-box h2 { font-size: 28px; margin-bottom: 8px; letter-spacing: -0.02em; }
.activate-box .body-base { margin-bottom: 32px; }

.address-search-wrap { position: relative; }
.address-search-wrap .form-control { padding-left: 44px; }
.search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--grey-text);
  pointer-events: none;
}

.selected-address-display {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--soft-green);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-green);
  margin-top: 16px;
}

.terms-scroll {
  height: 220px;
  overflow-y: auto;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.8;
  background: var(--off-white);
  margin-bottom: 24px;
}
.terms-scroll h4 { font-size: 15px; margin-bottom: 12px; color: var(--charcoal); }
.terms-scroll p  { margin-bottom: 12px; }

/* ---- Certification sections (Step 3 new layout) ---- */
.cert-sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.cert-section {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.cert-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--deep-green);
  margin-bottom: 10px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  list-style: none;
}

.cert-list li {
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--deep-green);
  font-weight: 700;
  font-size: 12px;
}

.cert-final-wrap {
  background: var(--soft-green);
  border: 2px solid var(--deep-green);
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 8px;
  margin-bottom: 28px;
}

.cert-final-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 14px;
}

.cert-final-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--deep-green);
  cursor: pointer;
}

.cert-final-label span {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.55;
}

.cert-final-meta {
  font-size: 12.5px;
  color: var(--grey-text);
  line-height: 1.55;
  border-top: 1px solid rgba(2,52,54,0.2);
  padding-top: 12px;
  margin-top: 4px;
}

.cert-final-meta strong {
  color: var(--charcoal);
}

.terms-checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.terms-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.terms-check-item input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--deep-green);
  cursor: pointer;
}
.terms-check-item span { font-size: 14px; color: var(--charcoal); line-height: 1.55; }

.confirm-icon {
  width: 72px; height: 72px;
  background: var(--soft-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.summary-box {
  background: var(--off-white);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-block: 10px;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row strong { font-weight: 700; }

.payment-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.payment-placeholder p { color: var(--grey-text); font-size: 14px; margin-top: 8px; }

/* ============================================================
   CAUTION BOX
   ============================================================ */
.caution-box {
  display: flex;
  gap: 16px;
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 14px;
  color: #78490E;
  line-height: 1.7;
}
.caution-box .caution-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.caution-box strong { display: block; margin-bottom: 4px; font-weight: 700; }

/* ============================================================
   BULLET LIST
   ============================================================ */
.bullet-list { display: flex; flex-direction: column; gap: 12px; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--grey-text);
  line-height: 1.6;
}
.bullet-dot {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--lime);
  border-radius: 50%;
  margin-top: 8px;
}
.bullet-list-dark li { color: rgba(255,255,255,0.65); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   CONTACT SUCCESS
   ============================================================ */
.contact-success { display: none; text-align: center; padding: 48px 32px; }
.contact-success.visible { display: block; }
.contact-form-wrap.hidden { display: none; }

/* ============================================================
   MISC
   ============================================================ */
.hidden { display: none !important; }
.error-msg {
  display: none;
  color: #B91C1C;
  font-size: 14px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
}
.pac-container {
  z-index: 9999;
  font-family: var(--font-body);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-inner    { grid-template-columns: repeat(2,1fr); }
  .trust-items    { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .epc-inner      { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --sp: var(--sp-m); }

  .navbar-links        { display: none; }
  .navbar-cta .btn     { display: none; }
  .hamburger           { display: flex; }

  .hero-inner          { grid-template-columns: 1fr; }
  .hero-visual         { display: none; }
  .hero                { padding-block: 72px 56px; }

  .grid-2, .split      { grid-template-columns: 1fr; }
  .split-reverse       { direction: ltr; }

  .problem-grid        { grid-template-columns: 1fr; }
  .feature-grid        { grid-template-columns: 1fr; }
  .grid-3              { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .steps-grid          { grid-template-columns: 1fr 1fr; }
  .step-connector      { display: none; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .epc-inner           { grid-template-columns: 1fr; }
  .stats-inner         { grid-template-columns: repeat(2,1fr); }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2)    { border-bottom: 1px solid var(--border); }

  .trust-items         { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom       { flex-direction: column; gap: 10px; text-align: center; }

  .cta-block           { padding: 56px 28px; }
  .activate-box        { padding: 28px 20px; }
  .form-grid-2         { grid-template-columns: 1fr; }
  .hero-btns           { flex-direction: column; }
  .cta-btns            { flex-direction: column; align-items: center; }
  .stepper             { gap: 0; }

  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
}

@media (max-width: 480px) {
  .stats-inner         { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); }
  .stat-item:nth-child(odd)  { border-right: none; }
  .stat-number         { font-size: 40px; }
}
