/* ============================================================
   TENANTO — LANDING PAGE SECTIONS
   ============================================================ */

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(56px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(30,158,122,0.10), transparent 60%),
    radial-gradient(900px 500px at 8% 0%, rgba(31,58,95,0.07), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.1fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
.hero-copy { max-width: 560px; }
.hero h1 { font-size: var(--fs-display); margin-top: 22px; letter-spacing: -0.03em; }
.hero h1 .hl { color: var(--navy-700); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 0.34em; background: var(--teal-200); border-radius: 3px; z-index: -1; }
.hero .sub { font-size: var(--fs-lg); color: var(--text-muted); margin-top: 22px; line-height: var(--lh-relaxed); text-wrap: pretty; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: var(--fs-sm); color: var(--text-subtle); }
.hero-trust svg { width: 18px; height: 18px; color: var(--teal-600); flex: none; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 6px 14px 6px 7px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-full);
  font-family: var(--font-head); font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--text); box-shadow: var(--sh-xs);
}
.hero-pill .tag { background: var(--teal-100); color: var(--teal-700); padding: 3px 9px; border-radius: var(--r-full); font-size: var(--fs-2xs); }

/* ---------- DASHBOARD MOCKUP (shared) ---------- */
.mock {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-xl); box-shadow: var(--sh-xl); overflow: hidden;
  font-size: 13px;
}
.mock-top { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--n-200); }
.mock-url { margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-subtle); background: var(--n-50); padding: 4px 12px; border-radius: var(--r-full); border: 1px solid var(--border); }
.mock-body { display: grid; grid-template-columns: 188px 1fr; min-height: 420px; }
.mock-side { background: var(--navy-800); padding: 16px 12px; color: var(--text-on-navy-muted); }
.mock-side .ms-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 0 6px; }
.mock-side .ms-logo .mk { width: 24px; height: 24px; border-radius: 7px; }
.mock-side .ms-logo span { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 14px; }
.mock-nav { display: flex; flex-direction: column; gap: 2px; }
.mock-nav a { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 8px; font-size: 12.5px; font-weight: 500; color: var(--text-on-navy-muted); }
.mock-nav a svg { width: 15px; height: 15px; opacity: .85; }
.mock-nav a.active { background: rgba(255,255,255,0.10); color: #fff; }
.mock-main { padding: 18px; background: var(--bg); overflow: hidden; }
.mock-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-h h4 { font-size: 15px; }
.mock-h .mh-r { display: flex; gap: 8px; align-items: center; }
.mock-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.mstat { background: var(--surface); border: 1px solid var(--border); border-radius: 11px; padding: 12px; }
.mstat .lbl { font-size: 10.5px; color: var(--text-subtle); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.mstat .val { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--text-strong); margin-top: 5px; letter-spacing: -.02em; }
.mstat .val.teal { color: var(--teal-600); } .mstat .val.red { color: var(--red-600); } .mstat .val.amber { color: var(--amber-600); }
.mock-cards { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.mrow { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 8px; }
.mrow:last-child { margin-bottom: 0; }
.mrow .mr-l { display: flex; align-items: center; gap: 10px; }
.mrow .mr-ico { width: 32px; height: 32px; border-radius: 8px; background: var(--navy-100); display: flex; align-items: center; justify-content: center; color: var(--navy-700); font-family: var(--font-head); font-weight: 800; font-size: 12px; flex: none; }
.mrow .mr-t { font-weight: 600; color: var(--text-strong); font-size: 12.5px; }
.mrow .mr-s { font-size: 11px; color: var(--text-subtle); }
.mpanel { background: var(--surface); border: 1px solid var(--border); border-radius: 11px; padding: 13px; }
.mpanel h5 { font-size: 12px; color: var(--text-muted); font-family: var(--font-head); margin-bottom: 11px; font-weight: 700; }
.malert { display: flex; gap: 9px; padding: 9px 11px; border-radius: 9px; margin-bottom: 8px; font-size: 11.5px; line-height: 1.4; }
.malert:last-child { margin-bottom: 0; }
.malert svg { width: 15px; height: 15px; flex: none; margin-top: 1px; }
.malert.warn { background: var(--amber-50); color: var(--amber-700); }
.malert.danger { background: var(--red-50); color: var(--red-700); }
.malert.info { background: var(--blue-50); color: var(--blue-700); }
.malert b { font-weight: 700; }

/* floating status cards over hero mock */
.hero-mock-wrap { position: relative; }
.float-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: 12px 14px; display: flex; align-items: center; gap: 11px;
  animation: floaty 6s var(--ease) infinite;
}
.float-card .fc-ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: none; }
.float-card .fc-ico svg { width: 19px; height: 19px; }
.float-card .fc-t { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--text-strong); line-height: 1.2; }
.float-card .fc-s { font-size: 11px; color: var(--text-subtle); margin-top: 2px; }
.float-a { top: -22px; right: -14px; animation-delay: 0s; }
.float-b { bottom: -20px; left: -26px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .float-card { animation: none; } }

/* ---------- LOGO STRIP ---------- */
.logostrip { padding-block: 36px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logostrip p { text-align: center; font-size: var(--fs-xs); color: var(--text-subtle); font-weight: 600; letter-spacing: var(--tracking-caps); text-transform: uppercase; margin-bottom: 22px; }
.logostrip-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px,5vw,56px); }
.logostrip-row .ls-item { display: flex; align-items: center; gap: 9px; color: var(--navy-400); font-family: var(--font-head); font-weight: 800; font-size: 17px; opacity: .8; }
.logostrip-row .ls-item svg { width: 22px; height: 22px; }

/* ---------- PROBLEM GRID ---------- */
.problem { background: var(--bg-alt); }
.prob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.prob-card { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }
.prob-card .pc-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--red-50); color: var(--red-600); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.prob-card .pc-ico svg { width: 21px; height: 21px; }
.prob-card h3 { font-size: var(--fs-h4); margin-bottom: 8px; }
.prob-card p { color: var(--text-muted); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }

/* ---------- SOLUTION ---------- */
.sol-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.sol-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease); }
.sol-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--navy-200); }
.sol-card .icon-chip { width: 42px; height: 42px; margin-bottom: 15px; }
.sol-card .icon-chip svg { width: 21px; height: 21px; }
.sol-card h3 { font-size: var(--fs-base); margin-bottom: 6px; }
.sol-card p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }

/* ---------- MODULES ---------- */
.modules { background: var(--navy-900); color: var(--text-on-navy); position: relative; overflow: hidden; }
.modules::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 480px at 85% 0%, rgba(30,158,122,0.14), transparent 60%); z-index: 0; }
.modules .container { position: relative; z-index: 1; }
.modules .section-head h2 { color: #fff; }
.modules .section-head .lede { color: var(--text-on-navy-muted); }
.mod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 48px; }
.mod-card { padding: 22px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-navy); border-radius: var(--r-lg); transition: background .18s var(--ease), transform .18s var(--ease); }
.mod-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.mod-card .icon-chip { background: rgba(30,158,122,0.16); color: var(--teal-300); margin-bottom: 16px; }
.mod-card h3 { color: #fff; font-size: var(--fs-h4); margin-bottom: 12px; }
.mod-card ul { display: flex; flex-direction: column; gap: 7px; }
.mod-card li { display: flex; align-items: center; gap: 8px; font-size: var(--fs-sm); color: var(--text-on-navy-muted); }
.mod-card li svg { width: 14px; height: 14px; color: var(--teal-400); flex: none; }

/* ---------- HOW IT WORKS ---------- */
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: 52px; position: relative; }
.steps::before { content:""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--navy-200) 0 8px, transparent 8px 16px); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step .num { width: 54px; height: 54px; border-radius: 50%; background: var(--surface); border: 2px solid var(--navy-200); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy-700); margin: 0 auto 16px; box-shadow: var(--sh-sm); }
.step:first-child .num, .step.active .num { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }
.step h3 { font-size: var(--fs-base); margin-bottom: 7px; }
.step p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; padding-inline: 6px; }

/* ---------- FOR WHOM ---------- */
.whom { background: var(--bg-alt); }
.whom-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.whom-card { padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }
.whom-card.feature { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.whom-card .wc-top { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.whom-card .icon-chip { margin: 0; }
.whom-card.feature .icon-chip { background: rgba(30,158,122,0.18); color: var(--teal-300); }
.whom-card h3 { font-size: var(--fs-h4); }
.whom-card.feature h3 { color: #fff; }
.whom-card .role { font-size: var(--fs-xs); color: var(--text-subtle); font-weight: 600; }
.whom-card.feature .role { color: var(--teal-300); }
.whom-card ul { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.whom-card li { display: flex; align-items: flex-start; gap: 9px; font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.45; }
.whom-card.feature li { color: var(--text-on-navy-muted); }
.whom-card li svg { width: 16px; height: 16px; color: var(--teal-600); flex: none; margin-top: 1px; }
.whom-card.feature li svg { color: var(--teal-400); }

/* ---------- UI PREVIEW (tabs) ---------- */
.preview { background: var(--surface); }
.tabs { display: flex; gap: 6px; justify-content: center; margin: 44px auto 0; flex-wrap: wrap; max-width: 760px; }
.tab {
  font-family: var(--font-head); font-weight: var(--fw-semi); font-size: var(--fs-sm);
  padding: 9px 18px; border-radius: var(--r-full); color: var(--text-muted);
  border: 1px solid var(--border); background: var(--surface); transition: all .14s var(--ease);
}
.tab:hover { border-color: var(--navy-300); color: var(--text-strong); }
.tab.active { background: var(--navy-700); border-color: var(--navy-700); color: #fff; box-shadow: var(--sh-sm); }
.tab-panels { margin-top: 32px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .4s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* data table */
.dtable { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.dtable thead th { text-align: left; font-family: var(--font-head); font-size: var(--fs-2xs); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--text-subtle); font-weight: 700; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.dtable tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.dtable tbody tr:last-child td { border-bottom: none; }
.dtable tbody tr:hover { background: var(--surface-2); }
.dtable .t-strong { font-weight: 600; color: var(--text-strong); }
.dtable .t-mono { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.dtable .avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--navy-100); color: var(--navy-700); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 11px; margin-right: 10px; vertical-align: middle; }
.cell-name { display: flex; align-items: center; }
.preview-frame { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.preview-frame .pf-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.preview-frame .pf-bar h4 { font-size: var(--fs-base); }
.preview-frame .pf-body { background: var(--surface); }

/* kanban */
.kanban { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; padding: 18px; }
.kcol { background: var(--bg-alt); border-radius: var(--r-md); padding: 12px; }
.kcol .kh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; font-family: var(--font-head); font-weight: 700; font-size: var(--fs-xs); color: var(--text-muted); }
.kcol .kh .cnt { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-full); padding: 1px 8px; font-size: 11px; }
.kcard { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px; margin-bottom: 9px; box-shadow: var(--sh-xs); }
.kcard:last-child { margin-bottom: 0; }
.kcard .kt { font-weight: 600; font-size: var(--fs-sm); color: var(--text-strong); margin-bottom: 6px; line-height: 1.3; }
.kcard .km { font-size: var(--fs-2xs); color: var(--text-subtle); font-family: var(--font-mono); margin-bottom: 9px; }
.kcard .kf { display: flex; align-items: center; justify-content: space-between; }

/* doc grid */
.docgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; padding: 18px; }
.doccard { border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px; background: var(--surface); }
.doccard .dico { width: 38px; height: 46px; border-radius: 6px; background: var(--navy-100); position: relative; margin-bottom: 13px; }
.doccard .dico::after { content: attr(data-ext); position: absolute; bottom: 6px; left: 5px; font-family: var(--font-head); font-weight: 800; font-size: 9px; color: var(--navy-600); letter-spacing: .03em; }
.doccard h5 { font-size: var(--fs-sm); margin-bottom: 5px; line-height: 1.3; }
.doccard .dm { font-size: var(--fs-2xs); color: var(--text-subtle); }

/* ---------- BENEFITS ---------- */
.ben-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.ben { padding: 22px; border-left: 3px solid var(--teal-400); background: var(--surface-2); border-radius: 0 var(--r-md) var(--r-md) 0; }
.ben .bnum { font-family: var(--font-head); font-weight: 800; font-size: 13px; color: var(--teal-600); letter-spacing: var(--tracking-caps); text-transform: uppercase; }
.ben h3 { font-size: var(--fs-base); margin: 8px 0 6px; }
.ben p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }

/* ---------- PRICING ---------- */
.pricing { background: var(--bg-alt); }
.price-toggle { display: inline-flex; gap: 4px; margin: 28px auto 0; padding: 4px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-full); }
.price-toggle button { padding: 8px 18px; border-radius: var(--r-full); font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); color: var(--text-muted); }
.price-toggle button.active { background: var(--navy-700); color: #fff; }
.price-toggle .save { font-size: 10px; background: var(--teal-100); color: var(--teal-700); padding: 1px 6px; border-radius: var(--r-full); margin-left: 6px; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; align-items: start; }
.price-grid-4 { grid-template-columns: repeat(4,1fr); gap: 16px; }
.price-card { padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); position: relative; }
.price-grid-4 .price-card { padding: 26px 20px; }
.price-card.featured { border: 2px solid var(--navy-700); box-shadow: var(--sh-lg); }
.price-card .pop { position: absolute; top: -13px; left: 26px; background: var(--navy-700); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: var(--fs-2xs); padding: 5px 13px; border-radius: var(--r-full); letter-spacing: .03em; }
.price-card .pname { font-family: var(--font-head); font-weight: 800; font-size: var(--fs-h4); color: var(--text-strong); }
.price-card .pdesc { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 6px; min-height: 40px; line-height: 1.4; }
.price-card .pamt { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 4px; }
.price-card .pamt .num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--text-strong); letter-spacing: -.03em; }
.price-grid-4 .price-card .pamt .num { font-size: 2.3rem; }
.price-card .pamt .per { font-size: var(--fs-sm); color: var(--text-subtle); line-height: 1.2; }
.price-card .pnote { font-size: var(--fs-2xs); color: var(--text-subtle); margin-bottom: 22px; }
.price-card .pvat { font-size: var(--fs-2xs); color: var(--text-subtle); margin: 0 0 22px; }
.price-card .btn { padding-block: 13px; }
.price-card .btn { width: 100%; }
.price-feats { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.price-grid-4 .price-feats li { font-size: var(--fs-sm); }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-sm); color: var(--text); line-height: 1.4; }
.price-feats li svg { width: 17px; height: 17px; color: var(--teal-600); flex: none; margin-top: 1px; }
.price-feats li.muted { color: var(--text-subtle); }
.price-feats li.muted svg { color: var(--n-300); }
.price-foot { text-align: center; margin-top: 28px; font-size: var(--fs-sm); color: var(--text-subtle); }

/* ---------- TESTIMONIALS ---------- */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.test-card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); display: flex; flex-direction: column; }
.test-card .stars { display: flex; gap: 2px; color: var(--amber-500); margin-bottom: 16px; }
.test-card .stars svg { width: 16px; height: 16px; }
.test-card blockquote { font-size: var(--fs-base); line-height: var(--lh-relaxed); color: var(--text); flex: 1; text-wrap: pretty; }
.test-card .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.test-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-100); color: var(--navy-700); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; flex: none; }
.test-card .who .nm { font-family: var(--font-head); font-weight: 700; font-size: var(--fs-sm); color: var(--text-strong); }
.test-card .who .rl { font-size: var(--fs-xs); color: var(--text-subtle); }
.demo-tag { display: inline-block; margin-top: 18px; font-size: var(--fs-2xs); color: var(--text-subtle); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: var(--fs-lg); color: var(--text-strong); }
.faq-q .ic { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; flex: none; transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease); }
.faq-q .ic svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .ic { background: var(--navy-700); border-color: var(--navy-700); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 4px 22px; color: var(--text-muted); line-height: var(--lh-relaxed); font-size: var(--fs-base); max-width: 92%; }

/* ---------- FINAL CTA ---------- */
.cta-final { background: var(--navy-800); color: #fff; border-radius: var(--r-2xl); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 360px at 50% -20%, rgba(30,158,122,0.22), transparent 60%); }
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; font-size: var(--fs-h1); }
.cta-final p { color: var(--text-on-navy-muted); font-size: var(--fs-lg); margin: 18px auto 0; max-width: 540px; line-height: var(--lh-relaxed); }
.cta-final .hero-cta { justify-content: center; margin-top: 32px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 620px; }
  .hero-mock-wrap { margin-top: 20px; }
  .sol-grid, .mod-grid, .ben-grid { grid-template-columns: repeat(2,1fr); }
  .prob-grid, .whom-grid, .test-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .steps::before { display: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-grid-4 { grid-template-columns: repeat(2,1fr); max-width: 640px; }
  .docgrid, .kanban { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .prob-grid, .sol-grid, .mod-grid, .whom-grid, .test-grid, .ben-grid { grid-template-columns: 1fr; }
  .price-grid-4 { grid-template-columns: 1fr; max-width: 460px; }
  .steps { grid-template-columns: 1fr; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-stats { grid-template-columns: repeat(2,1fr); }
  .mock-cards { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .docgrid, .kanban { grid-template-columns: 1fr; }
  .dtable .hide-sm { display: none; }
  .tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
}
