/* ============================================================
   DESIGN SYSTEM — BuiltOnline
   Brand: dark forest green on warm cream.
   Feels like a trusted local trade — serious, considered, premium.
   Not a tech startup, not a flashy agency. Craft trade quality.
============================================================ */

:root {
  --cream:    #F3F0E9;
  --cream-d:  #E9E4D9;
  --ink:      #131210;
  --ink-mid:  #4C4640;
  --green:    #274417;
  --green-l:  #3A5C24;
  --tan:      #9A7B5C;
  --white:    #FDFAF4;
  --border:   rgba(19,18,15,.10);
  --border-strong: rgba(19,18,15,.18);
  --nav-h:    64px;
  --radius:   7px;
  --shadow:   0 2px 20px rgba(19,18,15,.07);
  --shadow-md: 0 6px 32px rgba(19,18,15,.10);
  --shadow-lg: 0 10px 48px rgba(19,18,15,.13);
  --transition: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* legacy aliases kept so nothing breaks */
  --bg:           #F3F0E9;
  --bg-card:      #FDFAF4;
  --bg-dark:      #131210;
  --text-primary: #131210;
  --text-secondary: #4C4640;
  --accent:       #274417;
  --accent-hover: #3A5C24;
  --accent-pale:  rgba(39,68,23,.07);
  --shadow-sm:    0 2px 20px rgba(19,18,15,.07);
  --radius-lg:    7px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===================== NOISE TEXTURE =====================
   SVG noise rendered as a base64 data URI. Zero HTTP requests.
   Overlaid at low opacity to add texture depth to the hero.
========================================================== */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.display-1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.7rem, 5.2vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
}

.display-2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

/* Eyebrow label — bordered tag */
.label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(39,68,23,.30);
  background: rgba(39,68,23,.06);
  border-radius: 3px;
  padding: 5px 13px;
  line-height: 1;
}

p { color: var(--ink-mid); line-height: 1.7; }
strong { font-weight: 600; }

a { color: inherit; text-decoration: none; }

/* ===================== LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 6.5rem 0; }

.section-header {
  margin-bottom: 56px;
}

.section-header .label { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 540px; font-size: 1.05rem; }

/* ===================== SCROLL ANIMATIONS ===================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1;
}

/* Primary — WhatsApp green, used for all main CTAs */
.btn-primary {
  background: #20B954;
  color: #fff;
  box-shadow: 0 2px 14px rgba(32,185,84,.26);
}

.btn-primary:hover {
  background: #1aa348;
  box-shadow: 0 4px 22px rgba(32,185,84,.36);
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

/* Brand forest green CTA */
.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-l);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(19,18,15,.04);
  transform: translateY(-1px);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-arrow:hover::after { transform: translateX(3px); }

/* ===================== NAV ===================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), transform 0.3s ease;
  transform: translateY(-100%);
}

#nav.visible {
  transform: translateY(0);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-logo em { font-style: normal; color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 6px 14px;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(19,18,15,.04);
}

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ===================== HERO ===================== */
#hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(158deg, #1c2f11 0%, #10180a 38%, #131210 68%, #0d0b08 100%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(55,100,30,.13) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 72%, rgba(30,55,15,.09) 0%, transparent 52%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39,68,23,.20);
  border: 1px solid rgba(39,68,23,.35);
  color: #8DC870;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(76,175,80,0); }
  50%       { opacity: 0.75; box-shadow: 0 0 8px rgba(76,175,80,.55); }
}

#hero .display-1 {
  color: #FDFAF4;
  margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#hero .display-1 em {
  font-style: normal;
  color: #BDD5A0;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.08rem);
  color: rgba(253,250,244,.65);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.68;
  font-family: 'Inter', sans-serif;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-ghost {
  background: rgba(255,255,255,.06);
  color: rgba(253,250,244,.88);
  border: 1.5px solid rgba(255,255,255,.18);
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.30);
  transform: translateY(-1px);
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
  color: #FDFAF4;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-num .counter-suffix {
  color: var(--tan);
  font-size: 0.72em;
  margin-left: 2px;
}

.hero-stat-label {
  font-size: 0.84rem;
  color: rgba(253,250,244,.45);
  font-weight: 500;
  line-height: 1.4;
}

/* ===================== PROBLEM SECTION ===================== */
#problem {
  background: var(--cream);
  padding: 6.5rem 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(39,68,23,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.3;
}

.problem-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===================== PROCESS ===================== */
#process {
  background: var(--ink);
  padding: 6.5rem 0;
}

#process .section-header .label {
  color: rgba(141,200,112,.85);
  border-color: rgba(141,200,112,.30);
}
#process .section-header h2 { color: #FDFAF4; }
#process .section-header p  { color: rgba(253,250,244,.52); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}



.process-step {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  transition: border-color var(--transition), background var(--transition);
}

.process-step:hover {
  border-color: rgba(58,92,36,.40);
  background: rgba(39,68,23,.07);
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  border: 1.5px solid rgba(58,92,36,.38);
  background: rgba(39,68,23,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #8DC870;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.process-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FDFAF4;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.9rem;
  color: rgba(253,250,244,.50);
  line-height: 1.65;
}

/* ===================== PACKAGES ===================== */
#packages {
  background: var(--cream-d);
  padding: 6.5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

/* Featured card — green border, signals recommended */
.pricing-card.featured {
  border: 1.5px solid var(--green);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  display: block;
  position: static;
  background: var(--green);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
  margin: -36px -30px 28px -30px;
  border-radius: 0;
}

.pricing-tier {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 10px;
}

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 2.8rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-mid);
  vertical-align: baseline;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--ink-mid);
  margin-bottom: 24px;
  line-height: 1.4;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.45;
}

/* Plain checkmarks — no bubble. Looks less like an app store listing. */
.pricing-features li .check {
  width: 14px;
  height: 14px;
  min-width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.pricing-features li .check svg {
  width: 14px;
  height: 11px;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-block .btn {
  width: 100%;
  justify-content: center;
}

/* Custom Package Strip */
.custom-package-strip {
  margin-top: 52px;
  background: rgba(39,68,23,.06);
  border: 1.5px solid rgba(39,68,23,.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.custom-package-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px 36px;
}

.custom-package-icon {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: rgba(39,68,23,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-package-text {
  flex: 1;
}

.custom-package-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.custom-package-text p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.55;
  margin: 0;
}

.custom-package-strip .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .custom-package-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 28px 24px;
  }
  
  .custom-package-text h3 {
    font-size: 1.2rem;
  }
  
  .custom-package-strip .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== ABOUT ===================== */
#about {
  background: var(--cream);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
  overflow: hidden;
}

.about-card:hover { box-shadow: var(--shadow-md); }

/* Full-width photo block at top of card */
.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1917;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-card:hover .about-photo img {
  transform: scale(1.02);
}

/* Gradient fade at bottom of photo so label text is always legible */
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  pointer-events: none;
}

.about-photo-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  background: var(--green);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 3px;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(39,68,23,.20);
  background: linear-gradient(135deg, #edf4e6, #dce8d4);
}

.about-body { padding: 26px 26px 22px; }

.about-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
}

.about-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-l);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-card p {
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 12px;
  color: var(--ink-mid);
}

.about-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stat-item .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-stat-item .lbl {
  font-size: 0.73rem;
  color: var(--ink-mid);
  font-weight: 500;
}

/* ===================== PROOF / RESULTS ===================== */
#results {
  background: var(--ink);
  padding: 6.5rem 0;
  overflow: hidden;
}

#results .section-header .label {
  color: rgba(141,200,112,.85);
  border-color: rgba(141,200,112,.28);
}
#results .section-header h2 { color: #FDFAF4; }
#results .section-header p  { color: rgba(253,250,244,.50); }

/* Scrolling ticker — auto scrolls left, pauses on hover */
.results-ticker-wrap {
  overflow: hidden;
  margin-top: 48px;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.results-ticker {
  display: flex;
  gap: 20px;
  animation: ticker 32s linear infinite;
  width: max-content;
  will-change: transform;
}

.results-ticker:hover { animation-play-state: paused; }

/* Only pause on hover for devices with a real pointer (not touch screens) */
@media (hover: none) {
  .results-ticker:hover { animation-play-state: running; }
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .results-ticker { animation: none; }
  [data-animate] { transition: none; opacity: 1; transform: none; }
  .btn, .problem-card, .process-step, .proof-card, .about-card,
  .faq-question, .faq-answer { transition: none; }
}

.proof-card {
  min-width: 276px;
  max-width: 316px;
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 22px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

/* Backdrop blur only on devices that handle it well */
@supports (backdrop-filter: blur(10px)) {
  @media (min-width: 641px) {
    .proof-card {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
  }
}

.proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(58,92,36,.38);
  background: rgba(39,68,23,.06);
}

.proof-img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.10);
}

.proof-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FDFAF4;
  margin-bottom: 4px;
}

.proof-card-sub { font-size: 0.78rem; color: rgba(253,250,244,.40); }

.proof-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(39,68,23,.22);
  border: 1px solid rgba(39,68,23,.30);
  border-radius: 3px;
  padding: 3px 10px;
  font-size: 0.70rem;
  font-weight: 700;
  color: #8DC870;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}


/* ===================== FAQ ===================== */
#faq {
  background: var(--white);
  padding: 6.5rem 0;
}

.faq-list {
  margin-top: 48px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  user-select: none;
  transition: background var(--transition), color var(--transition);
  line-height: 1.35;
}

.faq-question:hover {
  background: rgba(39,68,23,.05);
  color: var(--green);
}

.faq-question.open { color: var(--green); background: rgba(39,68,23,.06); }

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  opacity: 0.7;
}

.faq-question.open .faq-icon { transform: rotate(45deg); opacity: 1; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.28s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer-inner {
  padding: 12px 26px 22px;
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.72;
}

/* ===================== FINAL CTA ===================== */
#cta-final {
  background: var(--ink);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  width: 80vmax;
  height: 80vmax;
  background: radial-gradient(circle, rgba(39,68,23,.16) 0%, transparent 62%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-final-content {
  position: relative;
  z-index: 1;
}

#cta-final h2 {
  color: #FDFAF4;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 16px;
}

#cta-final h2 em {
  font-style: normal;
  font-weight: 800;
  color: #BDD5A0;
}

#cta-final p {
  color: rgba(253,250,244,.52);
  font-size: 1.04rem;
  max-width: 440px;
  margin: 0 auto 40px;
}

#cta-final .btn {
  margin-bottom: 20px;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.76rem;
  color: rgba(253,250,244,.24);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: rgba(253,250,244,.55);
}

.footer-logo em { font-style: normal; color: #8DC870; }

footer p {
  font-size: 0.78rem;
  color: rgba(253,250,244,.22);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 640px) {
  section { padding: 5rem 0; }
  .hero-stats { gap: 24px; }
  .hero-stats { border-top: 1px solid rgba(255,255,255,.08); }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  
  /* Buttons - better touch targets */
  .btn {
    padding: 13px 24px;
    font-size: 0.9rem;
  }
  
  /* Section headers mobile */
  .section-header p {
    font-size: 1rem;
  }
  
  .display-2 {
    font-size: 1.85rem;
  }
  
  /* Problem cards mobile */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .problem-card {
    padding: 24px;
  }
  
  .problem-card h3 {
    font-size: 0.98rem;
  }
  
  .problem-card p {
    font-size: 0.88rem;
  }
  
  .pricing-card {
    padding: 28px 22px;
  }
  
  .pricing-badge {
    margin: -28px -22px 24px -22px;
    font-size: 0.68rem;
  }
  
  .pricing-tier {
    font-size: 0.75rem;
  }
  
  .pricing-price {
    font-size: 2rem;
  }
  
  .pricing-price sub {
    font-size: 0.9rem;
  }
  
  .pricing-period {
    font-size: 0.8rem;
  }
  
  .pricing-features {
    margin-bottom: 28px;
    gap: 10px;
  }
  
  .pricing-features li {
    font-size: 0.86rem;
  }
  
  /* Custom package strip mobile */
  .custom-package-strip {
    margin-top: 40px;
  }
  
  /* About section mobile */
  .about-body {
    padding: 24px 22px 20px;
  }
  
  .about-name {
    font-size: 1.2rem;
  }
  
  .about-role {
    font-size: 0.75rem;
  }
  
  .about-card p {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .display-1 { font-size: 2.4rem; }
  .display-2 { font-size: 1.65rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  
  /* Buttons extra small */
  .btn {
    padding: 12px 22px;
    font-size: 0.88rem;
  }
  
  /* Section headers */
  .section-header p {
    font-size: 0.95rem;
  }
  
  .label {
    font-size: 0.68rem;
  }
  
  /* Extra small mobile adjustments */
  .pricing-card {
    padding: 24px 20px;
  }
  
  .pricing-badge {
    margin: -24px -20px 20px -20px;
    font-size: 0.68rem;
    padding: 8px 12px;
    letter-spacing: 0.08em;
  }
  
  .pricing-price {
    font-size: 1.85rem;
  }
  
  .pricing-features li {
    font-size: 0.84rem;
  }
  
  .custom-package-content {
    padding: 24px 20px;
    gap: 16px;
  }
  
  .custom-package-icon {
    font-size: 2.5rem;
  }
  
  .custom-package-text h3 {
    font-size: 1.1rem;
  }
  
  .custom-package-text p {
    font-size: 0.88rem;
  }
  
  /* About section extra small mobile */
  .about-body {
    padding: 22px 20px 18px;
  }
  
  .about-name {
    font-size: 1.15rem;
  }
  
  .about-card p {
    font-size: 0.86rem;
  }
  
  .about-stats {
    gap: 16px;
  }
}

/* ===================== UTILITY ===================== */
.text-green { color: var(--green); }
.text-tan   { color: var(--tan); }
.text-accent { color: var(--green); } /* legacy alias */
.nowrap { white-space: nowrap; }

