/* Self-hosted font (Figtree, SIL Open Font License) – no requests to Google or any other third party */
@font-face { font-family: "Figtree"; src: url("fonts/figtree-latin.woff2") format("woff2"); font-weight: 300 900; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Figtree"; src: url("fonts/figtree-latin-ext.woff2") format("woff2"); font-weight: 300 900; font-style: normal; font-display: swap; unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --ink: #1f2328;
  --ink-2: #5b636b;
  --muted: #7d858d;
  --line: #d8dde3;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --brand: #1f6feb;
  --brand-2: #1f6feb;
  --brand-hover: #1a5fd0;
  --cta: #f26a00;          /* logo orange, slightly deeper so white text stays readable */
  --cta-hover: #d95e00;
  --logo: #ff7004;
  --g-blue: #1f6feb; --g-red: #d6382b; --g-yellow: #f5a60c; --g-green: #1b7f3f;
  --good: #1b7f3f;
  --bad: #d6382b;
  --radius: 20px;
  --shadow: 0 1px 2px rgba(58,64,70,.3), 0 2px 6px 2px rgba(58,64,70,.15);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }
[hidden] { display: none !important; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; }
h2 { font-size: clamp(28px, 4vw, 42px); text-align: center; margin-bottom: 14px; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; border: 0; cursor: pointer;
  background: var(--cta);
  color: #fff; border-radius: 999px; padding: 12px 22px;
  box-shadow: 0 1px 2px rgba(58,64,70,.3), 0 1px 3px 1px rgba(58,64,70,.15);
  transition: background .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease), opacity .2s;
}
.btn:hover { background: var(--cta-hover); box-shadow: 0 1px 3px rgba(58,64,70,.3), 0 4px 8px 3px rgba(58,64,70,.15); }
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .6; transform: none; }
.btn-sm { padding: 11px 22px; font-size: 15px; }
.btn-lg { padding: 20px 56px; font-size: 19px; min-width: 300px; text-align: center; }
.btn-block { display: block; text-align: center; width: 100%; }
.btn-light { background: #fff; color: var(--cta); box-shadow: none; }
.btn-light:hover { background: #fff4ec; }
.btn-wa { background: #25d366; box-shadow: 0 10px 24px -10px rgba(37,211,102,.8); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo { font-weight: 800; font-size: 20px; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo { gap: 8px; letter-spacing: -.02em; }
.logo-mark { width: 34px; height: 34px; }
.logo-easy { color: var(--logo); }
.nav-links { display: flex; gap: 26px; }
.nav-links a { text-decoration: none; color: var(--ink-2); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language switch: sliding pill */
.lang { position: relative; display: grid; grid-template-columns: 1fr 1fr; padding: 4px; border-radius: 999px; background: #eef1f7; box-shadow: inset 0 1px 2px rgba(11,27,51,.08); }
.lang button { position: relative; z-index: 1; border: 0; background: none; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 13px; font-weight: 700; color: var(--muted); border-radius: 999px; transition: color .25s; }
.lang button[aria-checked="true"] { color: var(--ink); }
.lang .flag { font-size: 16px; line-height: 1; filter: grayscale(1); opacity: .6; transition: filter .25s, opacity .25s, transform .25s; }
.lang button[aria-checked="true"] .flag { filter: none; opacity: 1; transform: scale(1.12); }
.lang-knob { position: absolute; top: 4px; bottom: 4px; left: 4px; width: calc(50% - 4px); border-radius: 999px; background: #fff; box-shadow: 0 2px 8px -2px rgba(11,27,51,.25); transition: transform .3s cubic-bezier(.3,1.4,.5,1); }
.lang[data-active="de"] .lang-knob { transform: translateX(100%); }
.lang button:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Hero */
.hero > .wrap { width: 100%; }
.hero {
  min-height: calc(100svh - 65px); display: flex; align-items: center;
  padding: 40px 0; text-align: center;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(31,111,235,.12), transparent 70%),
    radial-gradient(600px 300px at 90% 30%, rgba(123,77,255,.08), transparent 70%);
}
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); background: rgba(31,111,235,.08); padding: 6px 12px; border-radius: 999px; margin: 0 0 18px; }
.hero h1 { font-size: clamp(32px, 5.4vw, 60px); font-weight: 700; }
.hl { color: var(--brand); }
.sub { color: var(--ink-2); font-size: 19px; margin: 16px 0 26px; }


.compare { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.side { display: flex; flex-direction: column; align-items: center; }
.side-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; padding: 9px 18px 9px 12px; border-radius: 999px; background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(58,64,70,.12), 0 2px 8px -2px rgba(58,64,70,.15); margin-bottom: 18px; }
.side-tag.bad { color: var(--ink-2); }
.side-tag .tag-x { width: 20px; height: 20px; fill: none; stroke: #99a0a7; stroke-width: 2; stroke-linecap: round; }
.side-tag.good { border-color: #c7d9fb; box-shadow: 0 0 0 3px #e9f1fe, 0 2px 10px -2px rgba(31,111,235,.3); }
.side-tag .g-mark { width: 20px; height: 20px; }
.side-tag .g-word { font-size: 17px; }

/* ===== Google mobile SERP replica ===== */
.gphone {
  --g-blue: #1c10a8; --g-link: #1a5ad4; --g-text: #1f2328; --g-sub: #4c5257; --g-grey: #6f757b;
  width: 340px; max-width: 100%; height: 640px; overflow: hidden; position: relative; text-align: left;
  font-family: Arial, Roboto, "Helvetica Neue", sans-serif; color: var(--g-text);
  background: #fff; border-radius: 42px; padding: 12px 0 0;
  border: 10px solid #111; box-shadow: 0 30px 60px -25px rgba(11,27,51,.45);
}
.gphone::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 70px; background: linear-gradient(transparent, #fff); pointer-events: none; }
.gphone.glow { box-shadow: 0 0 0 4px rgba(31,111,235,.25), 0 40px 80px -25px rgba(31,111,235,.55); }
.side:first-child .gphone { filter: saturate(.85); }

.g-status { display: flex; justify-content: space-between; align-items: center; padding: 0 26px 6px; font: 600 14px -apple-system, "SF Pro Text", Arial, sans-serif; }
.g-sys { display: flex; gap: 5px; align-items: center; }
.g-sys svg { height: 11px; width: auto; fill: currentColor; }
.g-top { position: relative; display: flex; justify-content: flex-end; align-items: center; gap: 12px; padding: 8px 14px 6px; height: 44px; }
.g-logo { position: absolute; left: 50%; transform: translateX(-50%); font: 500 28px/1 "Product Sans", Arial, sans-serif; letter-spacing: -1px; }
.g-logo i { font-style: normal; }
.g-bell { width: 22px; height: 22px; }
.g-me { width: 30px; height: 30px; border-radius: 50%; background: #1f6feb; color: #fff; display: grid; place-items: center; font-size: 15px; }
.g-search { display: flex; align-items: center; gap: 10px; margin: 6px 10px 4px; padding: 0 14px; height: 44px; border-radius: 999px; background: #fff; box-shadow: 0 2px 8px rgba(31,35,40,.2); font-size: 16px; }
.g-search svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: #3b4046; stroke-width: 2; stroke-linecap: round; }
.g-q { flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; text-transform: lowercase; }
.g-q .q::after { content: ""; display: inline-block; width: 1.5px; height: 17px; margin-left: 1px; background: #1f6feb; vertical-align: -3px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.g-tabs { display: flex; gap: 18px; padding: 10px 14px 0; border-bottom: 1px solid #d8dde3; font-size: 14px; color: #5b636b; white-space: nowrap; overflow: hidden; }
.g-tabs span { padding-bottom: 9px; }
.g-tabs .on { color: var(--g-text); font-weight: 700; box-shadow: inset 0 -3px 0 var(--g-text); }
.g-dots { margin-left: auto; color: #5b636b; font-size: 18px; line-height: 1; }

/* Plain results */
.g-plain { background: #f1f3f5; }
.g-card { background: #fff; padding: 14px 14px 16px; margin-bottom: 8px; }
.g-src { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.g-src b { display: block; font-weight: 400; font-size: 14px; color: var(--g-text); }
.g-src small { display: block; font-size: 12px; color: var(--g-sub); }
.g-fav { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font: 700 13px Arial, sans-serif; font-style: normal; color: #fff; border: 1px solid #ecedef; }
.g-fav svg { width: 15px; height: 15px; }
.g-fav.li { background: #fff; color: #0a66c2; }
.g-fav.fb { background: #1877f2; font-size: 16px; }
.g-fav.ig { background: radial-gradient(circle at 30% 110%, #fdcb52, #fd5949 45%, #d6249f 60%, #285aeb 95%); }
.g-fav.ps { background: #99a0a7; }
.g-title { color: var(--g-link); font-size: 20px; line-height: 1.3; margin-bottom: 6px; }
.g-snip { color: var(--g-sub); font-size: 14px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Profile */
.kp { animation: pop .6s cubic-bezier(.2,1.4,.4,1) both; }
@keyframes pop { from { transform: translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }
.kp-head { display: flex; align-items: center; gap: 10px; padding: 14px 14px 12px; }
.kp-av { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; color: #fff; font: 700 16px Arial, sans-serif; background: radial-gradient(circle at 50% 35%, #f3c07a, #d9953f 70%); }
.kp-id { min-width: 0; }
.kp-name { font-size: 24px; line-height: 1.12; text-transform: capitalize; overflow-wrap: anywhere; }
.kp-role { font-size: 14px; color: var(--g-sub); }
.kp-head .g-dots { margin-left: auto; }
.kp-follow { flex-shrink: 0; border: 1px solid #767a7d; border-radius: 999px; padding: 7px 14px; font-size: 14px; }
.kp-media { display: flex; gap: 6px; padding: 0 0 0 14px; }
.kp-media > div { flex: 0 0 60%; height: 190px; border-radius: 14px 0 0 14px; display: grid; place-items: center; }
.kp-media > div:first-child { border-radius: 14px; }
.m-photo { background: radial-gradient(circle at 50% 38%, #f6cf8f 0 22%, transparent 23%), radial-gradient(ellipse at 50% 95%, #e9e3d9 0 42%, transparent 43%), linear-gradient(160deg, #e9a93c, #c9831f); }
.m-photo span { font: 700 26px Arial, sans-serif; color: rgba(255,255,255,.95); margin-top: -46px; text-shadow: 0 1px 3px rgba(0,0,0,.2); }
.m-stat { background: linear-gradient(160deg, #1b1f24, #0c3b1e); color: #fff; text-align: left; place-items: start !important; align-content: center; padding-left: 14px; }
.m-stat b { font: 900 34px/1 Impact, "Arial Black", sans-serif; letter-spacing: -1px; }
.m-stat small { font: 800 14px Impact, "Arial Black", sans-serif; letter-spacing: 1px; }
.kp-sub { font-size: 20px; padding: 18px 14px 10px; }
.kp-posts { display: flex; gap: 8px; padding-left: 14px; }
.post { flex: 0 0 40%; border-radius: 14px; overflow: hidden; background: #f1f3f5; }
.thumb { height: 150px; position: relative; }
.thumb span { position: absolute; left: 8px; bottom: 8px; background: rgba(0,0,0,.6); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.th1 { background: linear-gradient(180deg, #2b2b2b 0 30%, #d9c7b0 30% 55%, #f2f2f2 55%); }
.th2 { background: linear-gradient(180deg, #3a3a3a 0 30%, #cfb89c 30% 55%, #ececec 55%); }
.th3 { background: linear-gradient(180deg, #6b5b52, #b89a86); }
.post p { margin: 8px 10px 4px; font-size: 14px; line-height: 1.35; color: var(--g-text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post small { display: flex; align-items: center; gap: 5px; margin: 0 10px 10px; font-size: 12px; color: var(--g-sub); }
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot.yt { background: #ff0000; }
.dot.ig2 { background: linear-gradient(45deg, #fd5949, #d6249f, #285aeb); }

.hero-cta { margin-top: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 18px; color: var(--ink-2); font-size: 15px; font-weight: 500; }
.soft-link { display: inline-block; margin-top: 16px; font-weight: 600; color: var(--brand); text-decoration: none; border-bottom: 1px dashed currentColor; }

/* Strip */
.strip { background: #fff; border-block: 1px solid var(--line); padding: 26px 0; }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.strip-inner > div { display: flex; align-items: center; gap: 14px; }
.strip b { display: block; font-size: 18px; }
.strip span:not(.ico) { font-size: 14px; color: var(--ink-2); }

/* Sections */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.lead { text-align: center; color: var(--ink-2); font-size: 18px; margin: 0 0 40px; }
.pill { display: table; margin: 0 auto 14px; font-size: 14px; font-weight: 600; color: var(--brand); background: rgba(31,111,235,.1); padding: 6px 12px; border-radius: 999px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card .ico { margin-bottom: 16px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--ink-2); margin: 0; }

/* Case studies */

.cases { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 20px; justify-content: safe center; }
.case { flex: 0 0 240px; margin: 0; scroll-snap-align: center; text-align: center; }
.case-switch { display: inline-flex; background: #f1f3f5; border-radius: 999px; padding: 3px; margin-bottom: 14px; }
.case-switch button { border: 0; background: none; color: var(--ink-2); transition: background .25s var(--ease), color .25s; font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: 999px; cursor: pointer; }
.case-switch button.on { background: var(--brand); color: #fff; }
.case-badge { display: inline-flex; align-items: center; gap: 7px; height: 34px; margin-bottom: 14px; padding: 0 14px 0 10px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink); }
.case-badge .g-mark { width: 16px; height: 16px; }
.case-switch { height: 34px; }
.case-phone { display: block; width: 100%; height: 500px; padding: 0; border-radius: 34px; border: 8px solid #000; background: #fff; position: relative; overflow: hidden; cursor: default; box-shadow: 0 30px 60px -25px rgba(58,64,70,.5); }
.case-phone img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity .5s var(--ease); }
.case-phone img.show { opacity: 1; }
.case-phone.can-toggle { cursor: pointer; }
.case figcaption { margin-top: 14px; display: flex; flex-direction: column; }
.case figcaption b { font-size: 17px; }
.case figcaption span { font-size: 14px; color: var(--ink-2); }
.case-phone.empty { cursor: default; background: var(--bg-alt); border: 2px dashed var(--line); display: grid; place-items: center; margin-top: 45px; height: 495px; }
.empty-in { display: flex; flex-direction: column; gap: 10px; align-items: center; color: #b8c3d6; font-size: 34px; padding: 16px; }
.empty-in small { font-size: 14px; }
.empty-in code { font-size: 11px; color: #7f8ba3; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; position: relative; }
.steps li { position: relative; background: #fff; border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--line); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.steps li:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.steps .ico { margin-bottom: 18px; }
.step-n { position: absolute; top: 22px; right: 22px; font-size: 13px; font-weight: 700; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; width: 28px; height: 28px; display: grid; place-items: center; }
.steps h3 { font-size: 19px; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--ink-2); }

/* Pricing */
.price-card { max-width: 480px; margin: 36px auto 0; border-radius: 24px; padding: 32px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-top { text-align: center; }
.price-label { font-weight: 700; color: var(--brand); }
.price { font-size: 68px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.price .cur { font-size: 34px; vertical-align: top; position: relative; top: 10px; margin-right: 2px; }
.price .cur.after { margin: 0 0 0 6px; }
.price-note { color: var(--muted); font-size: 14px; }
.incl { list-style: none; padding: 0; margin: 24px 0; }
.incl li { padding: 8px 0 8px 30px; position: relative; }
.incl li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; border-radius: 50%; background: #e7f7ee; color: var(--good); font-size: 12px; font-weight: 800; display: grid; place-items: center; }

.express { display: flex; align-items: center; gap: 12px; border: 2px dashed #ffb547; background: #fff8ec; border-radius: 14px; padding: 14px 16px; cursor: pointer; margin-bottom: 18px; transition: background .2s, border-color .2s; }
.express input { position: absolute; opacity: 0; pointer-events: none; }
.express .box { width: 22px; height: 22px; border-radius: 6px; border: 2px solid #f0a020; flex-shrink: 0; display: grid; place-items: center; background: #fff; }
.express input:checked + .box { background: #f0a020; }
.express input:checked + .box::after { content: "✓"; color: #fff; font-weight: 800; font-size: 14px; }
.express input:focus-visible + .box { outline: 3px solid rgba(240,160,32,.4); outline-offset: 2px; }
.express:has(input:checked) { border-style: solid; background: #fff1d6; }
.ex-txt { display: flex; justify-content: space-between; align-items: center; gap: 10px; width: 100%; }
.ex-txt small { font-weight: 800; font-size: 16px; color: #b86e00; white-space: nowrap; }

.guarantee { display: flex; gap: 18px; align-items: center; margin-top: 20px; font-size: 14px; line-height: 1.45; color: var(--ink-2); background: #edf9f2; border: 1px solid #cfe9d7; border-radius: 16px; padding: 16px 16px 16px 18px; }
.guarantee b { color: var(--ink); }
.guarantee .seal b { color: #fff; }
.seal { width: 64px; height: 64px; flex-shrink: 0; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #fff; background: linear-gradient(160deg, #2fa55a, #1b7f3f); box-shadow: 0 0 0 4px #fff, 0 0 0 5px #cfe9d7, 0 4px 10px -2px rgba(27,127,63,.35); }
.seal b { font-size: 24px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.seal small { font-size: 9px; font-weight: 700; line-height: 1; letter-spacing: .14em; text-transform: uppercase; padding-left: .14em; }


/* FAQ */
details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 12px; }
summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 22px; line-height: 1; color: var(--brand); transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--ink-2); margin: 12px 0 0; }

/* Contact */
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; }
.c { text-decoration: none; border-radius: var(--radius); padding: 26px 20px; text-align: center; display: flex; flex-direction: column; gap: 4px; border: 1px solid var(--line); transition: transform .15s, box-shadow .15s; }
.c:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.c .ico { margin: 0 auto 8px; }
.c b { font-size: 18px; }
.c small { color: var(--ink-2); word-break: break-all; }
.c { background: #fff; }

/* Final */
.final { padding: 90px 0; text-align: center; color: #fff; background: var(--brand); }
.final h2 { margin-bottom: 28px; }
.final em { font-style: normal; text-decoration: underline; text-decoration-color: #f7b928; text-underline-offset: 6px; }
.final-sub { color: #d3e2fb; margin-top: 16px; }

.foot { padding: 30px 0 100px; text-align: center; font-size: 14px; color: var(--muted); }
.foot .disc { font-size: 12px; }

/* Sticky CTA */
.sticky-cta { display: none; }

/* Google wordmark in eyebrow */
.g-eyebrow { text-transform: none; letter-spacing: 0; font-size: 15px; color: var(--ink-2); background: #fff; border: 1px solid var(--line); box-shadow: 0 4px 14px -8px rgba(11,27,51,.25); padding: 7px 16px; }
.g-word { font: 600 17px/1 "Product Sans", Arial, sans-serif; letter-spacing: -.3px; margin: 0 1px; }
.g-word i { font-style: normal; }

/* Pricing card v2 */
.pc { display: grid; grid-template-columns: 1fr 1fr; max-width: 980px; margin: 40px auto 0; border-radius: 28px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 3px rgba(58,64,70,.2), 0 20px 50px -20px rgba(58,64,70,.35); }
.pc-visual { position: relative; padding: 34px; color: var(--ink); background: linear-gradient(160deg, #e9f1fe, #f7f8fa 75%); display: flex; flex-direction: column; justify-content: flex-start; gap: 22px; }
.g-badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 12px; background: #fff; color: var(--ink); border-radius: 16px; padding: 10px 16px 10px 12px; box-shadow: var(--shadow); }
.g-badge .g-icon { width: 30px; height: 30px; flex-shrink: 0; }
.g-badge b { display: block; font-size: 15px; line-height: 1.2; }
.g-badge small { display: block; font-size: 12px; color: var(--ink-2); }
.mini { background: #fff; color: #1f2328; border-radius: 18px; padding: 14px; font-family: Arial, Roboto, sans-serif; box-shadow: 0 1px 3px rgba(58,64,70,.3), 0 8px 24px 4px rgba(58,64,70,.15); }
.mini-search { display: flex; align-items: center; gap: 10px; border-radius: 999px; box-shadow: 0 1px 6px rgba(31,35,40,.28); padding: 8px 14px; font-size: 14px; }
.mini-search .g-icon { width: 18px; height: 18px; }
.mini-search span { flex: 1; }
.mini-mag { width: 18px; height: 18px; fill: none; stroke: #4b8bf5; stroke-width: 2.4; stroke-linecap: round; }
.mini-head { display: flex; align-items: center; gap: 10px; margin: 14px 2px 12px; }
.mini-av { width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle at 50% 38%, #f6cf8f 0 30%, transparent 31%), radial-gradient(ellipse at 50% 100%, #e9e3d9 0 45%, transparent 46%), linear-gradient(160deg, #e9a93c, #c9831f); flex-shrink: 0; }
.mini-head b { display: block; font-size: 20px; font-weight: 400; }
.mini-head small { color: #4c5257; font-size: 13px; }
.mini-follow { margin-left: auto; border: 1px solid #767a7d; border-radius: 999px; padding: 5px 12px; font-size: 13px; }
.mini-tiles { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 6px; height: 96px; }
.mini-tiles i { border-radius: 10px; }
.mt1 { background: radial-gradient(circle at 50% 40%, #f6cf8f 0 18%, transparent 19%), radial-gradient(ellipse at 50% 100%, #e9e3d9 0 38%, transparent 39%), linear-gradient(160deg, #e9a93c, #c9831f); }
.mt2 { background: linear-gradient(180deg, #2b2b2b 0 35%, #d9c7b0 35% 60%, #f2f2f2 60%); }
.mt3 { background: linear-gradient(160deg, #1b1f24, #0c3b1e); }
.mini-links { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.mini-links span { font-size: 12px; color: #1f6feb; background: #e9f1fe; border-radius: 999px; padding: 4px 10px; }
.pc-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 15px; color: var(--ink-2); }
.pc-points li { padding-left: 26px; position: relative; }
.pc-points li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 800; }
.pc-points b { color: var(--ink); }
.pc-buy { padding: 34px 36px 30px; display: flex; flex-direction: column; }
.pc-buy .price-label { font-weight: 700; color: var(--brand); }
.pc-buy .incl { margin: 20px 0 24px; }
.pc-guarantee { margin-top: 18px; }
.pay-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; font-size: 13px; color: var(--muted); }
.pay-icons { display: flex; gap: 5px; }
.pay-icons i { font-style: normal; font: 800 9px/1 Arial, sans-serif; height: 20px; min-width: 30px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 2px; padding: 0 5px; }
.b-apple { background: #000; color: #fff; font-size: 10px !important; }
.b-gpay { background: #fff; color: #3b4046; border: 1px solid #d8dde3; font-size: 10px !important; }
@media (max-width: 860px) {
  .pc { grid-template-columns: 1fr; }
  .pc-visual, .pc-buy { padding: 26px 20px; }
}
.req { font-size: 14px; color: var(--ink-2); background: var(--bg-alt); border-radius: 12px; padding: 12px 14px; margin: 0 0 18px; }

/* Qualification quiz (popup) */
/* Honeypot: invisible to people, bots fill it in */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.apply { width: min(560px, calc(100% - 24px)); max-height: calc(100dvh - 24px); border: 0; border-radius: 26px; padding: 0; color: var(--ink); box-shadow: 0 40px 100px -30px rgba(11,27,51,.6); }
.apply form { padding: 26px 28px 24px; display: flex; flex-direction: column; }
.ap-head { display: flex; justify-content: space-between; align-items: center; }
.ap-close { border: 0; background: var(--bg-alt); width: 34px; height: 34px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink-2); }
.apply .ap-progress { margin: 14px 0 24px; }
.apply .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-2); }
.form-err { color: var(--bad); font-size: 14px; font-weight: 600; }
.apply .form-err { margin: 14px 0 0; animation: fadeUp .3s var(--ease) both; }
.nopw { display: inline-flex; align-items: center; gap: 6px; margin: 14px 0 0; font-size: 13px; font-weight: 600; color: var(--good); background: #edf9f2; border-radius: 999px; padding: 6px 12px; }

.ap-kicker { font-size: 13px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .06em; }
.ap-progress { height: 6px; background: var(--bg-alt); border-radius: 99px; margin-top: 10px; overflow: hidden; }
.ap-progress span { display: block; height: 100%; width: 20%; border-radius: 99px; background: var(--brand); transition: width .4s ease; }
.ap-input { width: 100%; font: inherit; font-size: 16px; padding: 14px 16px; border: 1px solid #d5dbe5; border-radius: 12px; outline: 0; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.ap-input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(31,111,235,.12); }
select.ap-input { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237a8699' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 16px center; cursor: pointer; }
.chip { border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .15s, background .15s; }
.chip:hover { border-color: #b9c8ec; }
.chip.on { border-color: var(--brand); background: var(--brand); color: #fff; }
.q-badge { width: 72px; height: 72px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; font-size: 36px; font-weight: 800; color: #fff; background: var(--good); box-shadow: 0 0 0 10px #ddf5e7; animation: pop .6s cubic-bezier(.2,1.6,.4,1) both; }
.ap-small { font-size: 13px; color: var(--ink-2); margin: 14px 0 0; }
@media (max-width: 480px) {
  .apply form { padding: 22px 18px 18px; }
}

/* Checkout step: info left, embedded checkout right */
.q-badge.sm { width: 52px; height: 52px; font-size: 26px; margin: 4px 0 0; flex-shrink: 0; box-shadow: 0 0 0 7px #ddf5e7; }
.co .guarantee { margin-top: 0; }

.b-visa { background: #1a1f71; color: #fff; }
.b-mc { background: radial-gradient(circle at 38% 50%, #eb001b 0 7px, transparent 7.5px), radial-gradient(circle at 62% 50%, #f79e1b 0 7px, transparent 7.5px), #fff; border: 1px solid #e0e0e6; }
.b-amex { background: #2e77bb; color: #fff; }
@media (max-width: 860px) {
}

/* ===== Google-style components ===== */
.ico { width: 44px; height: 44px; border-radius: 50%; display: inline-grid; place-items: center; flex-shrink: 0; }
.ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico.lg { width: 56px; height: 56px; }
.ico.lg svg { width: 26px; height: 26px; }
.ico.blue { background: #e9f1fe; color: var(--g-blue); }
.ico.red { background: #fbe9e7; color: var(--g-red); }
.ico.yellow { background: #fdf6e1; color: #dd7a09; }
.ico.green { background: #e7f4eb; color: var(--g-green); }
.pill { background: #e9f1fe; color: var(--brand); }

.what { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.what .pill, .what h2 { text-align: left; margin-left: 0; }
.what-lead { color: var(--ink-2); font-size: 18px; margin: 0 0 24px; }
.what-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.what-list li { display: flex; gap: 14px; align-items: flex-start; }
.what-list b { display: block; font-size: 17px; }
.what-list span { color: var(--ink-2); font-size: 15px; }
.callout { font-style: normal; width: 24px; height: 24px; border-radius: 50%; background: var(--brand); color: #fff; font: 700 12px/24px Arial, sans-serif; text-align: center; flex-shrink: 0; box-shadow: 0 0 0 4px #fff; }
.mini.big { padding: 18px; max-width: 460px; margin: 0 auto; position: relative; }
.mini.big .mini-head b { font-size: 24px; }
.mini.big .mini-tiles { height: 130px; position: relative; }
.mini .mini-av { position: relative; }
.mini .mini-av .callout { position: absolute; right: -8px; bottom: -6px; }
.mini .mini-head small .callout { display: inline-block; margin-left: 6px; vertical-align: middle; transform: scale(.85); }
.mini .callout.abs { position: absolute; right: -10px; top: -10px; }
.mini-links { position: relative; align-items: center; }
.mini-links .callout { margin-left: auto; }

.who { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.who-c { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; font-size: 16px; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.who-c:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.feat-c { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.feat-c:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feat-c .ico { margin-bottom: 14px; }
.feat-c h3 { font-size: 18px; margin-bottom: 6px; }
.feat-c p { margin: 0; color: var(--ink-2); font-size: 15px; }

.cmp { margin-top: 36px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.cmp-row { display: grid; grid-template-columns: 1fr 110px 130px; align-items: center; padding: 16px 22px; gap: 10px; }
.cmp-row + .cmp-row { border-top: 1px solid var(--line); }
.cmp-head { background: var(--bg-alt); font-size: 14px; }
.cmp-head b { text-align: center; color: var(--ink-2); }
.cmp-head b.with { color: var(--brand); }
.cmp-row i { justify-self: center; display: grid; }
.cmp-row i svg { width: 26px; height: 26px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cmp-row i.no svg { stroke: #bcc1c7; }
.cmp-row i.yes svg { stroke: var(--g-green); }


/* ===== Motion ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Popup: soft fade/scale in and out */
.apply { opacity: 0; transform: translateY(18px) scale(.97); transition: opacity .35s var(--ease), transform .45s var(--ease), overlay .45s allow-discrete, display .45s allow-discrete; }
.apply[open] { opacity: 1; transform: none; animation: none; }
@starting-style { .apply[open] { opacity: 0; transform: translateY(18px) scale(.97); } }
.apply::backdrop { background: rgba(31,35,40,0); backdrop-filter: blur(0); transition: background .4s var(--ease), backdrop-filter .4s var(--ease), overlay .45s allow-discrete, display .45s allow-discrete; }
.apply[open]::backdrop { background: rgba(31,35,40,.5); backdrop-filter: blur(4px); }
@starting-style { .apply[open]::backdrop { background: rgba(31,35,40,0); backdrop-filter: blur(0); } }
.apply form { overflow: hidden; }

/* Quiz steps slide in the direction of travel */
@keyframes stepFwd { from { opacity: 0; transform: translateX(28px); } }
@keyframes stepBack { from { opacity: 0; transform: translateX(-28px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } }
.chip, .ap-opt > span { transition: border-color .2s var(--ease), background .2s var(--ease), color .2s, transform .2s var(--ease); }

/* Pricing ↔ checkout swap */
#priceStage { transition: opacity .35s var(--ease), transform .35s var(--ease); }
#priceStage.leaving { opacity: 0; transform: translateY(-12px); }
@keyframes coIn { from { opacity: 0; transform: translateY(24px); } }

@media (max-width: 1024px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .what { grid-template-columns: 1fr; gap: 36px; }
  .who, .feat { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .cmp-row { grid-template-columns: 1fr 64px 84px; padding: 14px 14px; font-size: 14px; }
}

/* ===== Questions section ===== */
.ask { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; max-width: 1040px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 44px; box-shadow: 0 1px 3px rgba(58,64,70,.15); }
.ask-copy .pill { margin: 0 0 14px; background: #e7f4eb; color: var(--g-green); }
.ask-copy h2 { text-align: left; }
.ask-copy p { color: var(--ink-2); font-size: 17px; margin: 0 0 22px; }
.ask-online { display: flex; align-items: center; gap: 8px; font-size: 14px !important; margin: 14px 0 0 !important; }
.ask .contact { grid-template-columns: 1fr; max-width: none; gap: 12px; }
.ask .c { flex-direction: row; align-items: center; text-align: left; gap: 14px; padding: 14px 18px; }
.ask .c .ico { margin: 0; }
.ask .c b { font-size: 16px; }
.ask .c small { margin-left: auto; }
.dot-online { width: 10px; height: 10px; border-radius: 50%; background: #22903f; box-shadow: 0 0 0 3px #e7f4eb; display: inline-block; animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(34,144,63,.12); } }

/* ===== Support chat ===== */
.chat-fab { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer; background: var(--brand); color: #fff; display: grid; place-items: center; box-shadow: 0 4px 8px 3px rgba(58,64,70,.15), 0 1px 3px rgba(58,64,70,.3); transition: transform .3s var(--ease), background .2s; }
.chat-fab:hover { background: var(--brand-hover); transform: scale(1.05); }
.chat-fab svg { grid-area: 1 / 1; width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease), opacity .25s; }
.chat-fab .fab-close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.chat-fab.is-open .fab-open { opacity: 0; transform: rotate(90deg) scale(.6); }
.chat-fab.is-open .fab-close { opacity: 1; transform: none; }
.chat-badge { position: absolute; top: -2px; right: -2px; min-width: 22px; height: 22px; border-radius: 99px; background: var(--g-red); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; padding: 0 6px; border: 2px solid #fff; animation: pop .4s var(--ease) both; }

.chat { position: fixed; right: 22px; bottom: 96px; z-index: 70; width: min(380px, calc(100vw - 24px)); height: min(600px, calc(100dvh - 120px)); display: flex; flex-direction: column; background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 8px 12px 6px rgba(58,64,70,.15), 0 4px 4px rgba(58,64,70,.3); opacity: 0; transform: translateY(16px) scale(.96); transform-origin: bottom right; transition: opacity .25s var(--ease), transform .35s var(--ease); }
.chat.show { opacity: 1; transform: none; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 16px 16px 18px; background: var(--brand); color: #fff; }
.chat-av { position: relative; width: 42px; height: 42px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex-shrink: 0; }
.chat-av > svg { width: 30px; height: 30px; }
.chat-av .dot-online { position: absolute; right: -1px; bottom: -1px; border: 2px solid var(--brand); box-shadow: none; animation: none; }
.chat-who { flex: 1; min-width: 0; }
.chat-who b { display: block; font-size: 16px; }
.chat-who small { font-size: 13px; color: #d3e2fb; }
.chat-x { border: 0; background: rgba(255,255,255,.15); color: #fff; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.chat-x svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px 16px 8px; display: flex; flex-direction: column; gap: 8px; background: var(--bg-alt); }
.msg { max-width: 82%; padding: 10px 14px; border-radius: 18px; font-size: 15px; line-height: 1.45; white-space: pre-wrap; word-wrap: break-word; animation: msgIn .35s var(--ease) both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px) scale(.98); } }
.msg.them { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 6px; }
.msg.agent { border-color: #d3e2fb; }
.msg.me { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 6px; }
.msg.pending { opacity: .7; }
.msg a { color: var(--brand); font-weight: 700; }
.msg.typing { display: flex; gap: 4px; padding: 14px 16px; }
.msg.typing i { width: 7px; height: 7px; border-radius: 50%; background: #99a0a7; animation: blinkDot 1.2s infinite; }
.msg.typing i:nth-child(2) { animation-delay: .15s; }
.msg.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes blinkDot { 0%, 60%, 100% { opacity: .3; transform: none; } 30% { opacity: 1; transform: translateY(-3px); } }
.chat-quick { display: flex; gap: 6px; padding: 8px 14px 6px; background: var(--bg-alt); overflow-x: auto; scrollbar-width: none; }
.chat-quick::-webkit-scrollbar { display: none; }
.chat-quick .chip { flex-shrink: 0; }
.chat-quick .chip { font-size: 13px; padding: 7px 12px; border-color: #d3e2fb; color: var(--brand); background: #fff; }
.chat-quick .chip:hover { background: #e9f1fe; }
.chat-input { display: flex; gap: 8px; padding: 12px 12px 8px; background: #fff; border-top: 1px solid var(--line); }
.chat-input input { flex: 1; min-width: 0; font: inherit; font-size: 15px; padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; outline: 0; background: var(--bg-alt); transition: border-color .2s, background .2s; }
.chat-input input:focus { border-color: var(--brand); background: #fff; }
.chat-input button { width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--brand); color: #fff; cursor: pointer; display: grid; place-items: center; flex-shrink: 0; transition: background .2s; }
.chat-input button:hover { background: var(--brand-hover); }
.chat-input svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chat-foot { margin: 0; padding: 4px 16px 12px; font-size: 12px; color: var(--muted); text-align: center; background: #fff; }
.chat-foot a { color: var(--brand); font-weight: 600; text-decoration: none; }
@media (max-width: 860px) {
  .ask { grid-template-columns: 1fr; padding: 28px 22px; gap: 28px; }
  .chat-fab { bottom: 84px; }
  .chat { right: 12px; bottom: 156px; height: min(560px, calc(100dvh - 180px)); }
}

/* ===== Google marks & real photos ===== */
.g-mark { width: 18px; height: 18px; flex-shrink: 0; }
.g-pill .fme-pill { width: 20px; height: 20px; }
.g-pill { display: flex; width: fit-content; align-items: center; gap: 8px; background: #fff; color: var(--ink); border: 1px solid var(--line); padding: 6px 14px 6px 10px; }
.ico.g { background: #fff; border: 1px solid var(--line); }
.ico.g .g-mark { width: 22px; height: 22px; }
.ico.g.lg .g-mark { width: 28px; height: 28px; }
.cmp-head b.with { display: inline-flex; align-items: center; justify-content: center; gap: 6px; }

.kp-av { overflow: hidden; padding: 0; background: #e7eaee; }
.kp-av img, .mini-av img, .m-photo img, .mt1 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.m-photo { background: #e7eaee; overflow: hidden; }
.kp-media > .m-photo { border-radius: 14px; }
.mini-av { background: #e7eaee; overflow: visible; }
.mini-av img { border-radius: 50%; }
.mt1 { overflow: hidden; background: #e7eaee; }

.photo-card { padding: 0; overflow: hidden; }
.card-photo { position: relative; height: 200px; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.card-photo .ico { position: absolute; left: 22px; bottom: -28px; border: 4px solid #fff; box-sizing: content-box; }
.card-body { padding: 42px 26px 26px; display: flex; flex-direction: column; align-items: flex-start; height: calc(100% - 200px); }
.card-body .out-tag { margin-top: auto; }
.card-body p { margin-bottom: 14px !important; }

.who-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--line); }

/* Get seen: desktop browser frame */
.seen { background: linear-gradient(180deg, #fff, var(--bg-alt)); }
.browser { max-width: 1080px; margin: 36px auto 0; border-radius: 16px; overflow: hidden; background: #1f2328; box-shadow: 0 1px 3px rgba(58,64,70,.3), 0 30px 70px -20px rgba(58,64,70,.45); border: 1px solid #3b4046; }
.browser-bar { display: flex; align-items: center; gap: 14px; padding: 10px 14px; background: #35363a; }
.bdots { display: flex; gap: 7px; }
.bdots i { width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; }
.bdots i:nth-child(2) { background: #febc2e; }
.bdots i:nth-child(3) { background: #28c840; }
.burl { flex: 1; max-width: 520px; margin: 0 auto; display: flex; align-items: center; gap: 8px; background: #1f2328; color: #bcc1c7; font: 13px Arial, sans-serif; border-radius: 999px; padding: 7px 14px; }
.burl .g-mark { width: 14px; height: 14px; }
.browser-shot { position: relative; }
.browser-shot img { display: block; width: 100%; height: auto; }
.shot-frame { position: absolute; left: 61%; top: 17%; width: 26.5%; height: 62%; border: 3px solid #f7b928; border-radius: 14px; box-shadow: 0 0 0 9999px rgba(0,0,0,.18); pointer-events: none; animation: framePulse 3s var(--ease) infinite; }
@keyframes framePulse { 50% { box-shadow: 0 0 0 9999px rgba(0,0,0,.1), 0 0 24px 4px rgba(251,188,4,.45); } }
.shot-callout { position: absolute; z-index: 1; left: 61%; top: 17%; transform: translate(-6px, calc(-100% - 8px)); display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--ink); font-weight: 700; font-size: 15px; padding: 8px 14px 8px 10px; border-radius: 999px; box-shadow: 0 4px 14px rgba(0,0,0,.3); }
.seen-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 32px; margin-top: 30px; }
.seen-points > div { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.seen-points .ico { width: 38px; height: 38px; }
.seen-points .ico svg { width: 19px; height: 19px; }
@media (max-width: 860px) {
  .shot-callout { font-size: 12px; padding: 5px 10px 5px 8px; }
  .card-photo { height: 170px; }
}

/* Verdict cards under the phones */
.verdict { display: flex; align-items: center; gap: 12px; margin: 18px 0 0; min-width: 240px; max-width: 300px; padding: 10px 16px 10px 10px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 1px 2px rgba(58,64,70,.12), 0 4px 12px -4px rgba(58,64,70,.18); font-size: 14px; line-height: 1.35; color: var(--ink-2); text-align: left; }
.verdict strong { display: block; font-size: 15px; }
.verdict .v-ic { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.verdict .v-ic svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.verdict.bad .v-ic { background: #fbe9e7; color: var(--g-red); }
.verdict.bad strong { color: var(--g-red); }
.verdict.good { border-color: #cfe9d7; box-shadow: 0 0 0 3px #e7f4eb, 0 4px 12px -4px rgba(27,127,63,.25); }
.verdict.good .v-ic { background: var(--g-green); color: #fff; }
.verdict.good strong { color: var(--g-green); }

/* Platform logos */
.pf { width: 20px; height: 20px; flex-shrink: 0; border-radius: 5px; }
.pf-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px 9px 10px; font-size: 15px; }
.pf-chip.on .pf { box-shadow: 0 0 0 2px #fff; }
.pf-row { display: inline-flex; align-items: center; gap: 7px; }
.pf-row .pf { width: 18px; height: 18px; }

/* Info tooltips */
/* In flex rows the icon is centred by the row itself */
.hero-trust .tip, .price-note .tip, .pay-lock .tip, .g-badge .tip, .guarantee .tip, /* After headings: a touch larger and optically centred on the capitals */
h3 .tip { width: 18px; height: 18px; font-size: 11px; top: -.12em; }
.tip { display: inline-grid; place-items: center; width: 16px; height: 16px; margin-left: 6px; vertical-align: middle; position: relative; top: -.1em; padding: 0; border: 1.5px solid #99a0a7; border-radius: 50%; background: #fff; color: #5b636b; font: italic 700 10px/1 Georgia, serif; cursor: help; flex-shrink: 0; transition: border-color .2s, color .2s, background .2s; }
.tip::before { content: "i"; }
.tip:hover, .tip:focus-visible, .tip[aria-describedby] { border-color: var(--brand); color: #fff; background: var(--brand); outline: 0; }
.tip-box { position: fixed; z-index: 200; max-width: 280px; padding: 12px 14px; border-radius: 12px; background: #1f2328; color: #fff; font-size: 13.5px; line-height: 1.5; box-shadow: 0 8px 24px rgba(0,0,0,.25); pointer-events: none; opacity: 0; transform: translateY(4px); transition: opacity .18s var(--ease), transform .18s var(--ease); }
.tip-box.show { opacity: 1; transform: none; }
.tip-box::after { content: ""; position: absolute; left: var(--arrow, 50%); bottom: -6px; width: 12px; height: 12px; background: #1f2328; transform: translateX(-50%) rotate(45deg); border-radius: 2px; }
.tip-box.below::after { bottom: auto; top: -6px; }
.g-badge .tip, .price-note .tip, .guarantee .tip { margin-left: auto; }
.guarantee { position: relative; }
.pc-guarantee .tip, .co .guarantee .tip { align-self: flex-start; }
.ex-txt + .tip { margin-left: 2px; }
.hero-trust > span { display: inline-flex; align-items: center; }
.price-note { display: flex; align-items: center; gap: 2px; }
.pay-lock { display: inline-flex; align-items: center; }
.nopw .tip { border-color: #83c896; color: var(--g-green); }

/* ===== Guarantee terms ===== */
.terms-link { border: 0; background: none; padding: 0; font: inherit; font-size: 13px; font-weight: 600; color: var(--brand); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(31,111,235,.35); }
.terms-link:hover { text-decoration-color: currentColor; }
.foot .terms-link, .foot a[data-terms] { font-size: inherit; }
.apply.terms { width: min(680px, calc(100% - 24px)); }
.terms-in { display: flex; flex-direction: column; max-height: calc(100dvh - 48px); }
.terms .ap-head { padding: 22px 26px 16px; border-bottom: 1px solid var(--line); }
.terms-title { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 700; }
.seal.sm { width: 36px; height: 36px; gap: 0; box-shadow: 0 0 0 3px #fff, 0 0 0 4px #cfe9d7; }
.seal.sm b { font-size: 15px; }
.terms-body { overflow-y: auto; padding: 6px 26px 12px; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.terms-body h4 { margin: 20px 0 6px; font-size: 16px; color: var(--ink); }
.terms-body p { margin: 0 0 8px; }
.terms-body ul { margin: 0 0 8px; padding-left: 20px; }
.terms-body li { margin-bottom: 6px; }
.terms-body b { color: var(--ink); }
.terms-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 26px 20px; border-top: 1px solid var(--line); }
.terms-foot small { color: var(--muted); }

/* ===== Phone polish ===== */
.ask .c { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; row-gap: 0; align-items: center; }
.ask .c .ico { grid-row: 1 / span 2; }
.ask .c b { align-self: end; }
.ask .c small { margin-left: 0; align-self: start; word-break: normal; overflow-wrap: anywhere; }
@media (max-width: 860px) {
  /* Hero: both phones side by side so the comparison reads at a glance */
  .hero { text-align: center; }
  .compare { flex-wrap: nowrap; gap: 10px; justify-content: center; margin-top: 8px; }
  .side { flex: 1 1 0; min-width: 0; }
  .hero .gphone { zoom: .5; }
  .hero .side-tag { font-size: 12px; padding: 6px 10px 6px 8px; gap: 5px; margin-bottom: 10px; line-height: 1.25; text-align: left; min-height: 42px; }
  .hero .side-tag .g-mark, .hero .side-tag .tag-x { width: 15px; height: 15px; }
  .hero .side-tag .g-word { font-size: 12.5px; }
  .verdict { min-width: 0; width: 100%; max-width: 172px; margin-top: 12px; padding: 8px 10px 8px 8px; gap: 8px; font-size: 12px; border-radius: 12px; }
  .verdict .v-ic { width: 24px; height: 24px; }
  .verdict > span[data-i18n] { font-size: 0; }  /* phones: keep only the bold key message */
  .verdict strong { font-size: 13px; }
  .verdict { justify-content: center; }
  body.at-hero .chat-fab:not(.is-open) { opacity: 0; transform: scale(.8); pointer-events: none; }
  .verdict .v-ic svg { width: 14px; height: 14px; }
  .hero-cta { margin-top: 28px; }
  .hero-trust { flex-direction: column; align-items: center; gap: 6px; }

  /* Trust strip: icon above text, two neat columns */
  .strip-inner { gap: 22px 12px; }
  .strip-inner > div { flex-direction: column; text-align: center; gap: 8px; }
  .strip b { font-size: 16px; }
  .strip span:not(.ico) { font-size: 13px; }

  /* Chat: full screen like a messenger app */
  .chat { inset: 0; width: 100%; height: 100dvh; border-radius: 0; transform: translateY(24px); z-index: 90; }
  .chat.show { transform: none; }
  .chat-head { padding-top: calc(14px + env(safe-area-inset-top, 0px)); }
  .chat-foot { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
  .chat-fab { width: 54px; height: 54px; right: 16px; }
  .chat-fab.is-open { opacity: 0; pointer-events: none; }
  body:has(.chat.show) .sticky-cta { transform: translateY(100%); }
  body:has(.chat.show) { overflow: hidden; }
}
@media (max-width: 480px) {
}

/* ===== Follower check (quiz step 2) ===== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes vbar { from { transform: translateX(-100%); } to { transform: translateX(260%); } }

/* Requirement box in "Who it's for" */
.req-box { display: flex; align-items: center; gap: 22px; margin-top: 24px; padding: 20px 24px; background: #fff; border: 1px solid #c7d9fb; border-radius: 20px; box-shadow: 0 0 0 4px #e9f1fe; }
.req-badge { flex-shrink: 0; width: 86px; height: 86px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--brand); color: #fff; box-shadow: 0 0 0 4px #fff, 0 0 0 5px #c7d9fb; }
.req-badge b { font-size: 24px; line-height: 1; letter-spacing: -.02em; }
.req-badge small { font-size: 11px; font-weight: 600; opacity: .9; margin-top: 3px; }
.req-txt { flex: 1; min-width: 0; }
.req-txt > b { display: block; font-size: 18px; margin-bottom: 4px; }
.req-txt > span { color: var(--ink-2); font-size: 15px; }
.req-pf { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex-shrink: 0; }
.req-p { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 12px; font-size: 14px; font-weight: 600; background: #fff; }
@media (max-width: 860px) {
  .req-box { flex-direction: column; text-align: center; padding: 22px 18px; }
  .req-pf { width: 100%; }
  .req-p { justify-content: center; }
}

/* ===== Video placeholders ===== */
.video-ph { position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: radial-gradient(120% 90% at 20% 10%, #3b6fd8 0%, #1d2b52 55%, #121a33 100%); box-shadow: 0 20px 40px -20px rgba(31,35,40,.45); display: grid; place-items: center; color: #fff; }
.video-ph::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 14px, transparent 14px 28px); }
.vp-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 16px; }
.vp-play { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.95); display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(255,255,255,.15); animation: vpPulse 2.6s var(--ease) infinite; }
.vp-play svg { width: 28px; height: 28px; fill: var(--brand); margin-left: 4px; }
@keyframes vpPulse { 50% { box-shadow: 0 0 0 18px rgba(255,255,255,.06); } }
.vp-inner b { font-size: 20px; }
.vp-inner small { font-size: 13px; color: #c9d6f2; }

/* ===== How it works: video + steps ===== */
.how-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; margin-top: 8px; }
.how-steps { grid-template-columns: 1fr; gap: 12px; }
.how-steps li { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: start; padding: 18px 20px; }
.how-steps li .ico { grid-row: 1 / span 2; margin: 0; width: 48px; height: 48px; }
.how-steps li .ico svg { width: 22px; height: 22px; }
.how-steps li .ico.g.lg .g-mark { width: 24px; height: 24px; }
.how-steps li h3 { font-size: 17px; margin: 2px 0 2px; padding-right: 30px; }
.how-steps li p { font-size: 14.5px; }
.how-steps .step-n { top: 16px; right: 16px; }

/* ===== Pricing column: video on top ===== */
.pc-visual .video-ph { border-radius: 16px; }

/* ===== Inline quiz ===== */
.panel-in { animation: fadeUp .45s var(--ease) both; }
.q-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.q-back { border: 0; background: none; padding: 6px 0; font: inherit; font-weight: 600; color: var(--ink-2); cursor: pointer; }
.q-back:hover { color: var(--ink); }
.q-kicker { font-size: 13px; font-weight: 700; color: var(--brand); letter-spacing: .04em; text-transform: uppercase; }
.q-progress { height: 6px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; margin-bottom: 26px; }
.q-progress span { display: block; height: 100%; width: 20%; background: var(--brand); border-radius: 99px; transition: width .45s var(--ease); }
.q-progress.done span { width: 100%; background: var(--g-green); }
.q-step h3 { font-size: 22px; line-height: 1.25; margin-bottom: 18px; }
.q-step.fwd { animation: stepFwd .45s var(--ease) both; }
.q-step.back { animation: stepBack .45s var(--ease) both; }
.q-hint { color: var(--ink-2); margin: -10px 0 16px; font-size: 15px; }
.q-opts { display: grid; gap: 10px; }
.q-opts.two { grid-template-columns: 1fr 1fr; }
.q-opt { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; font: inherit; font-size: 16px; font-weight: 600; color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: 14px; padding: 15px 18px; cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease), transform .15s var(--ease), box-shadow .2s; }
.q-opt:hover { border-color: #9ec0f7; transform: translateY(-1px); box-shadow: 0 4px 12px -6px rgba(31,111,235,.35); }
.q-opt.on { border-color: var(--brand); background: #e9f1fe; }
.q-opt .pf { width: 24px; height: 24px; }
.q-opts.two .q-opt { justify-content: center; }
.q-label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.q-label em { font-style: normal; font-weight: 400; color: var(--muted); }
.q-submit { margin-top: 6px; }
#quiz .form-err { margin: 12px 0 0; }

/* ===== Result (fit / not yet) ===== */
.fit-pill { display: inline-block; font-size: 15px; font-weight: 700; padding: 7px 16px; border-radius: 999px; background: #e7f4eb; color: var(--g-green); margin-bottom: 16px; }
.fit-pill.nofit { background: #fdf6e1; color: #9a6400; }
.fit-h { font-size: 26px; line-height: 1.2; margin-bottom: 12px; }
.fit-sum { color: var(--ink-2); font-size: 16px; margin: 0 0 20px; }
.fit-express { border-style: dashed; margin-bottom: 20px; }
.fit-total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; margin-bottom: 16px; }
.fit-total b { font-size: 36px; letter-spacing: -.02em; white-space: nowrap; }
.fit-pay { font-size: 18px; }
.fit-q { text-align: center; color: var(--ink-2); font-size: 14px; margin: 16px 0 6px; }
.fit-q a { color: var(--ink); font-weight: 600; }
.fit-g { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13.5px; color: var(--ink-2); margin: 10px 0 0; }
.seal.xs { width: 26px; height: 26px; box-shadow: 0 0 0 2px #fff, 0 0 0 3px #cfe9d7; gap: 0; }
.seal.xs b { font-size: 11px; }
.q-edit { display: block; margin: 16px auto 0; border: 0; background: none; font: inherit; font-size: 14px; font-weight: 600; color: var(--brand); cursor: pointer; }
#qNoFit .btn { margin-top: 4px; }

@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr; gap: 24px; }
  .q-step h3 { font-size: 20px; }
  .fit-h { font-size: 22px; }
  .q-opts.two { grid-template-columns: 1fr 1fr; }
}

/* ===== Outcome messaging ===== */
.outcome-line { display: inline-flex; align-items: center; gap: 12px; margin: -6px 0 0; padding: 10px 18px 10px 10px; border-radius: 999px; background: #e7f4eb; color: #14532d; font-size: 16px; border: 1px solid #cfe9d7; }
.outcome-line b { color: var(--g-green); }
.ol-ic, .out-tag svg { flex-shrink: 0; }
.ol-ic { width: 34px; height: 34px; border-radius: 50%; background: var(--g-green); display: grid; place-items: center; }
.ol-ic svg, .out-tag svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
/* the trend line draws itself, then keeps a gentle pulse */
.draw { stroke-dasharray: 30; stroke-dashoffset: 30; animation: drawLine 1.4s .6s var(--ease) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.ol-ic { animation: olPulse 2.8s 2s var(--ease) infinite; }
@keyframes olPulse { 50% { box-shadow: 0 0 0 7px rgba(27,127,63,.14); } }
.out-tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; padding: 6px 12px 6px 6px; border-radius: 999px; background: #e7f4eb; color: var(--g-green); font-size: 13.5px; font-weight: 700; }
.out-tag svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--g-green); }
.card.reveal.in .draw, .outcome-line .draw { animation-play-state: running; }

/* ===== Moment of truth ===== */
.mot { background: linear-gradient(180deg, #fff, var(--bg-alt)); }
.lanes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.lane { border-radius: 24px; padding: 24px; border: 1px solid var(--line); background: #fff; }
.lane.bad { background: linear-gradient(180deg, #fff, #fdf5f4); }
.lane.good { border-color: #c7d9fb; box-shadow: 0 0 0 4px #e9f1fe, 0 20px 40px -24px rgba(31,111,235,.45); }
.lane-tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 7px 14px 7px 10px; border-radius: 999px; border: 1px solid var(--line); background: #fff; margin-bottom: 18px; }
.lane-tag svg { width: 20px; height: 20px; fill: none; stroke: #99a0a7; stroke-width: 2; stroke-linecap: round; }
.lane-tag .g-mark { stroke: none; }
.lane ol { list-style: none; margin: 0; padding: 0; position: relative; }
.lane ol::before { content: ""; position: absolute; left: 19px; top: 20px; bottom: 20px; width: 2px; background: var(--line); }
.lane li { position: relative; display: flex; align-items: center; gap: 14px; padding: 9px 0; font-size: 15.5px; color: var(--ink-2); }
.l-ic { position: relative; z-index: 1; width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); }
.l-ic svg { width: 19px; height: 19px; fill: none; stroke: var(--ink-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lane-end { margin-top: 6px; padding: 12px 14px 12px 0 !important; color: var(--ink) !important; }
.lane-end b { font-size: 16.5px; }
.lane.bad .lane-end .l-ic { background: var(--g-red); border-color: var(--g-red); }
.lane.good .lane-end .l-ic { background: var(--g-green); border-color: var(--g-green); }
.lane-end .l-ic svg { stroke: #fff; }
.lane.bad li:nth-child(3) .l-ic svg { stroke: var(--g-red); }
.lane.good li:nth-child(3) .l-ic svg { stroke: var(--g-green); }
/* play the story step by step, bad lane shakes, good lane pops */
.lane li.reveal { transform: translateX(-14px); }
.lane li.reveal.in { transform: none; }
.lane li:nth-child(1) { --d: .1s !important; } .lane li:nth-child(2) { --d: .5s !important; }
.lane li:nth-child(3) { --d: .9s !important; } .lane li:nth-child(4) { --d: 1.4s !important; }
.lane.bad .lane-end.in .l-ic { animation: shake .5s 2.2s var(--ease) both; }
.lane.good .lane-end.in .l-ic { animation: popIn .6s 2.2s cubic-bezier(.2,1.8,.4,1) both; }
@keyframes shake { 20%, 60% { transform: translateX(-4px); } 40%, 80% { transform: translateX(4px); } }
@keyframes popIn { 50% { transform: scale(1.25); box-shadow: 0 0 0 8px rgba(27,127,63,.18); } }
.mot-q { text-align: center; font-size: 20px; margin: 36px 0 0; color: var(--ink-2); }
.mot-q b { color: var(--ink); }
@media (max-width: 860px) {
  .lanes { grid-template-columns: 1fr; }
  .outcome-line { font-size: 14px; text-align: left; }
  .mot-q { font-size: 17px; }
}
@media (min-width: 1024px) { .outcome-line { margin-bottom: 4px; } }

/* 30-day guarantee badge (pricing) */
.g30 { width: 78px; height: 78px; flex-shrink: 0; font-family: "Figtree", system-ui, sans-serif; filter: drop-shadow(0 4px 8px rgba(27,127,63,.3)); }
.reveal.in .pc-guarantee .g30 { animation: badgeIn .8s .3s cubic-bezier(.2,1.6,.4,1) both; }
@keyframes badgeIn { from { transform: scale(.6) rotate(-25deg); opacity: 0; } }
.g30.xs { width: 30px; height: 30px; filter: none; }
.pc-guarantee b { font-size: 15.5px; }

/* Before / after slider (Get seen) */
.ba { position: relative; overflow: hidden; user-select: none; touch-action: pan-y; }
.ba-before { display: block; width: 100%; height: auto; }
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); }
.ba-after > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,.45); pointer-events: none; z-index: 3; }
.ba-knob { position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; margin: -26px 0 0 -26px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 4px 16px rgba(0,0,0,.35); animation: knobPulse 2s var(--ease) infinite; }
.ba-knob svg { width: 26px; height: 26px; fill: none; stroke: var(--brand); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
@keyframes knobPulse { 50% { box-shadow: 0 4px 16px rgba(0,0,0,.35), 0 0 0 10px rgba(255,255,255,.25); } }
.ba-hint { position: absolute; top: calc(50% + 36px); left: 50%; transform: translateX(-50%); white-space: nowrap; background: rgba(31,35,40,.85); color: #fff; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px; transition: opacity .4s; }
.ba.touched .ba-hint { opacity: 0; }
.ba.touched .ba-knob { animation: none; }
.ba-tag { position: absolute; top: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--ink); font-size: 14px; font-weight: 700; padding: 7px 13px 7px 9px; border-radius: 999px; box-shadow: 0 2px 10px rgba(0,0,0,.3); pointer-events: none; }
.ba-tag svg { width: 17px; height: 17px; fill: none; stroke: #99a0a7; stroke-width: 2; stroke-linecap: round; }
.ba-tag .g-mark { stroke: none; }
.ba-tag-l { left: 14px; }
.ba-tag-r { right: 14px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 4; -webkit-appearance: none; appearance: none; }
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 60px; height: 900px; }
.ba-range:focus-visible + .ba-handle, .ba:has(.ba-range:focus-visible) .ba-knob { outline: 3px solid var(--brand); }
.ba .shot-frame { z-index: 1; }
.ba .shot-callout { z-index: 2; }
@media (max-width: 860px) {
  .ba-knob { width: 38px; height: 38px; margin: -19px 0 0 -19px; }
  .ba-knob svg { width: 20px; height: 20px; }
  .ba-tag { font-size: 11px; padding: 4px 9px 4px 6px; top: 8px; }
  .ba-tag-l { left: 8px; } .ba-tag-r { right: 8px; }
  .ba-hint { font-size: 11px; top: calc(50% + 26px); }
  .ba .shot-callout { display: none; }
}

/* ===== Reviews ===== */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; align-items: start; }
.rev { position: relative; margin: 0; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 1px 2px rgba(58,64,70,.08); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.rev:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(58,64,70,.45); }
.rev-sample { position: absolute; top: -11px; right: 16px; z-index: 5; font-size: 11px; font-weight: 700; color: #8a5a00; background: #fdf6e1; border: 1px solid #f5d98e; padding: 3px 10px; border-radius: 999px; }
.rev-body { display: flex; flex-direction: column; gap: 16px; padding: 24px; }
.rev-who { padding: 0 0 14px !important; border-top: 0 !important; border-bottom: 1px solid var(--line); }
.rev-step { display: flex; flex-direction: column; gap: 6px; }
.rev-k { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.rev-step > p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); }
.rev-time .out-tag { align-self: flex-start; }
.rev-fb { padding-top: 14px; border-top: 1px solid var(--line); }
.rev-fb .rev-stars { margin-bottom: 2px; }
.rev-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rev-ba figure { position: relative; margin: 0; height: 170px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-alt); }
.rev-ba img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; display: block; }
.rev-lbl { position: absolute; top: 7px; left: 7px; z-index: 1; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.rev-lbl.before { color: var(--g-red); }
.rev-lbl.after { color: var(--g-green); }
.rev-stars { display: flex; gap: 3px; }
.rev-stars svg { width: 18px; height: 18px; fill: #f5a60c; }
.rev-stars .off svg { fill: #e7eaee; }
.rev-stars .off { display: contents; }
.rev blockquote { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.rev .out-tag { margin-top: 0; align-self: flex-start; }
.rev figcaption { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.rev figcaption > img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.rev figcaption b { display: block; font-size: 15px; }
.rev figcaption small { display: flex; align-items: center; gap: 6px; color: var(--ink-2); font-size: 13px; }
.rev figcaption .pf { width: 15px; height: 15px; border-radius: 4px; }
.rev-more { text-align: center; margin-top: 32px; }
.btn-outline { background: #fff; color: var(--brand); border: 1.5px solid #c7d9fb; box-shadow: none; }
.btn-outline:hover { background: #e9f1fe; }

/* ===== Reviews page ===== */
.rp-hero { padding: 64px 0 20px; text-align: center; background: radial-gradient(900px 400px at 50% -10%, rgba(31,111,235,.12), transparent 70%); }
.rp-hero h1 { font-size: clamp(34px, 5vw, 56px); margin: 6px 0 14px; }
.rp-stats { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.rp-stats > div { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px 22px; min-width: 150px; }
.rp-stats b { display: block; font-size: 26px; color: var(--brand); }
.rp-stats span { font-size: 14px; color: var(--ink-2); }
.rp-list { padding-top: 40px; }
.rp-filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.rp-filters .chip { padding: 9px 16px; }
.rp-filters .chip:not(.pf-chip) { padding: 9px 18px; }
.rp-empty { text-align: center; color: var(--ink-2); font-size: 18px; }
.rp .rev { animation: fadeUp .5s var(--ease) both; }

/* Review line in the price card */
.pc-rating { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--ink-2); text-decoration: none; }
.pc-rating:hover { color: var(--brand); }
.pc-stars { display: inline-flex; gap: 2px; }
.pc-stars svg { width: 16px; height: 16px; fill: #f5a60c; }

/* ===== Picture this ===== */
.pic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 40px; }
.pic-search .mini { max-width: 440px; margin: 0 auto; padding: 18px; }
.pic-typed { overflow: hidden; white-space: nowrap; border-right: 2px solid var(--brand); width: 0; }
.pic-search.in .pic-typed { animation: typeIn 1.2s .3s steps(12) forwards, caret .8s step-end 1.5s 3; }
@keyframes typeIn { to { width: 11ch; } }
@keyframes caret { 50% { border-color: transparent; } }
.pic-profile { opacity: 0; transform: translateY(12px); }
.pic-search.in .pic-profile { animation: picIn .7s 1.7s var(--ease) forwards; }
@keyframes picIn { to { opacity: 1; transform: none; } }
.pic-feed { display: flex; flex-direction: column; gap: 12px; }
.toast { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px; box-shadow: 0 10px 28px -18px rgba(31,35,40,.45); }
.toast.reveal { transform: translateX(30px) scale(.97); }
.toast.reveal.in { transform: none; }
.pic-feed .toast:nth-child(1) { --d: 2.2s !important; }
.pic-feed .toast:nth-child(2) { --d: 2.9s !important; }
.pic-feed .toast:nth-child(3) { --d: 3.6s !important; }
.pic-feed .toast:nth-child(4) { --d: 4.3s !important; }
.toast > div { flex: 1; min-width: 0; }
.toast small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.toast b { display: block; font-size: 15px; line-height: 1.35; }
.toast time { font-size: 12px; color: var(--muted); align-self: flex-start; white-space: nowrap; }
.t-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.t-ic svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.t-ic.blue { background: #e9f1fe; color: var(--g-blue); }
.t-ic.green { background: #e7f4eb; color: var(--g-green); }
.t-ic.yellow { background: #fdf6e1; color: #dd7a09; }
.t-ic.red { background: #fbe9e7; color: var(--g-red); }
@media (max-width: 860px) {
  .pic-grid { grid-template-columns: 1fr; gap: 24px; }
  .toast b { font-size: 14px; }
  }
.diy-cta { text-align: center; margin-top: 30px; }
@media (max-width: 1024px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
  .rev-grid { grid-template-columns: 1fr; }
  .ba-mini { height: 380px; }
}

/* ===== Mobile menu ===== */
.menu-btn { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0; }
.menu-btn span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mnav { position: fixed; left: 0; right: 0; top: 65px; bottom: 0; z-index: 49; background: rgba(255,255,255,.98); backdrop-filter: blur(10px); padding: 12px 20px calc(24px + env(safe-area-inset-bottom, 0px)); display: flex; flex-direction: column; gap: 18px; overflow-y: auto; opacity: 0; transform: translateY(-8px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.mnav.show { opacity: 1; transform: none; }
.mnav-links { display: flex; flex-direction: column; }
.mnav-links a { padding: 16px 4px; font-size: 19px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }
.mnav-links a::after { content: "›"; color: var(--muted); font-size: 22px; line-height: 1; }
.mnav-lang { display: flex; align-items: center; justify-content: space-between; font-weight: 600; color: var(--ink-2); }
body.menu-open { overflow: hidden; }
body.menu-open .sticky-cta, body.menu-open .chat-fab { opacity: 0; pointer-events: none; }
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
}
@media (max-width: 860px) {
  .nav-right > .lang { display: none; }
}

/* ===== "What you get": zoom into the profile block ===== */
.what { grid-template-columns: 1.25fr 1fr; }
.zbrowser { margin: 0; max-width: none; }
.zview { position: relative; overflow: hidden; aspect-ratio: 1600 / 872; background: #202124; }
.zstage { position: absolute; inset: 0; transform-origin: 74.1% 46.5%; transition: transform 1.3s cubic-bezier(.65,0,.25,1); }
.zstage img { display: block; width: 100%; height: 100%; }
/* zoomed: profile panel centred and enlarged */
.zoomed .zstage { transform: translate(-24.1%, 6.5%) scale(1.55); }
.zframe { position: absolute; left: 61.2%; top: 17.5%; width: 26%; height: 58%; border: 2px solid #f7b928; border-radius: 9px; box-shadow: 0 0 0 9999px rgba(0,0,0,.45); opacity: 0; transition: opacity .6s .9s; pointer-events: none; }
.zoomed .zframe { opacity: 1; }
.zc { position: absolute; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; background: var(--brand); color: #fff; font: 700 9px/16px "Figtree", Arial, sans-serif; font-style: normal; text-align: center; box-shadow: 0 0 0 2.5px #fff, 0 3px 8px rgba(0,0,0,.4); opacity: 0; transform: scale(.3); transition: opacity .3s, transform .45s cubic-bezier(.2,1.8,.4,1); }
.zc.on { opacity: 1; transform: scale(1); }
.what-list li { border-radius: 14px; padding: 10px 12px; margin: -10px -12px; transition: background .35s var(--ease), box-shadow .35s var(--ease); }
.what-list li.active { background: #e9f1fe; box-shadow: inset 3px 0 0 var(--brand); }
.what-list li .callout { transition: transform .35s cubic-bezier(.2,1.8,.4,1); }
.what-list li.active .callout { transform: scale(1.18); }
@media (max-width: 860px) { .what { grid-template-columns: 1fr; } .zc { width: 13px; height: 13px; margin: -6.5px 0 0 -6.5px; font-size: 7.5px; line-height: 13px; } }

.seen-mot { max-width: 720px; margin: 0 auto 8px; color: var(--ink); }
.seen-mot + .lead { margin-top: 0; font-size: 14.5px; color: var(--muted); }

/* Target line under the hero CTA */
.for-line { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; font-size: 15px; color: var(--ink-2); }
.for-line b { color: var(--ink); }
@media (max-width: 1023px) { .for-line { justify-content: center; text-align: center; max-width: 440px; margin-inline: auto; } }

/* ===== What's included: one panel ===== */
.inc-panel { display: grid; grid-template-columns: 1fr 2fr; align-items: center; gap: 40px; max-width: 980px; margin: 36px auto 0; padding: 40px 44px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 1px 2px rgba(58,64,70,.06); text-align: left; }
.inc-art { display: grid; place-items: center; }
.inc-illu { width: 100%; max-width: 240px; height: auto; display: block; }
.inc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.inc-list li { display: flex; gap: 16px; align-items: flex-start; }
.inc-check { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: #e7f4eb; display: grid; place-items: center; }
.inc-check svg { width: 18px; height: 18px; fill: none; stroke: var(--g-green); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.inc-list h3 { font-size: 18px; margin: 4px 0 4px; }
.inc-list p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
@media (max-width: 860px) {
  .inc-panel { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px; }
  .inc-illu { max-width: 150px; }
  .inc-list { gap: 20px; }
  .inc-list h3 { font-size: 17px; }
}

/* Visible timing next to the guarantee */
.timing { display: flex; flex-direction: column; gap: 8px; margin: 18px 0 0; }
.timing p { display: flex; gap: 10px; align-items: flex-start; margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.timing b { color: var(--ink); }
.timing svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.timing .terms-link { font-size: inherit; }
.timing + .pc-guarantee { margin-top: 14px; }
.pc-guarantee .terms-link { font-size: 13px; margin-top: 3px; display: inline-block; }

/* Expandable before/after in case studies */
.rev-ba[data-lb] { position: relative; cursor: zoom-in; border-radius: 12px; }
.rev-ba[data-lb]:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.rev-zoom { position: absolute; right: 8px; bottom: 8px; z-index: 2; width: 30px; height: 30px; border-radius: 50%; background: rgba(31,35,40,.72); display: grid; place-items: center; transition: transform .2s var(--ease), background .2s; }
.rev-zoom svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.rev-ba[data-lb]:hover .rev-zoom { transform: scale(1.1); background: var(--brand); }
.lb { width: min(900px, calc(100% - 24px)); max-height: calc(100dvh - 24px); border: 0; border-radius: 22px; padding: 0; background: #fff; box-shadow: 0 30px 80px -20px rgba(0,0,0,.5); }
.lb::backdrop { background: rgba(31,35,40,.7); backdrop-filter: blur(3px); }
.lb[open] { animation: fadeUp .3s var(--ease) both; }
.lb-in { padding: 18px 20px 22px; display: flex; flex-direction: column; max-height: calc(100dvh - 24px); }
.lb-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.lb-head b { font-size: 18px; }
.lb-x { border: 0; background: var(--bg-alt); width: 36px; height: 36px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink-2); }
.lb-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; overflow-y: auto; }
.lb-imgs figure { position: relative; margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.lb-imgs img { display: block; width: 100%; height: auto; }
.lb-imgs .rev-lbl { top: 10px; left: 10px; font-size: 13px; padding: 4px 12px; }
@media (max-width: 600px) { .lb-imgs { gap: 8px; } .lb-in { padding: 14px 12px 16px; } }

/* ===== Phones: one repeatable section pattern =====
   logo label → heading → subtitle → picture → content, all centred;
   only content inside boxes/cards stays left-aligned. */
@media (max-width: 860px) {
  .what { display: flex; flex-direction: column; gap: 0; }
  .what-copy { display: contents; }
  .what .pill { order: 1; margin: 0 auto 14px; }
  .what h2 { order: 2; text-align: center; }
  .what-lead { order: 3; text-align: center; font-size: 17px; }
  .what-visual { order: 4; width: 100%; margin: 6px 0 26px; }
  .what-list { order: 5; max-width: 420px; margin: 0 auto; text-align: left; }
  .section h2, .section .lead { text-align: center; }
  .g-pill { margin-left: auto; margin-right: auto; }
  .ask-copy .g-pill { margin-left: 0; }
  .ask-copy h2 { text-align: left; }
  .ask .contact { width: 100%; }
}
.ask-pill { background: #e7f4eb !important; color: var(--g-green) !important; border-color: #cfe9d7 !important; }

/* ===== Pricing card: below the CTA ===== */
.pc-rating { margin-top: 12px; font-size: 13.5px; font-weight: 500; color: var(--muted); }
.pc-panels { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.pc-p { display: flex; gap: 12px; align-items: flex-start; border-radius: 14px; padding: 13px 15px; border: 1px solid; }
.pc-p b { display: block; font-size: 15px; line-height: 1.35; color: var(--ink); }
.pc-p small { display: block; margin-top: 2px; font-size: 13px; color: var(--ink-2); }
.pc-ic { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: #fff; }
.pc-ic svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.pc-p.time { background: #e9f1fe; border-color: #c7d9fb; }
.pc-p.time .pc-ic { color: var(--brand); }
.pc-p.time b { font-size: 16px; }
.pc-p.guar { background: #edf9f2; border-color: #cfe9d7; }
.pc-p.guar .pc-ic { color: var(--g-green); }
.pc-p.guar b { font-size: 16px; }
.pc-p.guar small { font-size: 13.5px; line-height: 1.5; }
.pc-p .terms-link { margin-top: 4px; font-size: 13px; color: var(--g-green); text-decoration-color: rgba(27,127,63,.35); }
.pc-pay { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.pc-pay .pay-lock { display: inline-flex; align-items: center; gap: 6px; }
.pc-pay .pay-lock svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
@media (max-width: 860px) { .pc-pay { justify-content: center; } }

@media (max-width: 860px) { #startQuiz, .hero-cta .btn-lg { white-space: nowrap; font-size: 17px; padding-left: 16px; padding-right: 16px; } }

/* Customer responsibilities for the guarantee */
.pg-your { margin-top: 8px; }
.pg-your-k { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--g-green); margin-bottom: 4px; }
.pg-your ul { list-style: none; margin: 0 0 4px; padding: 0; display: grid; gap: 3px; }
.pg-your li { position: relative; padding-left: 16px; font-size: 13px; line-height: 1.45; color: var(--ink-2); }
.pg-your li::before { content: ""; position: absolute; left: 3px; top: .6em; width: 5px; height: 5px; border-radius: 50%; background: var(--g-green); }
.fit-your { background: #edf9f2; border: 1px solid #cfe9d7; border-radius: 12px; padding: 10px 14px; margin: 0 0 14px; text-align: left; }

.pc-badge { width: 58px; height: 58px; flex-shrink: 0; font-family: "Figtree", system-ui, sans-serif; filter: drop-shadow(0 3px 6px rgba(31,35,40,.18)); }
.pc-p { align-items: center; }

.who-ask { text-align: center; margin: 26px 0 0; }
.who-ask .soft-link { margin-top: 0; }

/* "For creators…" line under the hero CTA */
.for-line { display: inline-flex !important; align-items: center; gap: 12px; margin: 0 0 18px; padding: 8px 16px 8px 8px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(58,64,70,.06); font-size: 14px; line-height: 1.4; color: var(--ink-2); max-width: 520px; }
.fl-faces { display: flex; flex-shrink: 0; }
.fl-faces img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; }
.fl-faces img + img { margin-left: -9px; }
@media (max-width: 1023px) { .for-line { display: flex !important; text-align: left; border-radius: 18px; } }

#startQuiz.pulse { animation: ctaPulse 1.4s var(--ease) 2; }
@keyframes ctaPulse { 50% { box-shadow: 0 0 0 10px rgba(242,106,0,.18), 0 1px 3px rgba(58,64,70,.3); transform: scale(1.02); } }

/* Hero spacing: one consistent rhythm (label → headline → subtitle → audience → button → checks) */
.hero .eyebrow { margin-bottom: 20px; }
.hero .sub { margin: 18px 0 0; }
.hero-cta { margin-top: 28px !important; }
.hero .for-line { margin: 0 0 20px !important; }
.hero-trust { margin-top: 20px; gap: 8px 22px; }
@media (max-width: 1023px) { .hero .compare { margin-top: 26px; } }
@media (min-width: 1024px) {
  .hero-grid { row-gap: 0; }
  .hero-top { align-self: end; }
}

/* ===== Language + country picker ===== */
.loc { position: relative; }
.loc-btn { display: inline-flex; align-items: center; gap: 9px; height: 40px; padding: 0 11px 0 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font: inherit; font-size: 14px; font-weight: 700; color: var(--ink); cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.loc-btn:hover, .loc-btn[aria-expanded="true"] { border-color: #c7d9fb; box-shadow: 0 0 0 3px #e9f1fe; }
.loc-sep { width: 1px; height: 18px; background: var(--line); }
.loc-flag { font-size: 19px; line-height: 1; }
.loc-chev { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.loc-btn[aria-expanded="true"] .loc-chev { transform: rotate(180deg); }
.loc-menu { position: absolute; right: 0; top: calc(100% + 8px); z-index: 70; display: grid; grid-template-columns: 150px 250px; gap: 6px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 44px -14px rgba(31,35,40,.32); animation: fadeUp .18s var(--ease) both; }
.loc-menu[hidden] { display: none; }
.loc-col { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.loc-langs { border-right: 1px solid var(--line); padding-right: 8px; }
.loc-k { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding: 4px 10px 6px; }
.loc-l, .loc-c { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 10px; border: 0; border-radius: 10px; background: none; font: inherit; font-size: 14.5px; color: var(--ink); text-align: left; cursor: pointer; }
.loc-l:hover, .loc-c:hover { background: var(--bg-alt); }
.loc-l.on, .loc-c.on { background: #e9f1fe; font-weight: 700; }
.loc-search { margin: 0 4px 6px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: 14px; outline: 0; }
.loc-search:focus { border-color: var(--brand); }
.loc-list { max-height: 300px; overflow-y: auto; }
.loc-list hr { border: 0; border-top: 1px solid var(--line); margin: 6px 8px; }
.loc-cf { font-size: 18px; line-height: 1; }
.loc-cn { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 860px) {
  .nav-right > .loc { display: none; }
  .mnav-lang { flex-wrap: wrap; gap: 10px; }
  .mnav .loc { position: static; width: 100%; }
  .mnav .loc-btn { width: 100%; justify-content: flex-start; }
  .mnav .loc-chev { margin-left: auto; }
  .mnav .loc-menu { position: static; margin-top: 8px; grid-template-columns: 1fr; box-shadow: none; }
  .mnav .loc-langs { border-right: 0; padding-right: 0; flex-direction: row; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
  .mnav .loc-langs .loc-k { width: 100%; }
  .mnav .loc-l { width: auto; flex: 1; justify-content: center; }
  .mnav .loc-list { max-height: 240px; }
}

/* Language-only picker */
.loc-globe { width: 17px; height: 17px; fill: none; stroke: var(--ink-2); stroke-width: 1.8; }
.loc-btn { padding-left: 12px; gap: 7px; }
.loc-menu.loc-menu-lang { display: flex; flex-direction: column; gap: 2px; width: 180px; grid-template-columns: none; padding: 6px; }
.loc-menu.loc-menu-lang[hidden] { display: none; }
@media (max-width: 860px) {
  .mnav .loc-menu.loc-menu-lang { width: 100%; flex-direction: row; }
  .mnav .loc-menu-lang .loc-l { flex: 1; justify-content: center; }
}

/* ===== /app: confirmation after payment ===== */
.app-hero { padding: 56px 0 24px; text-align: center; background: radial-gradient(900px 400px at 50% -10%, rgba(27,127,63,.10), transparent 70%); }
.app-check { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: var(--g-green); display: grid; place-items: center; box-shadow: 0 0 0 10px #e7f4eb; animation: popIn .7s cubic-bezier(.2,1.6,.4,1) both; }
.app-check svg { width: 36px; height: 36px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.app-pill { background: #e7f4eb; color: var(--g-green); }
.app-hero h1 { font-size: clamp(30px, 4.6vw, 48px); margin: 6px 0 12px; }
.app-video { max-width: 720px; margin: 28px auto 0; }
.app-next { padding-top: 48px; }
.app-steps { list-style: none; margin: 28px auto 0; padding: 0; max-width: 640px; position: relative; }
.app-steps::before { content: ""; position: absolute; left: 19px; top: 24px; bottom: 24px; width: 2px; background: var(--line); }
.app-steps li { position: relative; display: flex; gap: 16px; padding: 12px 0; text-align: left; }
.app-dot { position: relative; z-index: 1; width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid var(--line); font-weight: 800; color: var(--muted); }
.app-dot svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.app-steps li.done .app-dot { background: var(--g-green); border-color: var(--g-green); }
.app-steps li.now .app-dot { border-color: var(--brand); color: var(--brand); box-shadow: 0 0 0 5px #e9f1fe; }
.app-steps small { display: block; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand); }
.app-steps li.done small { color: var(--g-green); }
.app-steps b { display: block; font-size: 17px; margin: 2px 0 4px; }
.app-steps p { margin: 0; font-size: 15px; color: var(--ink-2); }
.app-ready { max-width: 640px; margin: 28px auto 0; text-align: left; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px; }
.app-ready ul { margin: 8px 0 0; padding-left: 20px; color: var(--ink-2); font-size: 15px; display: grid; gap: 6px; }
.app-guar { max-width: 640px; margin: 16px auto 0; text-align: left; }
.app-help { max-width: 640px; margin: 28px auto 0; text-align: center; }
.app-help b { font-size: 18px; }
.app-help p { color: var(--ink-2); margin: 6px 0 14px; }
.app-help-links { display: flex; gap: 10px; justify-content: center; }

.app-page .nav-right > .btn, .app-page .mnav > .btn { display: none; }

/* ===== /contact ===== */
.ct { text-align: center; padding-top: 64px; background: radial-gradient(900px 400px at 50% -10%, rgba(31,111,235,.10), transparent 70%); }
.ct h1 { font-size: clamp(32px, 4.8vw, 50px); margin: 6px 0 12px; }
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 760px; margin: 32px auto 0; text-align: left; }
.ct-card { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 20px; background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.ct-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(31,35,40,.45); border-color: #c7d9fb; }
.ct-ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 16px; display: grid; place-items: center; color: #fff; }
.ct-ic svg { width: 26px; height: 26px; }
.c-mail .ct-ic { background: var(--brand); }
.c-wa .ct-ic { background: #25d366; }
.c-sms .ct-ic { background: linear-gradient(180deg, #5bf675, #0cbd2a); }
.c-sg .ct-ic { background: #3a76f0; }
.ct-txt { flex: 1; min-width: 0; }
.ct-txt b { display: block; font-size: 17px; }
.ct-val { display: block; font-size: 14.5px; font-weight: 600; color: var(--brand); overflow-wrap: anywhere; }
.ct-txt small { display: block; font-size: 13.5px; color: var(--ink-2); margin-top: 2px; }
.ct-arrow { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s, stroke .2s; }
.ct-card:hover .ct-arrow { transform: translateX(3px); stroke: var(--brand); }
.ct-note { margin: 24px auto 0; max-width: 560px; font-size: 14px; color: var(--muted); }
@media (max-width: 700px) { .ct-grid { grid-template-columns: 1fr; } }

.app-page .nav-right > .app-loc { display: block !important; }
.app-page .logo { cursor: default; }

/* ===== Roadmap (compact, before pricing) ===== */
.rm { padding: 64px 0 56px; background: linear-gradient(180deg, #fff, #f5fbf7); }
.rm h2 { margin-bottom: 8px; }
.rm-track { position: relative; max-width: 1040px; margin: 30px auto 0; }
.rm-line { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 120px; pointer-events: none; }
.rm-draw { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.rm.in .rm-draw { transition: stroke-dashoffset 2.2s cubic-bezier(.45,0,.2,1) .2s; stroke-dashoffset: 0; }
.rm-stops { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.rm-stop { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 6px; opacity: 0; transform: translateY(14px); }
.rm.in .rm-stop { animation: rmIn .6s cubic-bezier(.2,1.2,.4,1) both; animation-delay: calc(.35s + var(--i) * .45s); }
@keyframes rmIn { to { opacity: 1; transform: none; } }
/* gentle rising flow: each stop sits a little higher, and its picture gets a little bigger */
.rm-stop:nth-child(1) { margin-top: 44px; } .rm-stop:nth-child(2) { margin-top: 24px; }
.rm-stop:nth-child(3) { margin-top: 8px; }  .rm-stop:nth-child(4) { margin-top: -10px; }
.rm-art { display: grid; place-items: center; border-radius: 22px; background: #fff; border: 1px solid #cfe9d7; box-shadow: 0 10px 24px -16px rgba(27,127,63,.55); margin-bottom: 12px; transition: transform .3s var(--ease); }
.rm-art svg { width: 70%; height: 70%; }
.rm-stop:nth-child(1) .rm-art { width: 60px; height: 60px; }
.rm-stop:nth-child(2) .rm-art { width: 70px; height: 70px; }
.rm-stop:nth-child(3) .rm-art { width: 82px; height: 82px; }
.rm-stop:nth-child(4) .rm-art { width: 100px; height: 100px; border-color: #9fd9b1; box-shadow: 0 0 0 5px #e7f4eb, 0 14px 30px -16px rgba(27,127,63,.6); }
.rm-stop:hover .rm-art { transform: translateY(-3px) scale(1.04); }
.rm-n { font-size: 11.5px; font-weight: 800; letter-spacing: .08em; color: var(--g-green); margin-bottom: 2px; }
.rm-n::before { content: "STEP "; }
html[lang="de"] .rm-n::before { content: "SCHRITT "; }
.rm-stop b { font-size: 16.5px; line-height: 1.3; margin-bottom: 4px; }
.rm-stop p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); max-width: 230px; }
.rm-note { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 34px auto 0; max-width: 640px; font-size: 15px; color: var(--ink-2); }
.rm-note svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--g-green); stroke-width: 2; stroke-linejoin: round; }
@media (max-width: 860px) {
  .rm { padding: 52px 0 44px; }
  .rm-line { display: none; }
  .rm-stops { grid-template-columns: 1fr; gap: 0; max-width: 420px; margin: 0 auto; }
  .rm-stops::before { content: ""; position: absolute; left: 35px; top: 30px; bottom: 110px; border-left: 2.5px dotted #1b7f3f; opacity: .55; }
  .rm-stop { display: grid; grid-template-columns: 72px 1fr; column-gap: 16px; text-align: left; align-items: start; margin: 0 !important; padding: 0 0 18px; }
  .rm-art { grid-row: 1 / span 3; margin: 0; position: relative; z-index: 1; justify-self: center; }
  .rm-stop:nth-child(1) .rm-art { width: 50px; height: 50px; }
  .rm-stop:nth-child(2) .rm-art { width: 56px; height: 56px; }
  .rm-stop:nth-child(3) .rm-art { width: 63px; height: 63px; }
  .rm-stop:nth-child(4) .rm-art { width: 72px; height: 72px; }
  .rm-stop p { max-width: none; }
  .rm-note { text-align: left; justify-content: flex-start; max-width: 420px; }
}
@media (prefers-reduced-motion: reduce) { .rm-stop { opacity: 1; transform: none; } .rm-draw { stroke-dashoffset: 0; } }

/* Laptop / desktop hero: copy left, phones right */
@media (min-width: 1024px) {
  .hero { padding: 32px 0; text-align: left; }
  .hero-grid {
    max-width: 1320px; display: grid; align-items: center; column-gap: 56px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "top visual" "cta visual";
  }
  .hero-top { grid-area: top; align-self: end; }
  .hero h1 { font-size: clamp(38px, 3.7vw, 56px); }
  .sub { margin: 18px 0 24px; }
  .compare { grid-area: visual; gap: 20px; flex-wrap: nowrap; }
  .hero .gphone { zoom: .7; }
  .hero .side-tag { font-size: 15px; margin-bottom: 14px; }
  .hero-cta { grid-area: cta; align-self: start; margin-top: 28px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (min-width: 1024px) and (max-width: 1279px) { .hero .gphone { zoom: .58; } .verdict { min-width: 0; max-width: 230px; font-size: 13px; } }

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .cards, .steps { grid-template-columns: 1fr; }
  .compare { gap: 40px; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .sticky-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
    font-size: 14px; font-weight: 600; transform: translateY(100%); transition: transform .25s;
  }
  .sticky-cta.show { transform: none; }
  }
@media (max-width: 400px) {
  .gphone { height: 600px; }
  .kp-name { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
