/* =============================================
   INSOLAR — Solar-Tech SaaS Marketplace
   Sky white + deep navy + sun gold + electric blue.
   Stripe / Linear / Notion DNA, optimized for solar.
   ============================================= */

:root {
  --sky:         #FAFCFF;
  --sky-2:       #F1F5FB;
  --sky-3:       #E5ECF5;
  --navy:        #0B1730;
  --navy-2:      #1A2540;
  --ink:         #2A3658;
  --gold:        #FFB100;      /* solar sun */
  --gold-deep:   #E89A00;
  --gold-soft:   rgba(255,177,0,0.14);
  --blue:        #1E5BFF;      /* electric panel blue */
  --blue-deep:   #1846D6;
  --blue-soft:   rgba(30,91,255,0.10);
  --line:        rgba(11,23,48,0.10);
  --line-strong: rgba(11,23,48,0.20);
  --muted:       #6C7790;
  --shadow:      0 24px 60px rgba(11,23,48,0.08);
  --shadow-card: 0 12px 36px rgba(11,23,48,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background: var(--sky);
  color: var(--navy);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

/* Soft sky gradient at top */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,177,0,0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 5%, rgba(30,91,255,0.06) 0%, transparent 40%);
}
main, .nav, .footer { position: relative; z-index: 1; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; }
.wrap.narrow { max-width: 920px; }

/* ============== TYPE ============== */
h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
h2 { font-size: clamp(2rem, 4.8vw, 3.6rem); margin-bottom: 0.4em; font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: 1.35rem; line-height: 1.2; margin-bottom: 0.4em; font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; }

.italic { font-style: italic; font-weight: 500; }
.gold { color: var(--gold-deep); }
.blue { color: var(--blue); }

p { font-size: 1.05rem; color: var(--ink); margin-bottom: 1em; line-height: 1.65; }

a { color: var(--blue); text-decoration: none; transition: color 0.15s; font-weight: 500; }
a:hover { color: var(--gold-deep); }

::selection { background: var(--gold); color: var(--navy); }

.mono {
  font-family: 'JetBrains Mono', 'Source Code Pro', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============== EYEBROW / CHIP ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.chapter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chapter::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,252,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1340px;
  margin: 0 auto;
}
.brand {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand:hover { color: var(--gold-deep); }
.brand-mark { display: inline-flex; flex-shrink: 0; }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a.active { color: var(--gold-deep); }
.nav-links a:hover { color: var(--gold-deep); }
.nav-links .cta-btn { margin-left: 8px; }

/* ============== BUTTONS ============== */
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--navy);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
  border-radius: 10px;
}
a.btn:hover, button.btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}
a.btn-gold, button.btn-gold {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(255,177,0,0.3);
}
a.btn-gold:hover, button.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff !important;
}
a.btn-blue, button.btn-blue {
  background: var(--blue);
  color: #fff !important;
  border-color: var(--blue);
}
a.btn-blue:hover, button.btn-blue:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}
a.btn-ghost, button.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--line-strong);
}
a.btn-ghost:hover, button.btn-ghost:hover {
  background: var(--navy);
  color: #fff !important;
  border-color: var(--navy);
}
.cta-btn {
  padding: 10px 18px !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
}
.nav .cta-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 6px 18px rgba(255,177,0,0.3);
}
.nav .cta-btn:hover {
  background: var(--gold-deep) !important;
  color: #fff !important;
  border-color: var(--gold-deep) !important;
}

/* ============== HERO ============== */
.hero {
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 22px;
  max-width: 720px;
}
.hero h1 .gradient-text {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-deep) 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero .sub {
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .trust {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .trust .v {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-transform: none;
  margin-right: 2px;
}

/* Sun + panel illustration on right side */
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 540px;
  margin-left: auto;
}
.hero-art svg { width: 100%; height: 100%; }

/* ============== FLAGSHIP VIDEO (commercial) ============== */
.flagship {
  padding: 30px 0 80px;
  background: var(--sky-2);
}
.flagship-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.flagship-meta .title-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.flagship-meta .title-row h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1;
}
.flagship-meta .specs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.flagship-meta .specs strong { color: var(--navy); font-weight: 700; }
.flagship-meta .specs .runtime {
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.flagship-meta .specs .runtime::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.flagship-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 18px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(11,23,48,0.12);
}
.flagship-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flagship-frame .corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--gold);
  z-index: 3;
  pointer-events: none;
}
.flagship-frame .corner.c1 { top: 18px; left: 18px; border-right: none; border-bottom: none; border-top-left-radius: 4px; }
.flagship-frame .corner.c2 { top: 18px; right: 18px; border-left: none; border-bottom: none; border-top-right-radius: 4px; }
.flagship-frame .corner.c3 { bottom: 18px; left: 18px; border-right: none; border-top: none; border-bottom-left-radius: 4px; }
.flagship-frame .corner.c4 { bottom: 18px; right: 18px; border-left: none; border-top: none; border-bottom-right-radius: 4px; }

@media (max-width: 768px) {
  .flagship-frame .corner { width: 16px; height: 16px; }
}

/* ============== SECTION ============== */
.section { padding: 100px 0; position: relative; }
.section.tint { background: var(--sky-2); }
.section.dark { background: var(--navy); color: #fff; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.section.dark p { color: rgba(255,255,255,0.78); }
.section.dark .chapter { color: var(--gold); }
.section.dark .chapter::after { background: rgba(255,255,255,0.15); }
.section.dark a { color: var(--gold); }
.section.dark a:hover { color: #fff; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.section-head h2 { flex: 1; min-width: 300px; margin-bottom: 0; }
.section-head .lead {
  max-width: 480px;
  font-size: 1.08rem;
  color: var(--ink);
}
.section.dark .section-head .lead { color: rgba(255,255,255,0.72); }
.section-head .view-all {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-head .view-all::after { content: "→"; transition: transform 0.2s; }
.section-head .view-all:hover { color: var(--gold-deep); }
.section-head .view-all:hover::after { transform: translateX(4px); }

/* ============== STEPS ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 28px;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.step:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  box-shadow: 0 0 0 5px var(--gold-soft);
}
.step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step p { font-size: 0.98rem; color: var(--ink); margin-bottom: 0; }

/* ============== STATS / RIBBON ============== */
.stat-ribbon {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.stat-ribbon::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(255,177,0,0.22), transparent 65%);
  pointer-events: none;
}
.stat-ribbon .stat {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.16);
  position: relative;
  z-index: 1;
}
.stat-ribbon .stat:first-child { padding-left: 0; }
.stat-ribbon .stat:last-child { border-right: none; padding-right: 0; }
.stat-ribbon .stat .num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--gold);
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.stat-ribbon .stat .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}

/* ============== FEATURE CARDS ============== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 30px;
  transition: all 0.25s;
  position: relative;
}
.feature:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature h3 { margin-bottom: 12px; font-size: 1.35rem; }
.feature p { color: var(--ink); margin-bottom: 0; font-size: 0.98rem; line-height: 1.6; }

.section.dark .feature {
  background: var(--navy-2);
  border-color: rgba(255,255,255,0.12);
}
.section.dark .feature:hover { border-color: var(--gold); }
.section.dark .feature h3 { color: #fff; }
.section.dark .feature p { color: rgba(255,255,255,0.78); }

/* ============== COMPARISON / DIFFERENCE BENEFITS ============== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.benefit-row {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.benefit-row:hover { border-color: var(--gold); }
.benefit-row .check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 1.2rem;
}
.benefit-row .info h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}
.benefit-row .info p {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
}

/* ============== CTA STRIP ============== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 32px;
  margin: 100px 0;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,177,0,0.25), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(30,91,255,0.18), transparent 50%);
  pointer-events: none;
}
.cta-strip .wrap { position: relative; z-index: 1; max-width: 900px; }
.cta-strip h2 { color: #fff; margin-bottom: 22px; }
.cta-strip p { font-size: 1.18rem; max-width: 600px; margin: 0 auto 32px; color: rgba(255,255,255,0.85); }
.cta-strip .chapter { color: var(--gold); }
.cta-strip .chapter::after { background: rgba(255,255,255,0.18); }
.cta-strip .hero-cta { justify-content: center; }

/* ============== PAGE HEADER ============== */
.page-header {
  padding: 80px 0 50px;
}
.page-header .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.page-header h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  margin: 0 0 22px;
  line-height: 1;
  max-width: 900px;
}
.page-header p { font-size: 1.2rem; color: var(--ink); max-width: 720px; line-height: 1.55; }

/* ============== FORM ============== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.form-aside h3 { margin-bottom: 14px; font-size: 1.8rem; line-height: 1.05; }
.form-aside p { font-size: 1rem; }
.form-aside ul { list-style: none; margin: 28px 0; }
.form-aside li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
}
.form-aside li:last-child { border-bottom: 1px solid var(--line); }
.form-aside li::before {
  content: "✓";
  color: var(--gold-deep);
  font-weight: 700;
  flex-shrink: 0;
}
.form-aside li strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.form-aside li span { color: var(--ink); font-size: 0.92rem; line-height: 1.5; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px 40px;
  border-radius: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--sky-2);
  border: 1.5px solid var(--line);
  padding: 12px 14px;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field select option { background: #fff; color: var(--navy); }
.field textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.field .hint { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -10000px; }
.contact-form button.btn { display: flex; width: 100%; margin-top: 12px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer .brand { color: #fff; margin-bottom: 18px; display: inline-flex; }
.footer .brand:hover { color: var(--gold); }
.footer-brand p { font-size: 0.95rem; max-width: 340px; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 500;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.socials { display: flex; gap: 10px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  text-decoration: none;
  transition: all 0.15s;
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 360px; margin: 0 auto; }
  .feature-grid, .feature-grid.four { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .stat-ribbon { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat-ribbon .stat { border-right: none; padding: 0 24px; }
  .stat-ribbon .stat:nth-child(2) { border-right: none; }
  .stat-ribbon .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.16); padding-left: 0; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 14px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.cta-btn) { display: none; }
  .wrap { padding: 0 18px; }
  .hero { padding: 50px 0 60px; }
  .section { padding: 70px 0; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .feature-grid, .feature-grid.two, .feature-grid.four { grid-template-columns: 1fr; }
  .stat-ribbon { padding: 36px 28px; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-strip { padding: 80px 0; border-radius: 24px; margin: 70px 0; }
}
@media (max-width: 480px) {
  .stat-ribbon { grid-template-columns: 1fr; }
  .stat-ribbon .stat { padding: 16px 0 !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .stat-ribbon .stat:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
}
