/* ══════════════════════════════════════════════
   DISAN — Shared Styles
   ══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #111210;
  --bg1:       #181a17;
  --bg2:       #1f221d;
  --bg3:       #272a24;
  --green:     #0a2e1a;
  --green-mid: #134a29;
  --green-hi:  #1f6b3d;
  --gold:      #22c55e;
  --gold-hi:   #4ade80;
  --gold-dim:  #166534;
  --text:      #f0ede8;
  --text2:     #b8b5b0;
  --text3:     #918f8a;
  --border:    rgba(34,197,94,0.18);
  --border2:   rgba(240,237,232,0.08);
  --red:       #ef4444;
  --red-dim:   rgba(239,68,68,0.15);
  --orange:    #f59e0b;
  --orange-dim:rgba(245,158,11,0.15);
  --blue:      #3b82f6;
  --blue-dim:  rgba(59,130,246,0.15);
  --r:         8px;
  --r-lg:      16px;
  --max-w:     1200px;
  --pad:       48px;
}

/* ── FONTS ── */
@font-face { font-family:'Instrument Serif'; src:url('../fonts/InstrumentSerif-Regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Instrument Serif'; src:url('../fonts/InstrumentSerif-Italic.woff2') format('woff2'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'IBM Plex Mono'; src:url('../fonts/IBMPlexMono-Light.woff2') format('woff2'); font-weight:300; font-display:swap; }
@font-face { font-family:'IBM Plex Mono'; src:url('../fonts/IBMPlexMono-Regular.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'IBM Plex Mono'; src:url('../fonts/IBMPlexMono-Medium.woff2') format('woff2'); font-weight:500; font-display:swap; }
@font-face { font-family:'Bricolage Grotesque'; src:url('../fonts/BricolageGrotesque-Light.woff2') format('woff2'); font-weight:300; font-display:swap; }
@font-face { font-family:'Bricolage Grotesque'; src:url('../fonts/BricolageGrotesque-Regular.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'Bricolage Grotesque'; src:url('../fonts/BricolageGrotesque-Medium.woff2') format('woff2'); font-weight:500; font-display:swap; }
@font-face { font-family:'Bricolage Grotesque'; src:url('../fonts/BricolageGrotesque-SemiBold.woff2') format('woff2'); font-weight:600; font-display:swap; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
@media (max-width: 768px) {
  :root { --pad: 16px; }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17,18,16,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border2);
  transition: padding .3s;
}
nav.scrolled { padding-top: 12px; padding-bottom: 12px; }
@media (min-width: 1100px) {
  nav { padding-left: max(48px, calc((100vw - var(--max-w)) / 2)); padding-right: max(48px, calc((100vw - var(--max-w)) / 2)); }
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: none; }
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold) !important;
  color: #0a0a08 !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-hi) !important; }
@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-hamburger { display: none !important; }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.nav-mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(17,18,16,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px 28px 36px;
  flex-direction: column;
  border-bottom: 1px solid var(--border2);
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-mobile-menu.open { transform: translateY(0); }
.nav-mobile-menu a {
  color: var(--text2);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid var(--border2);
  transition: color .2s;
}
.nav-mobile-menu a:hover { color: var(--text); }
.nav-mobile-menu .nav-cta-mob {
  margin-top: 20px;
  display: block;
  background: var(--gold);
  color: #0a0a08 !important;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  border-bottom: none;
}

/* ── SECTIONS ── */
section {
  padding: 72px 0;
  position: relative;
}
@media (max-width: 768px) {
  section { padding: 48px 0; }
}

/* ── TAGS ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
  letter-spacing: .02em;
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.tag--pulse::before {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

/* ── HEADINGS ── */
.section-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin-bottom: 24px;
}
.section-headline em {
  font-style: italic;
  color: var(--gold);
}
.section-text {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 640px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s;
}
.btn-primary {
  background: var(--gold);
  color: #0a0a08;
}
.btn-primary:hover {
  background: var(--gold-hi);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(34,197,94,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-ghost:hover {
  border-color: var(--text3);
  background: rgba(240,237,232,.04);
}
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 32px;
}
.stat-item {
  background: var(--bg1);
  padding: 24px 20px;
  text-align: center;
}
.stat-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-label {
  font-size: .78rem;
  color: var(--text3);
}
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ── PILOT BOX ── */
.pilot-box {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(34,197,94,.06);
  border: 1px solid var(--border);
  border-radius: var(--r);
  max-width: 560px;
  position: relative;
  z-index: 2;
}
.pilot-box p {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 32px;
}
.feature-card {
  background: var(--bg1);
  padding: 28px 24px;
  transition: background .3s, transform .3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  background: var(--bg2);
}
.feature-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(34,197,94,.04) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s;
  pointer-events: none;
}
.feature-card:hover::after {
  transform: translateX(100%);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(34,197,94,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  transition: background .3s;
}
.feature-card:hover .feature-icon {
  background: rgba(34,197,94,.2);
}
.feature-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-card p {
  font-size: .87rem;
  color: var(--text3);
  line-height: 1.55;
  flex: 1;
}
.feature-link {
  margin-top: 16px;
  font-size: .82rem;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.feature-card:hover .feature-link {
  gap: 8px;
}
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    border-radius: var(--r-lg);
    scrollbar-width: none;
  }
  .features-grid::-webkit-scrollbar { display: none; }
  .feature-card {
    min-width: 75vw;
    scroll-snap-align: start;
    border-right: 1px solid var(--border2);
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text3);
    opacity: .3;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity .2s, background .2s;
  }
  .carousel-dot.active {
    opacity: 1;
    background: var(--gold);
  }
}
@media (min-width: 641px) {
  .carousel-dots { display: none; }
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.pricing-card {
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.pricing-card--highlight {
  border-color: var(--border);
  background: linear-gradient(135deg, var(--bg1) 0%, rgba(10,46,26,.3) 100%);
}
.pricing-card--highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}
.pricing-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .7rem;
  color: var(--gold);
  background: rgba(34,197,94,.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.pricing-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.pricing-card .desc {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.pricing-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg2);
  border-radius: var(--r);
  font-size: .88rem;
}
.pricing-tier .size { color: var(--text2); }
.pricing-tier .price {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--gold);
  font-weight: 500;
}
.pricing-min {
  font-size: .82rem;
  color: var(--text3);
  margin-top: 12px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px 20px; }
  .pricing-tier { font-size: .8rem; padding: 8px 10px; }
}

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: .88rem;
}
.compare-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  border-bottom: 2px solid var(--border2);
  color: var(--text2);
}
.compare-table th:not(:first-child) {
  text-align: center;
  min-width: 120px;
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border2);
  color: var(--text2);
}
.compare-table td:not(:first-child) {
  text-align: center;
}
.compare-table tr:hover td {
  background: rgba(240,237,232,.02);
}
.check { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.cross { color: var(--text3); opacity: .4; }
@media (max-width: 640px) {
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: calc(var(--pad) * -1);
    margin-right: calc(var(--pad) * -1);
    padding: 0 var(--pad);
  }
  .compare-table { font-size: .75rem; min-width: 420px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
  .compare-table th:not(:first-child) { min-width: 55px; }
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(34,197,94,.08) 0%, transparent 70%);
}
.cta-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section .section-headline { color: var(--text); }
.cta-section .section-text { max-width: 540px; text-align: center; }
.cta-fine {
  margin-top: 28px;
  font-size: .78rem;
  color: var(--text3);
  max-width: 480px;
  text-align: center;
  line-height: 1.6;
}
.btn-primary.btn-glow {
  box-shadow: 0 0 20px rgba(34,197,94,.3);
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(34,197,94,.3); }
  50% { box-shadow: 0 0 30px rgba(34,197,94,.45); }
}

/* ── FOOTER ── */
footer {
  padding: 48px var(--pad) 32px;
  border-top: 1px solid var(--border2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 1100px) {
  footer { padding-left: max(48px, calc((100vw - var(--max-w)) / 2)); padding-right: max(48px, calc((100vw - var(--max-w)) / 2)); }
}
.footer-left {
  font-size: .82rem;
  color: var(--text3);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: .82rem;
  color: var(--text3);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text2); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

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

/* ── FEATURE PAGE LAYOUT ── */
.feature-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}
.feature-hero .container {
  position: relative;
  z-index: 2;
}
.feature-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(10,46,26,.5) 0%, transparent 70%);
}
.feature-catch {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--text2);
  max-width: 600px;
  line-height: 1.4;
  margin-bottom: 32px;
}
.feature-body {
  padding: 80px 0;
}
.feature-body h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.feature-body .text-block {
  font-size: 1.02rem;
  color: var(--text2);
  line-height: 1.8;
  max-width: 720px;
}
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── PHONE MOCKUP ── */
.phone-mockup {
  width: 280px;
  margin: 0 auto;
  background: #1a1c19;
  border-radius: 36px;
  border: 3px solid #333;
  padding: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  position: relative;
}
.phone-notch {
  width: 100px; height: 24px;
  background: #1a1c19;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border2);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 2px solid var(--gold);
}
.timeline-item .time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline-item .event {
  font-size: .92rem;
  color: var(--text2);
}

/* ── DATA BINDINGS SECTION ── */
.data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.data-card {
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 24px 20px;
}
.data-card h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.data-card p {
  font-size: .84rem;
  color: var(--text3);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .data-cards { grid-template-columns: 1fr; }
}

/* ── BACK LINK (feature pages) ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text3);
  text-decoration: none;
  font-size: .85rem;
  margin-bottom: 24px;
  transition: color .2s;
}
.back-link:hover { color: var(--gold); }

/* ── IMPORT PROMISE ── */
.import-promise {
  background: linear-gradient(135deg, var(--bg1) 0%, rgba(10,46,26,.15) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  margin-top: 28px;
}
.import-promise h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.import-promise p {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 600px;
}

/* ── WHY DISAN ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(34,197,94,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.why-item h4 {
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.why-item p {
  font-size: .82rem;
  color: var(--text3);
  line-height: 1.5;
}
