/* =========================================================================
   DAIKO Dental CAD — site stili
   Palet: krem/bej + mürekkep + teal aksan (DAIKO uygulamasından alındı)
   ========================================================================= */

:root {
  /* Zeminler */
  --cream:        #F6F1E8;   /* ana sayfa zemini */
  --cream-soft:   #FBF8F2;   /* kartlar / açık yüzeyler */
  --beige:        #EDE4D5;   /* alternatif bölüm zemini */
  --beige-deep:   #E3D7C3;   /* kenarlık / ince ayrım */
  --line:         #DED2BD;   /* hairline kenarlık */

  /* Koyu (viewport çerçeveleri + teknoloji bandı; logo lacivertiyle uyumlu) */
  --dark:         #161E36;
  --dark-2:       #1E2A49;
  --dark-line:    #30406B;

  /* Metin */
  --ink:          #211F1A;   /* başlıklar — sıcak siyaha yakın */
  --ink-2:        #544F46;   /* gövde metni */
  --muted:        #8B8475;   /* ikincil / etiket */
  --on-dark:      #EAE6DD;   /* koyu zeminde metin */
  --on-dark-mut:  #9AA3B2;

  /* Aksan — DAIKO logo: lacivert + camgöbeği */
  --teal:         #273A66;   /* birincil lacivert (açık zeminde okunur) */
  --teal-deep:    #1B2A4D;   /* hover / koyu */
  --teal-bright:  #5FCBDD;   /* parlak camgöbeği vurgu / koyu zemin / glow */
  --teal-tint:    #E6ECF7;   /* çok açık serin dolgu (ikon zemini) */

  /* Yardımcı */
  --amber:        #C58A2E;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-sm:    10px;
  --shadow-sm:    0 1px 2px rgba(60,45,20,.05), 0 2px 6px rgba(60,45,20,.04);
  --shadow:       0 4px 14px rgba(60,45,20,.07), 0 12px 32px rgba(60,45,20,.06);
  --shadow-lg:    0 8px 24px rgba(40,30,15,.10), 0 28px 60px rgba(40,30,15,.10);
  --shadow-dark:  0 20px 50px rgba(0,0,0,.40);

  --container:    1180px;
  --ff-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-disp: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-deep); }
ul { list-style: none; padding: 0; }
section { position: relative; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.01em; }
h1 { font-family: var(--ff-disp); font-weight: 600; font-size: clamp(2.4rem, 5.2vw, 4.05rem); letter-spacing: -.02em; }
h2 { font-family: var(--ff-disp); font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -.015em; }
h3 { font-size: 1.28rem; font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p  { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Yerleşim yardımcıları ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--teal-bright); border-radius: 2px; }
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head.left { margin-left: 0; }
.section-head p { font-size: 1.1rem; margin-top: 16px; color: var(--ink-2); }
.lead { font-size: 1.18rem; color: var(--ink-2); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-sans); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(39,58,102,.28); }
.btn--primary:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(39,58,102,.34); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--beige-deep); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); background: var(--cream-soft); }
.btn--light { background: var(--cream-soft); color: var(--ink); }
.btn--light:hover { color: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--on-dark { background: var(--teal-bright); color: #0A1730; box-shadow: 0 6px 22px rgba(95,203,221,.25); }
.btn--on-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(95,203,221,.35); color: #0A1730; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,241,232,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.3rem; color: var(--ink); letter-spacing: .02em; }
.brand:hover { color: var(--ink); }
.brand__mark { height: 46px; width: auto; flex: none; filter: drop-shadow(0 3px 6px rgba(20,28,50,.28)); }
.brand__txt { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__sub { font-size: .58rem; font-weight: 700; letter-spacing: .22em; color: #2C86A0; text-transform: uppercase; margin-top: 3px; }
.footer .brand__sub { color: var(--teal-bright); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  color: var(--ink-2); font-weight: 600; font-size: .93rem; padding: 8px 13px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--ink); background: rgba(0,0,0,.035); }
.nav__links a.active { color: var(--teal); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

/* ============================ HERO ============================ */
.hero { padding: 76px 0 88px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 60% at 85% 0%, rgba(95,203,221,.10), transparent 70%),
    radial-gradient(60% 70% at 8% 100%, rgba(197,138,46,.07), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  color: var(--ink-2); background: var(--cream-soft); border: 1px solid var(--line);
  padding: 7px 14px 7px 9px; border-radius: 999px; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 0 4px rgba(95,203,221,.18); }
.hero h1 { color: var(--ink); margin-bottom: 22px; }
.hero h1 .accent { color: var(--teal); font-style: italic; }
.hero__lead { font-size: 1.2rem; max-width: 540px; margin-bottom: 32px; }
.hero__cta { margin-bottom: 30px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .9rem; color: var(--muted); font-weight: 600; }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { width: 16px; height: 16px; color: var(--teal); }

/* Hero görsel — "uygulama" çerçevesi */
.hero__visual { position: relative; }
.app-frame {
  border-radius: 14px; overflow: hidden; background: #fff;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2.5deg);
  transition: transform .5s ease;
}
.app-frame:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.app-frame__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--dark); }
.app-frame__bar .d { width: 11px; height: 11px; border-radius: 50%; background: #3a4150; }
.app-frame__bar .d:nth-child(1) { background: #E2685B; }
.app-frame__bar .d:nth-child(2) { background: #E0A53B; }
.app-frame__bar .d:nth-child(3) { background: #4FB477; }
.app-frame__bar .t { margin-left: 10px; font-size: .74rem; color: var(--on-dark-mut); font-weight: 600; }
.app-frame img { width: 100%; display: block; }
.hero__float {
  position: absolute; bottom: -24px; left: -26px; z-index: 2;
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 13px;
}
.hero__float .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-tint); display: grid; place-items: center; color: var(--teal); flex: none; }
.hero__float .ic svg { width: 22px; height: 22px; }
.hero__float .v { font-family: var(--ff-disp); font-weight: 600; font-size: 1.25rem; color: var(--ink); line-height: 1; }
.hero__float .l { font-size: .78rem; color: var(--muted); font-weight: 600; }

/* ============================ LOGO/GÜVEN ŞERİDİ ============================ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-soft); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 36px; padding: 26px 0; }
.strip__label { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.strip__items { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.strip__items span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink); font-size: .96rem; }
.strip__items svg { width: 19px; height: 19px; color: var(--teal); flex: none; }

/* ============================ ÖZELLİK SATIRLARI ============================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature + .feature { margin-top: 110px; }
.feature--rev .feature__media { order: -1; }
.feature__body .eyebrow { margin-bottom: 14px; }
.feature__body h2 { margin-bottom: 18px; }
.feature__body p { font-size: 1.06rem; margin-bottom: 22px; }
.feature__list { display: grid; gap: 13px; }
.feature__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.feature__list svg { width: 22px; height: 22px; flex: none; color: var(--teal); margin-top: 1px; }
.feature__list b { color: var(--ink); }

/* Medya çerçeveleri */
.media-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); background: var(--cream-soft);
}
.media-card.light img { width: 100%; }
.media-card.dark { background: var(--dark); border-color: var(--dark-line); position: relative; }
.media-card.dark img { width: 100%; }
.media-card.dark .cap {
  position: absolute; left: 16px; bottom: 14px; font-size: .8rem; font-weight: 600;
  color: var(--on-dark-mut); background: rgba(10,13,20,.6); padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(4px); border: 1px solid var(--dark-line);
}
.media-stack { display: grid; gap: 18px; }
.media-stack .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ============================ BENEFITS GRID ============================ */
.bg-beige { background: var(--beige); }
.bg-beige.section { border-top: 1px solid var(--beige-deep); border-bottom: 1px solid var(--beige-deep); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin-bottom: 18px; }
.pillar__ic svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.12rem; margin-bottom: 8px; }
.pillar p { font-size: .95rem; }

/* ============================ MODÜL KARTLARI ============================ */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mod {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mod:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--beige-deep); }
.mod__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mod__ic { width: 46px; height: 46px; border-radius: 11px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; }
.mod__ic svg { width: 25px; height: 25px; }
.mod h3 { margin-bottom: 9px; font-size: 1.16rem; }
.mod p { font-size: .96rem; }
.tag { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.tag--live { background: var(--teal-tint); color: var(--teal-deep); }
.tag--dev  { background: #F6ECD8; color: var(--amber); }

/* ============================ TEKNOLOJİ (KOYU BANT) ============================ */
.tech { background: var(--dark); color: var(--on-dark); overflow: hidden; }
.tech::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 80% 10%, rgba(95,203,221,.12), transparent 65%);
}
.tech .container { position: relative; z-index: 1; }
.tech h2 { color: #fff; }
.tech .eyebrow { color: var(--teal-bright); }
.tech .eyebrow::before { background: var(--teal-bright); }
.tech__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tech__lead { color: var(--on-dark-mut); font-size: 1.08rem; margin-bottom: 28px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.spec {
  background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.spec h4 { color: #fff; font-size: .98rem; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.spec h4 svg { width: 17px; height: 17px; color: var(--teal-bright); }
.spec p { color: var(--on-dark-mut); font-size: .86rem; line-height: 1.5; }
.tech__media .media-card.dark { box-shadow: var(--shadow-dark); border-color: var(--dark-line); background: #0c0f16; }
.tech__note { margin-top: 18px; font-size: .85rem; color: var(--on-dark-mut); display: flex; gap: 9px; align-items: flex-start; }
.tech__note svg { width: 17px; height: 17px; color: var(--teal-bright); flex: none; margin-top: 2px; }

/* ============================ İŞ AKIŞI ============================ */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step__n {
  width: 44px; height: 44px; border-radius: 12px; background: var(--teal); color: #fff;
  display: grid; place-items: center; font-family: var(--ff-disp); font-weight: 600; font-size: 1.25rem;
  margin-bottom: 16px; box-shadow: 0 6px 16px rgba(39,58,102,.28);
}
.step h4 { margin-bottom: 7px; font-size: 1.05rem; }
.step p { font-size: .92rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 40px; left: 60px; right: -8px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--beige-deep) 0 7px, transparent 7px 13px);
}

/* ============================ SSS ============================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--ff-sans); font-weight: 700; font-size: 1.1rem; color: var(--ink);
}
.faq__q .ic { width: 26px; height: 26px; flex: none; color: var(--teal); transition: transform .3s ease; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 4px 24px; color: var(--ink-2); font-size: 1.02rem; }

/* ============================ İLETİŞİM / CTA ============================ */
.cta-wrap {
  background: linear-gradient(135deg, #2B3F6E, #1B2A4D 55%, #141E38);
  border-radius: var(--radius-lg); padding: 64px 56px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-wrap::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 80% at 90% 10%, rgba(95,203,221,.30), transparent 60%);
}
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.cta-wrap h2 { color: #fff; margin-bottom: 16px; }
.cta-wrap p { color: rgba(255,255,255,.85); font-size: 1.08rem; }
.cta-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 26px; backdrop-filter: blur(6px); }
.cta-card .field { margin-bottom: 14px; }
.cta-card label { display: block; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 6px; }
.cta-card input, .cta-card textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.10); color: #fff; font-family: var(--ff-sans); font-size: .95rem;
}
.cta-card input::placeholder, .cta-card textarea::placeholder { color: rgba(255,255,255,.55); }
.cta-card input:focus, .cta-card textarea:focus { outline: none; border-color: var(--teal-bright); background: rgba(255,255,255,.16); }
.cta-card .btn { width: 100%; margin-top: 4px; }
.cta-direct { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.cta-direct a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.cta-direct a:hover { color: var(--teal-bright); }
.cta-direct svg { width: 19px; height: 19px; color: var(--teal-bright); }

/* ============================ FOOTER ============================ */
.footer { background: var(--dark); color: var(--on-dark-mut); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand .brand__sub { color: var(--on-dark-mut); }
.footer__about { font-size: .92rem; color: var(--on-dark-mut); max-width: 320px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--on-dark-mut); font-weight: 500; font-size: .94rem; padding: 6px 0; }
.footer__col a:hover { color: var(--teal-bright); }
.footer__bottom { border-top: 1px solid var(--dark-line); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .85rem; }
.footer__bottom a { color: var(--on-dark-mut); }
.footer__bottom a:hover { color: var(--teal-bright); }

/* ============================ REVEAL ANIMASYON ============================
   Gizli durum yalnızca .js varken uygulanır; JS yoksa içerik görünür kalır. */
.reveal { transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.in, .js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .hero__grid, .feature, .feature--rev .feature__media, .tech__grid, .cta-grid { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .hero__visual { margin-top: 14px; }
  .app-frame { transform: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .step:not(:last-child)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .feature + .feature { margin-top: 72px; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 70px; left: 0; right: 0; background: var(--cream-soft);
    border-bottom: 1px solid var(--line); padding: 12px 16px 18px; box-shadow: var(--shadow);
  }
  .nav.open .nav__links a { padding: 13px; border-radius: 10px; }
  .nav__cta .btn--ghost { display: none; }
  .hero__float { position: static; margin-top: 18px; display: inline-flex; }
  .cta-wrap { padding: 40px 26px; }
  .media-stack .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pillars, .modules, .spec-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .strip__inner { flex-direction: column; align-items: flex-start; }
}
