﻿/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --bg:            #07100a;
  --bg-card:       linear-gradient(135deg, #0e151e 0%, #152027 100%);
  --bg-card-alt:   #111f15;
  --accent:        #17e87f;
  --accent-dim:    rgba(23, 232, 127, 0.09);
  --accent-glow:   rgba(23, 232, 127, 0.18);
  --accent-border: #56b593;
  --text:          #f3f6f4;
  --text-muted:    #d7deda;
  --border:        rgba(255, 255, 255, 0.07);
  --border-accent: rgba(23, 232, 127, 0.2);
  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     22px;
  --header-height: 72px;
  --container:     min(1260px, 96vw);
  --shadow:        0 24px 56px rgba(0, 0, 0, 0.55);
  --shadow-accent: 0 0 32px rgba(23, 232, 127, 0.1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(23, 232, 127, 0.065) 1px, transparent 1px);
  background-size: 30px 30px;
  color: var(--text);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

p, li { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
details > summary::-webkit-details-marker { display: none; }
details > summary { list-style: none; }

/* =============================================
   LAYOUT
   ============================================= */
.container { width: var(--container); margin-inline: auto; }
#services {
    /* background: #0c1810; */
    background: linear-gradient(0deg, #05121c 0%, #0c1810 100%);
}
.section { 
  padding: clamp(2rem, 4vw, 3.5rem) 0; 
  scroll-margin-top: 25px;

}
.features-section {
  padding-bottom: 0px;
  margin-bottom: -100px;
  /* margin-bottom: -6rem; */
}

.section-head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }

.section-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); line-height: 1.12; }

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.eyebrow {
  display: block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.hero-launch-eyebrow {
  background: linear-gradient(90deg, #1ed97a22 0%, #1ed97a09 100%);
  color: #fff;
  border-radius: 8px;
  padding: 0.38em 1.1em 0.38em 0.9em;
  font-size: 0.89rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  box-shadow: 0 2px 16px 0 #1ed97a22;
  border: 1.5px solid #1ed97a44;
  display: inline-block;
  margin-bottom: 1.1rem;
  margin-top: -0.2rem;
  animation: hero-launch-pop 1.1s cubic-bezier(.22,1.12,.62,1.01) 0.2s both;
}

.hero-launch-eyebrow .hl-accent {
  color: #1ed97a;
  font-weight: 900;
  letter-spacing: 0.13em;
}

@keyframes hero-launch-pop {
  0% { opacity: 0; transform: translateY(-18px) scale(0.92); }
  60% { opacity: 1; transform: translateY(2px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}


.accent { color: var(--accent); }

.lead { font-size: 1rem; color: var(--text-muted); max-width: 46ch; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.74rem 1.3rem;
  font-family: inherit;
  font-size: 0.91rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); opacity: 0.9; }

.btn-accent {
  background: var(--accent);
  color: #061209;
  box-shadow: 0 10px 26px rgba(23, 232, 127, 0.3);
}

.btn-accent:hover { opacity: 1; box-shadow: 0 14px 32px rgba(23, 232, 127, 0.38); }

.btn-accent-full {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  font-weight: 700;
  width: 90%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.btn-accent-full:hover {
  background: var(--accent);
  color: #061209;
  box-shadow: 0 10px 26px rgba(23, 232, 127, 0.25);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #061209;
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-nav-cta {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
}

.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 52;
  padding: 0.6rem;
  background: rgba(7, 16, 10, 0.96);
  border-top: 1px solid var(--border);
  display: none;
}

.mobile-sticky-cta .btn { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  background: rgba(7, 16, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: flex-end; gap: 0.5rem; color: #fff; flex-shrink: 0; }
.brand-logo { height: 28px; width: auto; display: block; }

.brand-wordmark {
  display: inline-flex;
  align-items: flex-end;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

.brand-lone  { color: #fff; }
.brand-sites { color: var(--accent); }

.main-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 0.9rem;
  color: var(--text);
}

.main-nav a:hover { color: var(--text); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -12%; right: -8%;
  width: 58%; height: 75%;
  background: radial-gradient(circle at 68% 28%, rgba(23, 232, 127, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(23, 232, 127, 0.1);
  border: 1px solid rgba(23, 232, 127, 0.2);
  margin-bottom: 1rem;
}

.hero-copy h1 { font-size: clamp(2.6rem, 5.8vw, 4.6rem); line-height: 1.03; margin: 0 0 1rem; }
.hero-copy .lead { max-width: 44ch; }

.hero-copy {
  will-change: transform;
  /* transition set dynamically by JS */
}

/* hero-card: hidden off-screen right until JS triggers reveal */
.hero-card {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
background: #111a14; border: 1px solid #1e3028; border-radius: 14px; padding: 20px; position: relative; overflow: hidden; 

}

.hero-card.hero-card-visible {
  opacity: 1;
  transform: translateX(0);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.4rem;
  margin-top: 1.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.trust-bar li { display: inline-flex; align-items: center; gap: 0.42rem; }

.trust-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.hero-hint { margin-top: 1.25rem; font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.hero-hint span { color: rgba(245, 250, 247, 0.88); }

/* AUTOPILOT CARD */
.autopilot-card {
  /* background: linear-gradient(150deg, rgba(23, 232, 127, 0.07) 0%, rgba(13, 25, 16, 0.96) 100%); */
  background: #131b21;
/* From https://css.glass */
    /* background: rgba(255, 255, 255, 0.2); */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(68, 68, 68, 0.3);
  /* border: 1px solid var(--accent-border); */
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.6vw, 1.8rem);
  box-shadow: var(--shadow), var(--shadow-accent);
}

.card-title {
  font-family: "Sora", sans-serif;
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.metric-row {
  display: grid;
  grid-template-columns: 54px 1fr 52px;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  font-size: 0.86rem;
}

.metric-label { color: var(--text-muted); }

.metric-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #9ef5cf);
  border-radius: inherit;
  transition: width 1200ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.metric-val { color: var(--accent); font-size: 0.84rem; font-weight: 700; text-align: right; }

.bar-chart {
  margin-top: 1.3rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, #8ef8d0 0%, var(--accent) 100%);
  border-radius: 5px 5px 2px 2px;
  opacity: 0;
  transform: translateY(10px);
  animation: barRise 680ms ease forwards;
}

.bar-chart span:nth-child(1) { animation-delay: 80ms; }
.bar-chart span:nth-child(2) { animation-delay: 170ms; }
.bar-chart span:nth-child(3) { animation-delay: 260ms; }
.bar-chart span:nth-child(4) { animation-delay: 350ms; }
.bar-chart span:nth-child(5) { animation-delay: 440ms; }
.bar-chart span:nth-child(6) { animation-delay: 530ms; }
.bar-chart span:nth-child(7) { animation-delay: 620ms; }

/* ─── Hero fake cursor ─────────────────────── */
.hero-fake-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  width: 18px;
  height: 26px;
  background: white;
  clip-path: polygon(0% 0%, 0% 80%, 33% 60%, 58% 95%, 75% 90%, 50% 55%, 92% 55%);
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.65));
  transition:
    left 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 300ms ease,
    filter 200ms ease,
    clip-path 200ms ease,
    background 200ms ease;
}

.hero-fake-cursor--grabbing {
  /* background: #dddddd; */
  /* clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%); */
  filter: drop-shadow(10px 10px 10px rgba(255, 8, 0, 0.8));
  /* outline: var(--accent) solid 1px; */
}

/* ─── Hero touch cursor (mobile swipe animation) ─────── */
.hero-touch-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  transition:
    left 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top  500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 300ms ease;
}

.hero-touch-cursor--pulse {
  animation: touch-pulse-ring 0.55s ease-out forwards;
}

@keyframes touch-pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(255, 255, 255, 0.55), 0 2px 14px rgba(0,0,0,0.35); }
  100% { box-shadow: 0 0 0 22px rgba(255, 255, 255, 0),   0 2px 14px rgba(0,0,0,0.35); }
}

/* =============================================
   CHOOSE YOUR PATH
   ============================================= */
.path-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0rem;
  align-items: stretch;
}

.path-card {
  height: 100%;
  background: linear-gradient(30deg, #06101b 0%, #0a2426 100%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.path-card:hover {
  border-color: var(--accent-border);
  background: linear-gradient(30deg, #06101b 0%, #0c2c2e 100%);
  box-shadow: 0px 0px 10px 0px rgba(23, 232, 127, 0.12), var(--shadow-accent);
}

.path-icon {
  font-size: 4.5rem; /* 3x the original size */
  color: var(--accent);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

.path-icon img {
  width: 100%;
  height: auto;
  max-width: 56px;
  object-fit: contain;
  display: block;
}

.path-card h3 { font-size: 1.2rem; }
.path-card p  { color: var(--text-muted); font-size: 0.93rem; }

.path-or {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px; /* Double the original width */
  height: 88px; /* Double the original height */
  font-size: 1rem; /* Double the original font size */
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  align-self: center;
  transform: scale(1.2);
  z-index: 6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

/* =============================================
   RESULTS / STATS
   ============================================= */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.results-head h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.12; }
.results-sub { color: var(--text-muted); font-size: 0.95rem; align-self: end; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.15rem;
  align-items: center;
}

.stat-icon-wrap {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.05rem;
  color: var(--accent);
  flex-shrink: 0;
}

.stat-card h3 {
  grid-row: 1;
  grid-column: 2;
  align-self: end;
}

.stat-card p {
  grid-row: 2;
  grid-column: 2;
  align-self: start;
}

.stat-icon-wrap img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.stat-card h3 { font-size: clamp(2.2rem, 3.8vw, 3rem); line-height: 1; }
.stat-card p  { color: var(--text-muted); font-size: 0.9rem; }

/* =============================================
   FEATURES
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: start;
}

.features-left h2 { font-size: 2.6rem; line-height: 1.1; margin: 0.5rem 0 0.6rem; }

.device-placeholder {
  /* background: var(--bg-card); */
  /* border: 1px dashed rgba(23, 232, 127, 0.25); */
  border-radius: var(--radius);
  min-height: 435px;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.device-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 435px;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

.features-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-content: start; }

.feature-item {
  /* background: var(--bg-card); */
  /* border: 1px solid var(--border); */
  border-radius: var(--radius);
  padding: 1.15rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 220ms ease;
}

.feature-item:hover { border-color: var(--accent-border); }

.feature-icon { 
  min-width: 32px;
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  max-width: 24px;
  object-fit: contain;
  display: block;
}

.feature-item > div {
  flex: 1;
}

.feature-item h3 { font-size: 0.97rem; margin-bottom: 0.2rem; }
.feature-item p  { color: var(--text-muted); font-size: 0.87rem; }

/* =============================================
   PRICING
   ============================================= */
.pricing-shared {
  margin-bottom: 1rem;
  background: rgba(30, 217, 122, 0.06);
  border: 1px solid rgba(30, 217, 122, 0.22);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
}

.pricing-shared-title {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-shared-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}

.pricing-shared-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.pricing-shared-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.pricing-price-block { display: flex; flex-direction: column; gap: 0.15rem; }
.pricing-was { font-size: 0.82rem; color: var(--text-muted); }
.pricing-was s { text-decoration: line-through; text-decoration-color: var(--accent); color: var(--text-muted); }
.pricing-price { font-size: clamp(2.2rem, 3.8vw, 3rem); line-height: 1; }
.pricing-monthly { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.pricing-monthly span { font-size: 0.78rem; }
.pricing-note {
  font-size: 0.78rem;
  color: var(--accent);
  background: rgba(30, 217, 122, 0.07);
  border: 1px solid rgba(30, 217, 122, 0.18);
  border-radius: 6px;
  padding: 0.45rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.pricing-note::before { content: "★"; font-size: 0.65rem; flex-shrink: 0; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex: 1;
}

.pricing-features li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; color: var(--text); }

.pricing-features li::before { content: "✓"; color: var(--accent); font-weight: 700; font-size: 0.84rem; flex-shrink: 0; }

.pricing-features-addons li::before {
  content: "+";
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.pricing-card.advisor {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
  align-items: start;
}
.advisor-icon {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.advisor-icon img {
  height: auto;
  max-width: 32px;
  object-fit: contain;
  display: block;
}
.pricing-card.advisor > div { grid-column: 2 / 3; grid-row: 1 / 2; display: flex; flex-direction: column; }
.pricing-card.advisor h3 { font-size: 1.1rem; margin: 0; }
.pricing-card.advisor p  { color: var(--text-muted); font-size: 0.9rem; margin: 0.35rem 0 0; }
.pricing-card.advisor .btn {
  grid-column: 1 / -1;
  width: 90%;
  justify-self: center;
  margin-top: 0.6rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.testimonials-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); line-height: 1.15; margin-top: 0.45rem; }
.testimonials-col { display: flex; flex-direction: row; gap: 0.85rem; align-items: stretch; }

.testimonial {
  flex: 1;
  min-width: 0;
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.testimonial p    { color: var(--text); font-size: 0.91rem; margin-bottom: 0.55rem; }
.testimonial cite { color: var(--text-muted); font-size: 0.84rem; font-style: normal; display: block; margin-bottom: 0.35rem; }
.stars { color: #f0c040; font-size: 0.8rem; letter-spacing: 0.04em; }

/* =============================================
   FAQ
   ============================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.faq-title { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--accent); margin-bottom: 1.3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::after { content: "▾"; color: var(--accent); font-size: 0.88rem; transition: transform 240ms ease; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(-180deg); }
.faq-item p { padding: 0 1.1rem 1rem; color: var(--text-muted); font-size: 0.9rem; }

.faq-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.faq-cta-icon {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.15rem;
  width: 4.6rem;
  height: 4.6rem;
}
.faq-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.faq-cta-card h3 { font-size: 1.15rem; }
.faq-cta-card p  { color: var(--text-muted); font-size: 0.9rem; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner-section { padding: clamp(1.5rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 5rem); }

.cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3.5vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-banner-icon {
  font-size: 1.7rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--accent-dim); */
  /* border: 1px solid var(--accent-border); */
  /* border-radius: var(--radius-sm); */
  flex-shrink: 0;
}

.cta-banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cta-banner-copy { flex: 1; }
.cta-banner-copy h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.cta-banner-copy p  { color: var(--text-muted); font-size: 0.9rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: rgba(7, 16, 10, 0.98);
  border-top: 1px solid var(--border);
  padding: 1.3rem 0;
}

.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-copy  { color: var(--text-muted); font-size: 0.85rem; }

.footer-links { display: flex; gap: 1.3rem; font-size: 0.85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }

/* =============================================
   IMAGE PREVIEW MODAL
   ============================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  animation: fadeIn 200ms ease;
}

.modal.active { display: flex; align-items: center; justify-content: center; }

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: slideUp 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
  z-index: 101;
}

.modal-close:hover { background: rgba(0, 0, 0, 0.9); }

.device-placeholder img.modal-trigger { cursor: pointer; transition: opacity 200ms ease; }
.device-placeholder img.modal-trigger:hover { opacity: 0.6; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* =============================================
   SECTION DIVIDER
   ============================================= */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 580ms ease, transform 580ms ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 155ms; }
.delay-3 { transition-delay: 230ms; }

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1040px) {
  .hero-grid,
  .features-grid,
  .results-layout,
  .testimonials-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .features-section {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .hero-grid { padding: 2.5rem 0; gap: 0.35rem; }
  .features-right { grid-template-columns: 1fr 1fr; }
  .device-placeholder { min-height: 280px; }
  .device-placeholder img { min-height: 280px; }

  /* Dissolve hero-copy wrapper so its children become direct grid items */
  .hero-copy { display: contents; }

  /* 1 — badge + h1 */
  .hero-copy-top { order: 1; text-align: center; }

  /* 2 — browser mockup, scaled down, slotted between headline and body copy */
  .hero-card {
    order: 2;
    opacity: 0;
    transform: scale(0.72) translateX(60px);
    transform-origin: top center;
    transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0%; margin-bottom: -160px;
  }

  /* 3 — lead, buttons, trust bar, hint */
  .hero-copy-bottom {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-copy .btn-group { justify-content: center; }
  .hero-copy .trust-bar { justify-content: center; }

  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: stretch;
  }
  .path-or { display: none; }
  .path-card { padding: 1.1rem; gap: 0.9rem; }
  .path-icon { font-size: 2.2rem; }
  .path-card h3 { font-size: 1rem; }
  .path-card p { font-size: 0.82rem; line-height: 1.4; }
  .path-card .btn-accent-full { width: 100%; font-size: 0.78rem; padding: 0.58rem 0.5rem; }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.advisor { grid-column: span 2; }

  .main-nav { display: none; }

  .cta-banner { flex-direction: column; text-align: center; align-items: center; }
  .cta-banner .btn { width: 100%; justify-content: center; }
}

@media (max-width: 680px) {
  .stats-grid,
  .pricing-grid,
  .features-right {
    grid-template-columns: 1fr;
  }

  .pricing-shared-list {
    grid-template-columns: 1fr;
  }

  .path-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; }
  .path-card { padding: 0.85rem; gap: 0.65rem; }
  .path-icon { font-size: 1.8rem; }
  .path-card h3 { font-size: 0.9rem; line-height: 1.25; }
  .path-card p { font-size: 0.74rem; line-height: 1.35; }
  .path-card .btn-accent-full { font-size: 0.7rem; padding: 0.5rem 0.45rem; }
  .device-placeholder { min-height: 200px; }
  .device-placeholder img { min-height: 200px; }

  .pricing-card.advisor { grid-column: span 1; }
  .pricing-card.advisor { display: flex; flex-direction: column; align-items: flex-start; }
  .pricing-card.advisor .btn { width: 100%; justify-content: center; grid-column: auto; margin-top: 0.6rem; }
  .advisor-icon { width: 40px; height: 40px; }
  .mobile-sticky-cta    { display: block; }
  .btn-nav-cta          { display: none; }

  .footer-wrap { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-grid { gap: 0.15rem; }
  .hero-card { transform: scale(0.60) translateX(60px); margin-top: 0%; margin-bottom: -220px; }
}

/* Make proven results stats fit three-per-row on mobile (no scrolling) */
@media (max-width: 680px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    align-items: start;
  }

  .stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.25rem;
    padding: 0.55rem;
    border-radius: 10px;
    min-width: 0;
  }

  .stat-icon-wrap {
    grid-row: unset;
    grid-column: unset;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
  }

  .stat-icon-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
  }

  .stat-card h3 {
    grid-row: unset;
    grid-column: unset;
    align-self: flex-start;
    font-size: 1rem;
    line-height: 1.05;
    margin: 0;
  }

  .stat-card p {
    grid-row: unset;
    grid-column: unset;
    align-self: flex-start;
    font-size: 0.72rem;
    margin-top: 2px;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Hamburger menu ─────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
  z-index: 60;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text, #f3f6f4);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 200ms ease, width 200ms ease;
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1040px) {
  .nav-hamburger { display: flex; }
}

/* ── Mobile nav drawer ──────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 48;
  opacity: 0;
  transition: opacity 280ms ease;
}
.mobile-nav-overlay.is-open {
  display: block;
  opacity: 1;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 82vw);
  background: #0d1610;
  border-left: 1px solid var(--border);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.75rem 2rem;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.4);
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-drawer a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted, #a8d0b8);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 150ms ease;
  text-decoration: none;
}

.mobile-nav-drawer a:last-child {
  border-bottom: none;
}

.mobile-nav-drawer a:hover,
.mobile-nav-drawer a:focus {
  color: var(--text, #f3f6f4);
}

.mobile-nav-drawer .mobile-nav-cta {
  margin-top: 1.5rem;
  border-bottom: none;
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 150ms ease;
}
.mobile-nav-close:hover { color: var(--text); }






  /* WEBSITE CREATION VISUAL */
  .web-visual { background: #111a14; border: 1px solid #1e3028; border-radius: 14px; padding: 20px; position: relative; overflow: hidden; }
  .web-visual::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 70% 20%, rgba(30,217,122,0.07) 0%, transparent 60%); pointer-events: none; }
  .wv-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
  .wv-dots { display: flex; gap: 5px; }
  .wv-dot { width: 10px; height: 10px; border-radius: 50%; }
  .wv-dot.r { background: #ff5f57; }
  .wv-dot.y { background: #febc2e; }
  .wv-dot.g { background: #28c840; }
  .wv-url { flex: 1; background: #1a2820; border-radius: 5px; padding: 5px 10px; font-size: 10px; color: #4a6455; display: flex; align-items: center; gap: 6px; }
  .wv-url .lock { color: #1ed97a; font-size: 9px; }

  /* Browser mock */
  .browser-mock { background: #0d1610; border-radius: 8px; overflow: hidden; border: 1px solid #1e3028; }
  .browser-hero { background: linear-gradient(135deg, #111a14 0%, #0f1c16 100%); padding: 16px 14px 12px; position: relative; }
  .browser-nav-mock { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
  .bnm-logo { width: 40px; height: 8px; background: #1ed97a; border-radius: 2px; opacity: 0.7; }
  .bnm-links { display: flex; gap: 8px; }
  .bnm-link { width: 22px; height: 5px; background: #2a3d32; border-radius: 2px; }
  .bnm-cta { width: 36px; height: 14px; background: #1ed97a22; border: 1px solid #1ed97a55; border-radius: 3px; }

  .browser-headline { margin-bottom: 10px; }
  .bh-line1 { height: 10px; width: 130px; background: #e8f0ec; border-radius: 3px; margin-bottom: 5px; opacity: 0.9; }
  .bh-line2 { height: 10px; width: 100px; background: #1ed97a; border-radius: 3px; margin-bottom: 8px; }
  .bh-sub1 { height: 5px; width: 160px; background: #2a3d32; border-radius: 2px; margin-bottom: 4px; }
  .bh-sub2 { height: 5px; width: 130px; background: #2a3d32; border-radius: 2px; margin-bottom: 10px; }
  .bh-btns { display: flex; gap: 6px; }
  .bh-btn1 { height: 16px; width: 70px; background: #1ed97a; border-radius: 3px; }
  .bh-btn2 { height: 16px; width: 55px; background: transparent; border: 1px solid #2a3d32; border-radius: 3px; }

  /* Floating sparkle elements */
  .sparkle-group { position: absolute; top: 14px; right: 14px; display: flex; flex-direction: column; gap: 8px; }
  .sparkle-card { background: rgba(17,26,20,0.92); border: 1px solid #1ed97a33; border-radius: 8px; padding: 8px 10px; backdrop-filter: blur(4px); }
  .sc-label { font-size: 9px; color: #5a7868; margin-bottom: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
  .sc-row { display: flex; align-items: center; gap: 6px; }
  .sc-icon { width: 20px; height: 20px; border-radius: 50%; background: #1ed97a22; border: 1px solid #1ed97a44; display: flex; align-items: center; justify-content: center; font-size: 9px; }
  .sc-text { font-size: 11px; font-weight: 700; color: #e8f0ec; }
  .sc-sub { font-size: 9px; color: #1ed97a; }

  /* Color palette row */
  .palette-row { display: flex; gap: 4px; margin-top: 10px; align-items: center; }
  .pal-swatch { width: 14px; height: 14px; border-radius: 3px; }
  .pal-label { font-size: 9px; color: #5a7868; margin-left: 4px; }

  /* Layout grid preview */
  .layout-preview { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; margin-top: 8px; }
  .lp-block { border-radius: 3px; }

  /* Component chips */
  .component-strip { display: flex; gap: 4px; margin-top: 8px; flex-wrap: wrap; }
  .comp-chip { background: #1a2820; border: 1px solid #1ed97a33; border-radius: 4px; padding: 3px 7px; font-size: 9px; color: #1ed97a; font-weight: 500; }

  /* Magic wand / sparkles */
  .magic-badge { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #1ed97a22, #0d9e5522); border: 1px solid #1ed97a44; border-radius: 20px; padding: 5px 10px; margin-bottom: 12px; }
  .magic-badge span { font-size: 10px; color: #1ed97a; font-weight: 600; letter-spacing: 0.04em; }

  /* Progress bar (build progress) */
  .build-progress { background: #0d1610; border: 1px solid #1e3028; border-radius: 8px; padding: 10px 12px; margin-top: 10px; }
  .bp-label { font-size: 9px; color: #5a7868; margin-bottom: 6px; display: flex; justify-content: space-between; }
  .bp-label span { color: #1ed97a; font-weight: 600; }
  .bp-track { height: 4px; background: #1a2820; border-radius: 2px; overflow: hidden; }
  .bp-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #1ed97a, #0fc96a); animation: buildAnim 2s ease-in-out infinite alternate; }
  @keyframes buildAnim { from { width: 72%; } to { width: 88%; } }
  .bp-steps { display: flex; gap: 5px; margin-top: 8px; }
  .bp-step { height: 16px; flex: 1; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 600; }
  .bp-step.done { background: #1ed97a22; color: #1ed97a; border: 1px solid #1ed97a44; }
  .bp-step.active { background: #1ed97a; color: #0a0f0d; }
  .bp-step.todo { background: #1a2820; color: #3a5040; border: 1px solid #1e3028; }

  /* Floating cursor */
  .cursor-float { position: absolute; bottom: 18px; right: 18px; animation: cursorFloat 3s ease-in-out infinite; }
  @keyframes cursorFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-4px,-6px)} }
