/* ===================================================================
   QUIZ Q — header, hero, sections, mockups
   =================================================================== */

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: center;
  padding: 16px var(--gut);
  transition: padding 0.3s var(--ease);
}
.nav {
  width: min(100%, var(--maxw));
  display: flex; align-items: center; gap: 22px;
  padding: 10px 12px 10px 18px;
  border-radius: var(--pill);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 14px 34px -20px rgba(16,36,84,0.4);
  -webkit-backdrop-filter: blur(20px) saturate(160%); backdrop-filter: blur(20px) saturate(160%);
  transition: box-shadow 0.3s var(--ease), background 0.3s;
}
.site-header.scrolled .nav { background: rgba(255,255,255,0.94); box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 18px 40px -18px rgba(16,36,84,0.5); }
.nav-links { display: flex; gap: 4px; margin-inline: auto; }
.nav-links a {
  font-weight: 600; font-size: 0.92rem; color: var(--ink-2); white-space: nowrap;
  padding: 0.5em 0.85em; border-radius: var(--pill);
  position: relative; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(120,150,220,0.10); }
.nav-links a.active { color: var(--accent-deep); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0.85em; right: 0.85em; bottom: 0.28em;
  height: 2px; border-radius: 2px; background: var(--accent);
}
.nav-cta { display: flex; align-items: center; gap: 8px; }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex; align-items: center; flex: none;
  width: 76px; height: 48px;
  border-radius: 14px;
  background: url("/logo/logov2.png") center / cover no-repeat;
  box-shadow: 0 12px 24px -18px rgba(16,36,84,0.55);
  overflow: hidden;
}
.logo .logo-mark,
.logo .logo-word { display: none; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center; position: relative;
  background: linear-gradient(150deg, #5C8BFF 0%, var(--accent) 48%, #1B43C8 100%);
  box-shadow: 0 6px 16px -6px color-mix(in oklab, var(--accent) 70%, transparent),
              inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -6px 12px rgba(10,30,90,0.35);
}
.logo-mark::after { /* glossy top sheen */
  content: ""; position: absolute; inset: 1px 1px 45% 1px; border-radius: 10px 10px 16px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
}
.logo-mark span {
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.15rem;
  position: relative; z-index: 1; letter-spacing: -0.04em; line-height: 1; padding-left: 1px;
}
.logo-mark span i { color: #BFD2FF; font-style: normal; }
.logo-word { font-family: var(--font-script); font-size: 1.7rem; line-height: 1; color: var(--ink); padding-top: 4px; white-space: nowrap; }

/* hamburger (mobile) */
.nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-burger svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(120px, 16vw, 168px); padding-bottom: clamp(48px, 7vw, 80px); position: relative; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent); }

.hero-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas:
    "head head head head head head head quiz quiz quiz quiz quiz"
    "head head head head head head head quiz quiz quiz quiz quiz"
    "crm  crm  crm  crm  branch branch branch branch ana ana ana ana";
}
.hero-head   { grid-area: head; align-self: center; padding-right: clamp(0px, 2vw, 28px); }
.tile-quiz   { grid-area: quiz; align-self: center; }
.tile-crm    { grid-area: crm; }
.tile-branch { grid-area: branch; }
.tile-ana    { grid-area: ana; }

.hero h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6.4vw, 5.1rem); font-weight: 600; letter-spacing: -0.045em; line-height: 0.98; }
.hero h1 .script { font-size: 1.16em; display: inline-block; transform: rotate(-3deg); margin: 0 0.08em; }
.hero .lead { margin-top: 26px; font-size: clamp(1.06rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-chips { margin-top: 30px; }

/* data-hero variants (Tweaks) */
:root[data-hero="split"] .hero-grid {
  grid-template-areas:
    "head head head head head head quiz quiz quiz quiz quiz quiz"
    "head head head head head head quiz quiz quiz quiz quiz quiz";
}
:root[data-hero="split"] .tile-crm,
:root[data-hero="split"] .tile-branch,
:root[data-hero="split"] .tile-ana { display: none; }

:root[data-hero="center"] .hero-head { text-align: center; align-items: center; padding: 0; }
:root[data-hero="center"] .hero-grid {
  grid-template-columns: 1fr;
  grid-template-areas: "head" "quiz" "crm" "branch" "ana";
}
:root[data-hero="center"] .hero .lead { margin-inline: auto; }
:root[data-hero="center"] .hero-actions,
:root[data-hero="center"] .hero-chips { justify-content: center; }
:root[data-hero="center"] .tile-crm,
:root[data-hero="center"] .tile-branch,
:root[data-hero="center"] .tile-ana { display: none; }
:root[data-hero="center"] .tile-quiz { max-width: 640px; margin-inline: auto; width: 100%; }

/* ---------- Mockup primitives ---------- */
.mock { padding: 18px; display: flex; flex-direction: column; min-height: 0; }
.mock-label { display: flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.mock-label svg { width: 14px; height: 14px; color: var(--accent); }

/* quiz player */
.qp-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.qp-step { font-size: 0.82rem; font-weight: 700; color: var(--muted); white-space: nowrap; }
.qp-step b { color: var(--accent-deep); }
.qp-x { color: var(--muted-2); }
.qp-x svg { width: 16px; height: 16px; }
.qp-bar { height: 7px; border-radius: 999px; background: rgba(20,40,90,0.08); overflow: hidden; margin-bottom: 18px; }
.qp-bar i { display: block; height: 100%; width: 62%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-soft), var(--accent)); box-shadow: 0 0 10px color-mix(in oklab, var(--accent) 60%, transparent); }
.qp-q { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.02rem, 1.5vw, 1.22rem); letter-spacing: -0.02em; line-height: 1.18; margin-bottom: 18px; }
.qp-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 6px; }
.qp-opt {
  border-radius: 15px; padding: 11px; border: 1.5px solid var(--line);
  background: rgba(255,255,255,0.7); display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; cursor: default;
}
.qp-opt:hover { transform: translateY(-2px); }
.qp-opt .thumb { height: 56px; border-radius: 10px; position: relative; overflow: hidden; }
.qp-opt .thumb svg { position: absolute; right: 8px; bottom: 7px; width: 20px; height: 20px; color: rgba(255,255,255,0.92); }
.qp-opt .cap { display: flex; align-items: center; justify-content: space-between; font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.qp-opt .tick { width: 19px; height: 19px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; }
.qp-opt .tick svg { width: 12px; height: 12px; color: #fff; opacity: 0; }
.qp-opt.sel { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 16%, transparent); background: color-mix(in oklab, var(--accent) 5%, white); }
.qp-opt.sel .tick { background: var(--accent); border-color: var(--accent); }
.qp-opt.sel .tick svg { opacity: 1; }
.qp-next { margin-top: 14px; align-self: stretch; justify-content: center; }

.thumb-a { background: linear-gradient(140deg, #4D86FF, #2F6BFF); }
.thumb-b { background: linear-gradient(140deg, #5868E0, #3B47C4); }
.thumb-c { background: linear-gradient(140deg, #2BA6E8, #1A82C9); }
.thumb-d { background: linear-gradient(140deg, #46577F, #2C3A5E); }

/* CRM lead card */
.crm { gap: 0; }
.crm-card { background: rgba(255,255,255,0.66); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.crm-row { display: flex; align-items: center; gap: 10px; }
.crm-ava { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(150deg, #5868E0, #2F6BFF); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 0.95rem; flex: none; }
.crm-name { font-weight: 700; font-size: 0.96rem; }
.crm-tag { font-size: 0.74rem; font-weight: 700; color: var(--accent-deep); background: color-mix(in oklab, var(--accent) 12%, white); padding: 3px 9px; border-radius: 999px; margin-left: auto; }
.crm-fields { display: grid; gap: 7px; margin-top: 13px; }
.crm-field { display: flex; justify-content: space-between; font-size: 0.85rem; }
.crm-field span { color: var(--muted); }
.crm-field b { font-weight: 700; color: var(--ink-2); }
.crm-flow { display: flex; align-items: center; gap: 9px; margin-top: 14px; flex-wrap: wrap; }
.crm-flow .arrow { color: var(--accent); }
.crm-flow .arrow svg { width: 18px; height: 18px; }
.dest { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,0.8); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.dest svg { width: 15px; height: 15px; }
.dest.bx { color: #fff; background: linear-gradient(180deg, #2BA6E8, #1A82C9); border-color: transparent; }
.dest.tg { color: #1B8FD1; }
.dest.ml { color: var(--ink-2); }

/* branching schema */
.branch-svg { width: 100%; height: auto; margin-top: 2px; flex: 1; min-height: 0; }
.bnode { font-family: var(--font-ui); font-weight: 700; font-size: 12px; }

/* analytics funnel */
.fn { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; }
.fn-row { display: flex; align-items: center; gap: 10px; }
.fn-row .lbl { font-size: 0.78rem; font-weight: 600; color: var(--muted); width: 78px; flex: none; }
.fn-bar { height: 22px; border-radius: 7px; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); display: flex; align-items: center; justify-content: flex-end; padding-right: 8px; color: #fff; font-size: 0.74rem; font-weight: 700; box-shadow: var(--sh-sm); }
.fn-row:nth-child(2) .fn-bar { background: linear-gradient(90deg, #5C8BFF, #8FAEFF); }
.fn-row:nth-child(3) .fn-bar { background: linear-gradient(90deg, #8FAEFF, #B9CBFF); color: var(--accent-ink); }
.fn-row:nth-child(4) .fn-bar { background: linear-gradient(90deg, #B9CBFF, #D8E2FF); color: var(--accent-ink); }

/* code embed */
.code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.82rem;
  background: linear-gradient(180deg, #101a37, #0a1228); color: #C7D6FF;
  border-radius: 14px; padding: 14px 15px; line-height: 1.7; overflow: hidden;
  border: 1px solid rgba(120,150,255,0.18); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.code .dots { display: flex; gap: 6px; margin-bottom: 11px; }
.code .dots i { width: 10px; height: 10px; border-radius: 50%; background: #2a3a66; }
.code .dots i:first-child { background: #ff6b6b; } .code .dots i:nth-child(2){ background:#ffce5c; } .code .dots i:nth-child(3){ background:#5cd6a0; }
.code .tag { color: #6E97FF; } .code .atr { color: #8FE3C4; } .code .str { color: #FFC98F; } .code .cm { color: #5a6a96; }

/* theme palette */
.pal { display: flex; flex-direction: column; gap: 12px; }
.pal-sw { display: flex; gap: 8px; }
.pal-sw i { flex: 1; height: 34px; border-radius: 9px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), var(--sh-sm); }
.pal-preview { display: flex; align-items: center; gap: 9px; padding: 11px; border-radius: 13px; background: rgba(255,255,255,0.65); border: 1px solid var(--line); }
.pal-preview .pp-btn { font-size: 0.76rem; font-weight: 700; color: #fff; padding: 6px 12px; border-radius: 999px; }

/* ---------- Bento (Возможности) ---------- */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(10px, auto);
}
.b-card { padding: 24px; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.b-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.b-card .b-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.b-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.24rem; letter-spacing: -0.02em; }
.b-card p { color: var(--muted); font-size: 0.96rem; margin-top: 4px; }
.b-card .b-demo { margin-top: auto; padding-top: 18px; }

.col-7 { grid-column: span 7; } .col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; } .col-4 { grid-column: span 4; } .col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { padding: 28px; position: relative; counter-increment: step; }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: color-mix(in oklab, var(--accent) 32%, white); letter-spacing: -0.04em; line-height: 1; }
.step .num::before { content: "0" counter(step); }
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.28rem; margin: 14px 0 8px; letter-spacing: -0.02em; }
.step p { color: var(--muted); font-size: 0.98rem; }
.step .ipill { margin-top: 18px; }
.steps-line { position: absolute; }

/* ---------- Templates ---------- */
.tpl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tpl { padding: 0; overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); display: flex; flex-direction: column; }
.tpl:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.tpl .tpl-top { height: 116px; position: relative; display: grid; place-items: center; overflow: hidden; }
.tpl .tpl-top svg.bigicon { width: 44px; height: 44px; color: #fff; stroke-width: 1.6; position: relative; z-index: 1; }
.tpl .tpl-top::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 80% -10%, rgba(255,255,255,0.4), transparent 50%); }
.tpl .tpl-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.tpl .tpl-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; letter-spacing: -0.02em; }
.tpl .tpl-body p { color: var(--muted); font-size: 0.9rem; margin-top: 5px; }
.tpl .tpl-meta { display: flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 14px; font-size: 0.8rem; font-weight: 700; color: var(--accent-deep); }
.tpl .tpl-meta svg { width: 15px; height: 15px; }
.tpl-niche-event { background: linear-gradient(150deg, #4656D9, #2F6BFF); }
.tpl-niche-estate { background: linear-gradient(150deg, #2293D8, #1B6FC4); }
.tpl-niche-auto { background: linear-gradient(150deg, #3A4D7A, #1B2C5E); }
.tpl-niche-beauty { background: linear-gradient(150deg, #1AA6C2, #2F6BFF); }

/* ---------- Use cases ---------- */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.uc { padding: 22px; display: flex; gap: 15px; align-items: flex-start; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.uc:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.uc h3 { font-size: 1.04rem; font-weight: 700; letter-spacing: -0.01em; }
.uc p { color: var(--muted); font-size: 0.9rem; margin-top: 5px; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 860px; }
.qa { padding: 0; overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 22px 24px; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.02rem, 1.6vw, 1.18rem); letter-spacing: -0.02em; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .ic { margin-left: auto; flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.7); border: 1px solid var(--line); transition: transform 0.3s var(--ease), background 0.2s; }
.qa summary .ic svg { width: 17px; height: 17px; color: var(--accent-deep); }
.qa[open] summary .ic { transform: rotate(45deg); background: var(--accent); }
.qa[open] summary .ic svg { color: #fff; }
.qa .qa-body { padding: 0 24px 24px 24px; color: var(--muted); font-size: 1rem; max-width: 64ch; }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(44px, 7vw, 84px); text-align: center; color: #fff;
  background: radial-gradient(120% 120% at 15% -10%, #2E58E8, transparent 55%), radial-gradient(120% 120% at 90% 110%, #6E4DFF, transparent 55%), linear-gradient(180deg, #11214B, var(--bg-deep)); border: 1px solid rgba(120,150,255,0.25);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 50px 90px -40px rgba(11,20,48,0.7); }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(70% 80% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(70% 80% at 50% 0%, #000, transparent 75%); }
.cta-final > * { position: relative; }
.cta-final h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.04em; line-height: 1.0; }
.cta-final h2 .script { color: #BFD2FF; }
.cta-final p { color: rgba(225,234,255,0.82); font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin: 22px auto 0; max-width: 52ch; }
.cta-final .hero-actions { justify-content: center; margin-top: 36px; }
.cta-final .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.25); }
.cta-final .btn-ghost:hover { background: rgba(255,255,255,0.2); }
.cta-final .micro { margin-top: 18px; font-size: 0.9rem; color: rgba(210,222,255,0.7); display: inline-flex; gap: 8px; align-items: center; }
.cta-final .micro svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer .f-about { color: var(--muted); font-size: 0.94rem; margin-top: 16px; max-width: 34ch; }
.footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 14px; font-weight: 800; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--ink-2); font-size: 0.94rem; font-weight: 500; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent-deep); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.footer-bot p { color: var(--muted-2); font-size: 0.86rem; }
.footer-bot .soc { display: flex; gap: 10px; }
.footer-bot .soc a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.6); border: 1px solid var(--glass-border); color: var(--ink-2); transition: transform 0.2s, color 0.2s; }
.footer-bot .soc a:hover { transform: translateY(-2px); color: var(--accent-deep); }
.footer-bot .soc svg { width: 18px; height: 18px; }

/* focus styles */
:where(a, button, summary, input):focus-visible { outline: 3px solid color-mix(in oklab, var(--accent) 55%, transparent); outline-offset: 3px; border-radius: 8px; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas:
      "head head head head head head"
      "quiz quiz quiz quiz quiz quiz"
      "crm  crm  crm  branch branch branch"
      "ana  ana  ana  ana  ana  ana";
  }
  .bento .col-7, .bento .col-5, .bento .col-6, .bento .col-8, .bento .col-4 { grid-column: span 6; }
  .tpl-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-links.open { display: flex; position: absolute; top: 74px; left: var(--gut); right: var(--gut); flex-direction: column; gap: 4px; padding: 14px; border-radius: var(--r); background: rgba(255,255,255,0.92); border: 1px solid var(--glass-border); box-shadow: var(--sh-lg); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); margin: 0; }
  .nav-links.open a { padding: 12px 14px; }
  .steps { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --r-lg: 22px; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "quiz" "crm" "branch" "ana";
  }
  .bento .col-7, .bento .col-5, .bento .col-6, .bento .col-8, .bento .col-4, .bento .col-12 { grid-column: span 12; }
  .tpl-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn:not(.logo) { display: none; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}
