/* ============================================================
   Save Tax — editorial premium redesign (Kadence child)
   Warm bone paper · deep emerald accent · Newsreader + Manrope.
   All rules are scoped under .st-body so they never clash with
   Kadence's own styles.
   ============================================================ */

:root {
	--paper:      #F5F2EA;
	--paper-2:    #EEEADF;
	--white:      #FFFFFF;
	--ink:        #14181A;
	--ink-panel:  #11161A;

	--tx-1: #16191B;
	--tx-2: #4A5258;
	--tx-3: #7C828A;
	--tx-inv: #EDEAE1;
	--tx-inv-2: #A7ABA6;

	--line:   #DAD4C7;
	--line-2: #C9C2B2;
	--line-inv: rgba(255,255,255,0.14);

	--accent:      #0E6E4E;
	--accent-deep: #094A35;
	--accent-soft: #E2ECE5;
	--accent-tx:   #0B5C41;
	--accent-bright: #6FE0A8;

	--serif: "Newsreader", Georgia, "Times New Roman", serif;
	--sans:  "Manrope", system-ui, -apple-system, sans-serif;

	--shell: 1240px;
	--gutter: clamp(20px, 5vw, 64px);
	--sec-y: clamp(72px, 11vw, 150px);

	--r-sm: 8px;
	--r-md: 14px;
	--r-lg: 22px;

	--shadow-card: 0 1px 2px rgba(20,24,26,0.04), 0 18px 40px -28px rgba(20,24,26,0.22);
	--shadow-float: 0 2px 6px rgba(20,24,26,0.06), 0 30px 60px -34px rgba(20,24,26,0.34);
	--ease: cubic-bezier(.22,.61,.36,1);
}

/* Neutralise stray Kadence wrappers on our custom document. */
.st-body #wrapper,
.st-body .site,
.st-body #inner-wrap { all: unset; display: block; }

.st-body, .st-body *, .st-body *::before, .st-body *::after { box-sizing: border-box; }

.st-body {
	margin: 0;
	background: var(--paper);
	color: var(--tx-1);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
.st-body ::selection { background: var(--accent); color: #fff; }
.st-body img { display: block; max-width: 100%; }
.st-body a { color: inherit; text-decoration: none; }
.st-body button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.st-body .shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.st-body .section { padding-block: var(--sec-y); }
.st-body .section-paper { background: var(--paper-2); }

.st-body .eyebrow {
	font-family: var(--sans);
	font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--accent-tx); display: inline-flex; align-items: center; gap: 12px; margin: 0 0 22px;
}
.st-body .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.st-body .eyebrow.on-dark { color: var(--accent-bright); }
.st-body .eyebrow.on-dark::before { background: var(--accent-bright); }

.st-body .h-display { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.04; margin: 0; text-wrap: balance; }
.st-body .h-1 { font-size: clamp(40px, 6.6vw, 86px); }
.st-body .h-2 { font-size: clamp(30px, 4.4vw, 56px); }
.st-body .h-display em { font-style: italic; }

.st-body .lead { font-size: clamp(17px, 1.55vw, 21px); line-height: 1.62; color: var(--tx-2); max-width: 60ch; text-wrap: pretty; }
.st-body .measure { max-width: 64ch; }

/* ---------- Buttons ---------- */
.st-body .btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--sans); font-weight: 600; font-size: 15.5px; letter-spacing: 0.01em;
	padding: 15px 26px; border-radius: 100px; border: 1px solid transparent;
	transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
	white-space: nowrap;
}
.st-body .btn:active { transform: translateY(1px); }
.st-body .btn-primary { background: var(--ink); color: #fff; padding: 12px 22px; }
.st-body .btn-primary:hover { background: var(--accent-deep); box-shadow: var(--shadow-float); }
.st-body .btn-accent { background: var(--accent); color: #fff; }
.st-body .btn-accent:hover { background: var(--accent-deep); box-shadow: var(--shadow-float); }
.st-body .btn-ghost { background: transparent; color: var(--tx-1); border-color: var(--line-2); }
.st-body .btn-ghost:hover { border-color: var(--ink); background: var(--white); }
.st-body .btn-on-dark { background: var(--white); color: var(--ink); }
.st-body .btn-on-dark:hover { background: var(--accent); color: #fff; }
.st-body .btn-lg { padding: 18px 32px; font-size: 16.5px; }

/* ---------- Reveal animation ---------- */
.st-body .reveal { opacity: 0; transform: translateY(24px); }
@media (prefers-reduced-motion: no-preference) {
	.st-body .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
}
.st-body .reveal.in { opacity: 1; transform: none; }
.st-body .reveal[data-d="1"] { transition-delay: .08s; }
.st-body .reveal[data-d="2"] { transition-delay: .16s; }
.st-body .reveal[data-d="3"] { transition-delay: .24s; }

/* ============================================================ NAV */
.st-body .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 80; transition: background .35s var(--ease), border-color .35s var(--ease); border-bottom: 1px solid transparent; }
.st-body .nav.scrolled { background: rgba(245,242,234,0.82); -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid var(--line); }
.st-body .nav-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.st-body .brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -0.01em; font-size: 20px; color: var(--tx-1); }
.st-body .brand-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 19px; font-weight: 600; }
.st-body .brand-name { letter-spacing: 0.02em; }
.st-body .nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.st-body .nav-links a { font-size: 15px; font-weight: 500; color: inherit; opacity: .82; position: relative; padding-block: 6px; transition: opacity .2s; }
.st-body .nav-links a:hover { opacity: 1; }
.st-body .nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent); transition: width .3s var(--ease); }
.st-body .nav-links a:hover::after { width: 100%; }
.st-body .nav-right { display: flex; align-items: center; gap: 18px; }
.st-body .lang-toggle { display: inline-flex; border: 1px solid var(--line-2); border-radius: 100px; overflow: hidden; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; }
.st-body .lang-toggle .lang-btn { background: transparent; border: none; color: inherit; padding: 7px 13px; opacity: .6; transition: all .2s; }
.st-body .lang-toggle .lang-btn.active { background: var(--ink); color: #fff; opacity: 1; }
.st-body .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.st-body .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--tx-1); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }

/* ============================================================ HERO */
.st-body .hero { position: relative; }
.st-body .hero-sub { margin-top: 30px; }
.st-body .hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.st-body .hero-stats { margin-top: 64px; display: flex; gap: clamp(28px, 5vw, 72px); flex-wrap: wrap; }
.st-body .stat .n { font-family: var(--serif); font-size: clamp(34px, 4vw, 50px); line-height: 1; letter-spacing: -0.02em; color: var(--accent-tx); }
.st-body .stat .l { margin-top: 10px; font-size: 13.5px; color: var(--tx-3); max-width: 22ch; }
.st-body .hero-a { padding-top: 150px; padding-bottom: var(--sec-y); }
.st-body .hero-a .grid { display: grid; grid-template-columns: 1.05fr 0.85fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.st-body .hero-a .media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-float); aspect-ratio: 4 / 5; background: var(--paper-2); }
.st-body .hero-a .media img { width: 100%; height: 100%; object-fit: cover; }
.st-body .hero-a .media .tag { position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 12px 18px; border-radius: 12px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-card); }
.st-body .hero-a .media .tag b { color: var(--accent-tx); }

/* ============================================================ SECTION HEADER */
.st-body .sec-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.st-body .sec-head .lead { margin-top: 22px; }

/* ============================================================ SPLIT (Audience / About) */
.st-body .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 86px); align-items: center; }
.st-body .split.flip .split-media { order: -1; }
.st-body .split-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow-card); background: var(--paper-2); }
.st-body .split-media img { width: 100%; height: 100%; object-fit: cover; }
.st-body .split-body .lead { margin-top: 20px; }
.st-body .about-body { color: var(--tx-2); margin-top: 18px; }

.st-body .mini-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 2px; }
.st-body .mini-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.st-body .mini-list li:last-child { border-bottom: 1px solid var(--line); }
.st-body .mini-list .ic { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; color: var(--accent); }
.st-body .mini-list .ic svg { width: 100%; height: 100%; }
.st-body .mini-list b { font-weight: 700; }
.st-body .mini-list p { margin: 4px 0 0; color: var(--tx-2); font-size: 15px; }

/* ============================================================ FEATURES */
.st-body .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.st-body .feat { background: var(--paper); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px; transition: background .3s var(--ease); }
.st-body .feat:hover { background: var(--white); }
.st-body .feat-ic { color: var(--accent); width: 26px; height: 26px; }
.st-body .feat-ic svg { width: 100%; height: 100%; }
.st-body .feat .num { font-family: var(--serif); font-size: 15px; color: var(--accent-tx); letter-spacing: .04em; }
.st-body .feat h4 { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -0.01em; margin: 0; line-height: 1.18; }
.st-body .feat p { margin: 0; color: var(--tx-2); font-size: 15px; line-height: 1.55; }

/* ============================================================ WHY US (dark band) */
.st-body .band-dark { background: var(--ink-panel); color: var(--tx-inv); }
.st-body .band-dark .h-display { color: #fff; }
.st-body .band-dark .lead { color: var(--tx-inv-2); }
.st-body .compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(40px, 5vw, 64px); }
.st-body .cmp { border: 1px solid var(--line-inv); border-radius: var(--r-md); padding: clamp(26px, 3vw, 38px); }
.st-body .cmp.us { background: rgba(111,224,168,0.06); border-color: rgba(111,224,168,0.3); }
.st-body .cmp .tag { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--tx-inv-2); margin-bottom: 22px; }
.st-body .cmp.us .tag { color: var(--accent-bright); }
.st-body .cmp ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.st-body .cmp li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; }
.st-body .cmp.them li { color: var(--tx-inv-2); }
.st-body .cmp.us li { color: #fff; }
.st-body .cmp .mk { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; color: var(--tx-inv-2); }
.st-body .cmp .mk svg { width: 100%; height: 100%; }
.st-body .cmp .mk-ok { color: var(--accent-bright); }

/* ============================================================ OFFER (accordion) */
.st-body .svc-list { border-top: 1px solid var(--line-2); }
.st-body .svc { border-bottom: 1px solid var(--line-2); }
.st-body .svc-head { width: 100%; background: transparent; border: none; text-align: left; display: flex; align-items: center; gap: 24px; padding: clamp(24px, 3vw, 34px) 0; color: var(--tx-1); }
.st-body .svc-head .idx { font-family: var(--serif); font-size: 16px; color: var(--tx-3); flex: 0 0 auto; width: 42px; }
.st-body .svc-head .ttl { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -0.01em; flex: 1; line-height: 1.1; transition: color .2s; }
.st-body .svc:hover .svc-head .ttl, .st-body .svc.open .svc-head .ttl { color: var(--accent-tx); }
.st-body .svc-head .pm { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: all .3s var(--ease); }
.st-body .svc-head .pm svg { width: 16px; height: 16px; }
.st-body .svc.open .svc-head .pm { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(135deg); }
.st-body .svc-body { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.st-body .svc-body-inner { padding: 0 0 32px 66px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px; margin: 0; list-style: none; }
.st-body .svc-body-inner li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--tx-2); padding: 7px 0; }
.st-body .svc-body-inner .dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: 9px; }

/* ============================================================ PRICING */
.st-body .price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.st-body .price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 26px 28px; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.st-body .price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.st-body .price-card.feature { border-color: var(--accent); box-shadow: var(--shadow-card); }
.st-body .price-card .ribbon { position: absolute; top: -11px; left: 26px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.st-body .price-card .pk { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tx-3); min-height: 30px; }
.st-body .price-card h4 { font-family: var(--serif); font-weight: 500; font-size: 21px; letter-spacing: -0.01em; margin: 12px 0 4px; line-height: 1.15; }
.st-body .price-card .sub { font-size: 13px; color: var(--tx-3); min-height: 34px; }
.st-body .price-card .amt { display: flex; align-items: baseline; gap: 5px; margin: 20px 0 6px; padding-top: 20px; border-top: 1px solid var(--line); }
.st-body .price-card .amt .from-sm { font-size: 14px; color: var(--tx-3); align-self: flex-start; margin-top: 6px; }
.st-body .price-card .amt .v { font-family: var(--serif); font-size: 44px; line-height: 1; letter-spacing: -0.02em; }
.st-body .price-card .amt .u { font-size: 15px; color: var(--tx-3); font-weight: 600; }
.st-body .price-card .per { font-size: 13px; color: var(--tx-3); }
.st-body .price-card .tiers { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 0; flex: 1; }
.st-body .price-card .tiers li { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--tx-2); }
.st-body .price-card .tiers li:first-child { color: var(--tx-1); font-weight: 600; }
.st-body .price-card .tiers li span:last-child { color: var(--accent-tx); font-weight: 700; white-space: nowrap; }
.st-body .price-card .btn { width: 100%; }

/* ============================================================ CALCULATOR */
.st-body .calc { background: var(--ink-panel); color: var(--tx-inv); border-radius: var(--r-lg); padding: clamp(30px, 4vw, 52px); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center; margin-top: 28px; }
.st-body .calc h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px,2.6vw,32px); margin: 0 0 28px; color: #fff; letter-spacing: -0.01em; }
.st-body .calc-field { margin-bottom: 26px; }
.st-body .calc-field--last { margin-bottom: 0; }
.st-body .calc-field .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.st-body .calc-field label { font-size: 14px; color: var(--tx-inv-2); font-weight: 600; }
.st-body .calc-field .val { font-family: var(--serif); font-size: 20px; color: #fff; }
.st-body .seg { display: inline-flex; gap: 4px; background: rgba(255,255,255,.06); padding: 4px; border-radius: 100px; flex-wrap: wrap; }
.st-body .seg button { background: transparent; border: none; color: var(--tx-inv-2); font-size: 13.5px; font-weight: 600; padding: 9px 16px; border-radius: 100px; transition: all .2s; }
.st-body .seg button.on { background: #fff; color: var(--ink); }
.st-body .calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: rgba(255,255,255,.16); outline: none; }
.st-body .calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-bright); cursor: pointer; border: 4px solid var(--ink-panel); box-shadow: 0 0 0 1px var(--accent-bright); }
.st-body .calc input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-bright); cursor: pointer; border: 4px solid var(--ink-panel); }
.st-body .calc-out { border: 1px solid var(--line-inv); border-radius: var(--r-md); padding: 30px; text-align: center; background: rgba(111,224,168,0.05); }
.st-body .calc-out .cap { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--tx-inv-2); font-weight: 700; }
.st-body .calc-out .big { font-family: var(--serif); font-size: clamp(48px, 7vw, 72px); line-height: 1; letter-spacing: -0.02em; color: #fff; margin: 16px 0 4px; }
.st-body .calc-out .big.is-negotiate { font-size: clamp(28px, 4vw, 40px); }
.st-body .calc-out .big small { font-size: 24px; color: var(--accent-bright); }
.st-body .calc-out .note { font-size: 13px; color: var(--tx-inv-2); margin-top: 14px; }
.st-body .calc-out .btn { margin-top: 22px; width: 100%; }

/* ============================================================ TRUST */
.st-body .trust { background: var(--paper-2); }
.st-body .trust-quote { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.6vw, 46px); line-height: 1.22; letter-spacing: -0.015em; max-width: 18ch; margin: 0; }
.st-body .trust-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; margin-top: 8px; }
.st-body .trust-points { display: grid; gap: 22px; }
.st-body .trust-points .tp { display: flex; gap: 16px; align-items: flex-start; }
.st-body .trust-points .tp .ic { flex: 0 0 auto; width: 26px; height: 26px; color: var(--accent); margin-top: 2px; }
.st-body .trust-points .tp .ic svg { width: 100%; height: 100%; }
.st-body .trust-points .tp p { margin: 0; font-size: 15.5px; color: var(--tx-2); }
.st-body .trust-points .tp b { color: var(--tx-1); display: block; margin-bottom: 3px; font-size: 16px; }

/* ============================================================ CONTACT */
.st-body .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); }
.st-body .contact-info .c-item { padding: 22px 0; border-top: 1px solid var(--line); }
.st-body .contact-info .c-item:last-child { border-bottom: 1px solid var(--line); }
.st-body .contact-info .c-item .k { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-3); font-weight: 700; }
.st-body .contact-info .c-item .v { font-size: clamp(18px, 2vw, 22px); margin-top: 6px; font-weight: 500; }
.st-body .contact-info .c-item .v-addr { font-size: 18px; line-height: 1.5; }
.st-body .contact-info .c-item a:hover { color: var(--accent-tx); }

.st-body .form { display: grid; gap: 18px; }
.st-body .form .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.st-body .field { display: flex; flex-direction: column; gap: 8px; }
.st-body .field label { font-size: 13px; font-weight: 600; color: var(--tx-2); }
.st-body .field input, .st-body .field textarea { font-family: var(--sans); font-size: 15.5px; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--white); color: var(--tx-1); transition: border-color .2s, box-shadow .2s; width: 100%; }
.st-body .field textarea { resize: vertical; min-height: 120px; }
.st-body .field input:focus, .st-body .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.st-body .field.err input, .st-body .field.err textarea { border-color: #C0392B; }
.st-body .field .msg { font-size: 12.5px; color: #C0392B; min-height: 0; }
.st-body .form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--tx-3); line-height: 1.5; }
.st-body .form-consent input { margin-top: 3px; accent-color: var(--accent); }
.st-body .form-consent a { color: var(--accent-tx); text-decoration: underline; }
.st-body .form-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.st-body .form-note { font-size: 13px; color: var(--tx-3); }
.st-body .form-error-notice { background: #FBE9E7; border: 1px solid #E0A39B; color: #8A2E22; padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; }
.st-body .form-success { background: var(--accent-soft); border: 1px solid var(--accent); border-radius: var(--r-md); padding: 40px; text-align: center; }
.st-body .form-success .ic { width: 52px; height: 52px; margin: 0 auto 16px; color: var(--accent); }
.st-body .form-success .ic svg { width: 100%; height: 100%; }
.st-body .form-success h4 { font-family: var(--serif); font-weight: 500; font-size: 26px; margin: 0 0 8px; }
.st-body .form-success p { margin: 0; color: var(--tx-2); }
.st-body .st-hp { position: absolute; left: -9999px; }

/* ============================================================ FOOTER */
.st-body .footer { background: var(--ink-panel); color: var(--tx-inv); padding-block: clamp(56px, 7vw, 90px) 36px; }
.st-body .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-inv); }
.st-body .footer .brand { color: #fff; }
.st-body .footer .f-blurb { color: var(--tx-inv-2); margin-top: 20px; max-width: 36ch; font-size: 15px; }
.st-body .footer h5 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-inv-2); margin: 0 0 18px; font-weight: 700; }
.st-body .footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.st-body .footer ul a { color: var(--tx-inv); opacity: .85; font-size: 15px; }
.st-body .footer ul a:hover { opacity: 1; color: var(--accent-bright); }
.st-body .footer .f-addr { color: var(--tx-inv-2); font-size: 15px; line-height: 1.7; }
.st-body .footer .f-addr a:hover { color: var(--accent-bright); }
.st-body .footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 28px; font-size: 13px; color: var(--tx-inv-2); }
.st-body .footer-langs { display: inline-flex; gap: 12px; align-items: center; }
.st-body .footer-langs .sep { opacity: .3; }
.st-body .footer-langs a { color: var(--tx-inv-2); }
.st-body .footer-langs a.active { color: var(--accent-bright); font-weight: 700; }
.st-body .st-social { display: flex; gap: 12px; list-style: none; margin: 22px 0 0; padding: 0; }
.st-body .st-social a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-inv); color: var(--tx-inv-2); transition: all .2s; }
.st-body .st-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================================ LEGAL PAGE */
.st-body .st-legal-wrap { padding-top: clamp(120px, 14vw, 180px); }
.st-body .st-legal { max-width: 820px; }
.st-body .st-legal__body { margin-top: 28px; }
.st-body .st-legal__body p { color: var(--tx-2); margin: 0 0 18px; }

/* ============================================================ COOKIE */
.st-body .st-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 720px; margin-inline: auto; background: var(--ink-panel); color: var(--tx-inv); border-radius: var(--r-md); padding: 16px 18px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; box-shadow: var(--shadow-float); }
/* The scoped display:flex above out-specifies the UA [hidden] rule, so hide explicitly. */
.st-body .st-cookie[hidden] { display: none; }
.st-body .st-cookie__text { margin: 0; font-size: 13.5px; color: var(--tx-inv-2); flex: 1; min-width: 220px; }
.st-body .st-cookie__text a { color: var(--accent-bright); text-decoration: underline; }
.st-body .st-cookie__btn { white-space: nowrap; }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
	.st-body .hero-a .grid, .st-body .split, .st-body .compare, .st-body .calc, .st-body .trust-grid, .st-body .contact-grid, .st-body .footer-top { grid-template-columns: 1fr; }
	.st-body .feat-grid { grid-template-columns: 1fr; }
	.st-body .price-grid { grid-template-columns: repeat(2, 1fr); }
	.st-body .split.flip .split-media { order: 0; }
	.st-body .svc-body-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
	.st-body .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(245,242,234,0.97); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 8px 0; }
	.st-body .nav-links.is-open { display: flex; }
	.st-body .nav-links li { padding: 0 var(--gutter); }
	.st-body .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
	.st-body .nav-links a::after { display: none; }
	.st-body .nav-cta { display: none; }
	.st-body .nav-toggle { display: inline-flex; }
}
@media (max-width: 600px) {
	.st-body .price-grid { grid-template-columns: 1fr; }
	.st-body .form .frow { grid-template-columns: 1fr; }
	.st-body .hero-stats { gap: 28px; }
}
