:root {
  --brand-950: #063b34;
  --brand-900: #075044;
  --brand-800: #086453;
  --brand-700: #087f6a;
  --brand-600: #0a9479;
  --brand-500: #12ad8b;
  --brand-300: #73d9c1;
  --brand-100: #dcf7ef;
  --brand-50: #effcf8;
  --ink-950: #14221e;
  --ink-800: #273934;
  --ink-700: #40514c;
  --ink-600: #5f706b;
  --ink-500: #788883;
  --line: #dfe7e3;
  --surface: #fff;
  --surface-muted: #f5f8f7;
  --canvas: #f7faf9;
  --red: #b7404d;
  --red-soft: #fff0f1;
  --gold: #9a6700;
  --gold-soft: #fff7da;
  --blue: #2764b4;
  --blue-soft: #edf5ff;
  --violet: #6d54b5;
  --violet-soft: #f2efff;
  --shadow-sm: 0 10px 28px rgb(10 46 38 / 8%);
  --shadow-lg: 0 28px 90px rgb(6 59 52 / 16%);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  color: var(--ink-950);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; background: var(--canvas); }
button, input, select, textarea { font: inherit; }
button, a { outline-offset: 4px; }
:focus-visible { outline: 3px solid rgb(18 173 139 / 45%); }
a { color: inherit; }
svg { display: block; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 11px 15px; border-radius: 8px; color: white; background: var(--brand-900); transform: translateY(-150%); transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgb(223 231 227 / 82%); background: rgb(255 255 255 / 88%); backdrop-filter: blur(16px); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 12px 12px 12px 4px; color: white; background: linear-gradient(145deg, var(--brand-500), var(--brand-800)); box-shadow: 0 8px 18px rgb(8 127 106 / 24%); font-size: 12px; font-weight: 900; }
.brand-mark svg { width: 32px; height: 32px; }
.brand-name { font-size: 17px; font-weight: 770; letter-spacing: -.035em; }
.brand-name strong { color: var(--brand-700); }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: var(--ink-600); font-size: 14px; font-weight: 650; text-decoration: none; transition: color 150ms ease; }
.desktop-nav a:hover { color: var(--brand-700); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; cursor: pointer; font-size: 14px; font-weight: 750; line-height: 1; text-align: center; text-decoration: none; transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease; }
.button:hover { transform: translateY(-1px); }
.button-small { min-height: 42px; padding-inline: 17px; color: white; background: var(--brand-700); box-shadow: 0 8px 18px rgb(8 127 106 / 17%); }
.button-primary { color: white; background: linear-gradient(135deg, var(--brand-600), var(--brand-800)); box-shadow: 0 12px 28px rgb(8 127 106 / 24%); }
.button-primary:hover { box-shadow: 0 15px 32px rgb(8 127 106 / 30%); }
.button-primary svg { width: 19px; height: 19px; }
.button-secondary { color: var(--ink-800); border-color: var(--line); background: white; }
.button-light { color: var(--brand-900); background: white; box-shadow: 0 12px 30px rgb(0 0 0 / 16%); }
.text-link { color: var(--brand-800); font-size: 14px; font-weight: 750; text-underline-offset: 4px; }

.hero { position: relative; overflow: hidden; padding: clamp(70px, 8vw, 112px) 0 84px; background: linear-gradient(180deg, #fff 0%, var(--brand-50) 100%); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; top: -360px; left: -260px; border: 1px solid rgb(18 173 139 / 12%); border-radius: 50%; box-shadow: 0 0 0 80px rgb(18 173 139 / 3%), 0 0 0 160px rgb(18 173 139 / 2%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); align-items: center; gap: clamp(50px, 7vw, 92px); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 20px; color: var(--brand-700); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.hero h1 { max-width: 670px; margin: 0; font-size: clamp(44px, 5.2vw, 72px); font-weight: 820; line-height: 1.01; letter-spacing: -.06em; }
.hero h1 em { color: var(--brand-700); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-lead { max-width: 620px; margin: 25px 0 0; color: var(--ink-600); font-size: clamp(17px, 1.55vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 33px; }
.offer-summary { margin: 17px 0 0; color: var(--ink-600); font-size: 13px; line-height: 1.5; }
.offer-summary strong { color: var(--ink-800); }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; margin: 30px 0 0; padding: 0; color: var(--ink-600); list-style: none; font-size: 12px; font-weight: 650; }
.trust-list li { display: flex; align-items: center; gap: 6px; }
.trust-list span { width: 18px; height: 18px; display: inline-grid; place-items: center; border-radius: 50%; color: var(--brand-800); background: var(--brand-100); font-size: 10px; }

.product-stage { position: relative; min-height: 610px; display: grid; place-items: center; }
.stage-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgb(53 197 165 / 23%), rgb(53 197 165 / 2%) 65%, transparent 70%); filter: blur(3px); }
.app-window { position: relative; z-index: 2; width: min(100%, 510px); overflow: hidden; border: 1px solid rgb(255 255 255 / 80%); border-radius: 28px; background: white; box-shadow: var(--shadow-lg); transform: rotate(1.2deg); }
.app-topbar { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; color: white; background: linear-gradient(125deg, var(--brand-800), var(--brand-600)); }
.window-brand { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 750; }
.mini-mark { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px 8px 8px 3px; color: var(--brand-900); background: white; font-size: 9px; font-weight: 900; }
.avatar { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgb(255 255 255 / 35%); border-radius: 50%; background: rgb(255 255 255 / 16%); font-size: 8px; font-weight: 800; }
.app-body { padding: 24px; background: #f7f9f8; }
.app-heading { display: flex; align-items: center; justify-content: space-between; }
.app-overline { color: var(--ink-500); font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.app-heading h2 { margin: 3px 0 0; font-size: 26px; letter-spacing: -.04em; }
.status-live { display: flex; align-items: center; gap: 5px; color: var(--brand-700); font-size: 8px; font-weight: 750; }
.status-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-500); box-shadow: 0 0 0 4px rgb(18 173 139 / 12%); }
.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 21px 0; }
.metrics-row div { padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.metrics-row strong, .metrics-row span { display: block; }
.metrics-row strong { color: var(--brand-800); font-size: 18px; }
.metrics-row span { margin-top: 2px; color: var(--ink-500); font-size: 7px; }
.queue-title { display: flex; justify-content: space-between; margin: 0 2px 10px; font-size: 9px; }
.queue-title span { color: var(--brand-700); font-weight: 700; }
.lead-card { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 11px; margin-top: 8px; padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: 0 3px 10px rgb(15 35 29 / 3%); }
.lead-card-urgent { border-left: 3px solid var(--red); }
.lead-card-muted { opacity: .82; }
.lead-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: var(--red); background: var(--red-soft); font-size: 8px; font-weight: 850; }
.lead-icon-gold { color: var(--gold); background: var(--gold-soft); }
.lead-icon-blue { color: var(--blue); background: var(--blue-soft); }
.lead-title { display: flex; justify-content: space-between; gap: 10px; font-size: 9px; }
.lead-title span { color: var(--ink-500); font-size: 7px; }
.lead-main p { margin: 4px 0 7px; color: var(--ink-600); font-size: 7.5px; line-height: 1.4; }
.lead-tags { display: flex; gap: 5px; }
.tag { padding: 3px 6px; border-radius: 10px; color: var(--ink-600); background: var(--surface-muted); font-size: 6px; font-weight: 700; }
.tag-red { color: var(--red); background: var(--red-soft); }
.tag-gold { color: var(--gold); background: var(--gold-soft); }
.tag-blue { color: var(--blue); background: var(--blue-soft); }
.lead-chevron { align-self: center; color: var(--ink-500); }
.floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgb(255 255 255 / 90%); border-radius: 13px; background: rgb(255 255 255 / 94%); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.floating-note > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: white; background: var(--brand-600); font-size: 10px; font-weight: 850; }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: 9px; }
.floating-note small { margin-top: 2px; color: var(--ink-500); font-size: 7px; }
.floating-note-top { top: 74px; right: -12px; }
.floating-note-bottom { bottom: 82px; left: -42px; }

.problem-strip { border-block: 1px solid var(--line); background: white; }
.strip-grid { min-height: 88px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.strip-grid p { min-height: 36px; display: flex; align-items: center; gap: 12px; margin: 0; padding: 0 24px; border-right: 1px solid var(--line); color: var(--ink-600); font-size: 12px; font-weight: 700; }
.strip-grid p:first-child { padding-left: 0; }
.strip-grid p:last-child { border: 0; }
.strip-grid span { color: var(--brand-500); font-size: 9px; font-weight: 850; }

.section { padding: clamp(84px, 9vw, 128px) 0; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section h2 { margin: 0; font-size: clamp(36px, 4.2vw, 56px); line-height: 1.08; letter-spacing: -.052em; }
.section-heading > p:last-child { max-width: 630px; margin: 20px auto 0; color: var(--ink-600); font-size: 17px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { min-height: 300px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 4px 20px rgb(12 46 38 / 3%); }
.feature-card-large { min-height: 350px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 30px; grid-column: 1 / -1; }
.feature-card-wide { min-height: 310px; display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 38px; grid-column: 1 / -1; }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 27px; border-radius: 13px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon-green { color: var(--brand-700); background: var(--brand-100); }
.feature-icon-blue { color: var(--blue); background: var(--blue-soft); }
.feature-icon-violet { color: var(--violet); background: var(--violet-soft); }
.feature-icon-gold { color: var(--gold); background: var(--gold-soft); }
.card-kicker { margin: 0 0 10px; color: var(--brand-700); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.feature-card h3 { max-width: 480px; margin: 0; font-size: clamp(23px, 2.5vw, 32px); letter-spacing: -.04em; }
.feature-card > p, .feature-card > div > p:last-child { max-width: 520px; margin: 14px 0 0; color: var(--ink-600); font-size: 15px; line-height: 1.65; }
.mini-queue { padding: 12px; border-radius: 15px; background: var(--surface-muted); }
.mini-queue > span { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; padding: 12px 9px; border-bottom: 1px solid var(--line); font-size: 10px; }
.mini-queue > span:last-child { border: 0; }
.mini-queue small { color: var(--ink-500); font-size: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); }
.dot.red { background: var(--red); }.dot.gold { background: #dda51d; }.dot.blue { background: var(--blue); }
.pipeline-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 18px; border-radius: 17px; background: var(--surface-muted); }
.pipeline-preview div { min-height: 180px; padding: 15px 12px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.pipeline-preview span { display: block; color: var(--ink-600); font-size: 8px; font-weight: 750; }
.pipeline-preview strong { display: block; margin: 4px 0 16px; color: var(--brand-700); font-size: 18px; }
.pipeline-preview i { height: 26px; display: block; margin-top: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--brand-100) 70%, var(--surface-muted) 70%); }

.workflow-section { position: relative; overflow: hidden; color: white; background: linear-gradient(140deg, var(--brand-950), var(--brand-800)); }
.workflow-section::after { content: ""; position: absolute; width: 700px; height: 700px; right: -350px; bottom: -450px; border: 1px solid rgb(255 255 255 / 8%); border-radius: 50%; box-shadow: 0 0 0 100px rgb(255 255 255 / 2%), 0 0 0 200px rgb(255 255 255 / 1.5%); }
.workflow-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(60px, 9vw, 120px); }
.eyebrow.light { color: var(--brand-300); }
.workflow-copy > p:nth-of-type(2) { max-width: 520px; margin: 22px 0 0; color: rgb(255 255 255 / 70%); font-size: 17px; line-height: 1.65; }
.steps { display: grid; gap: 0; margin: 38px 0 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 22px 0; border-top: 1px solid rgb(255 255 255 / 12%); }
.steps li > span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgb(115 217 193 / 32%); border-radius: 50%; color: var(--brand-300); font-size: 10px; font-weight: 850; }
.steps strong { font-size: 15px; }
.steps p { margin: 6px 0 0; color: rgb(255 255 255 / 58%); font-size: 13px; line-height: 1.55; }
.workflow-card { padding: 30px; border: 1px solid rgb(255 255 255 / 68%); border-radius: 24px; color: var(--ink-950); background: white; box-shadow: 0 34px 90px rgb(0 0 0 / 26%); transform: rotate(-1deg); }
.workflow-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; font-size: 12px; font-weight: 800; }
.secure-label { padding: 6px 9px; border-radius: 20px; color: var(--brand-700); background: var(--brand-100); font-size: 8px; }
.contact-row { display: flex; align-items: center; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.contact-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--brand-800); background: var(--brand-100); font-size: 11px; font-weight: 850; }
.contact-row strong, .contact-row small { display: block; }
.contact-row small { margin-top: 3px; color: var(--ink-500); font-size: 9px; }
.summary-box { margin: 20px 0; padding: 17px; border-radius: 12px; background: var(--surface-muted); }
.summary-box span { color: var(--brand-700); font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.summary-box p { margin: 8px 0 0; color: var(--ink-700); font-size: 12px; line-height: 1.55; }
.action-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.action-row div { padding: 13px; border: 1px solid var(--line); border-radius: 10px; }
.action-row span, .action-row strong { display: block; }
.action-row span { color: var(--ink-500); font-size: 8px; }
.action-row strong { margin-top: 4px; font-size: 11px; }
.workflow-card button { width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; border: 0; border-radius: 10px; color: white; background: var(--brand-700); font-weight: 750; }
.workflow-disclaimer { display: block; margin-top: 12px; color: var(--ink-500); font-size: 8px; text-align: center; }

.security-section { background: white; }
.security-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 120px); }
.security-lead { max-width: 510px; margin: 23px 0 0; color: var(--ink-600); font-size: 17px; line-height: 1.7; }
.security-list { border-top: 1px solid var(--line); }
.security-list article { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.security-list article > span { color: var(--brand-500); font-size: 10px; font-weight: 850; }
.security-list h3 { margin: 0; font-size: 18px; letter-spacing: -.025em; }
.security-list p { margin: 7px 0 0; color: var(--ink-600); font-size: 14px; line-height: 1.6; }

.offer-section { padding-block: 86px; }
.offer-card { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; overflow: hidden; padding: clamp(38px, 6vw, 78px); border-radius: var(--radius-lg); color: white; background: linear-gradient(140deg, #087f6a, #063b34); box-shadow: var(--shadow-lg); }
.offer-card::before { content: ""; position: absolute; width: 500px; height: 500px; top: -330px; right: 20%; border: 1px solid rgb(255 255 255 / 10%); border-radius: 50%; box-shadow: 0 0 0 80px rgb(255 255 255 / 3%); }
.offer-copy, .price-panel { position: relative; z-index: 1; }
.offer-copy > p:nth-of-type(2) { max-width: 610px; margin: 22px 0 0; color: rgb(255 255 255 / 70%); font-size: 16px; line-height: 1.65; }
.offer-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; margin: 30px 0 0; padding: 0; list-style: none; color: rgb(255 255 255 / 82%); font-size: 13px; }
.offer-copy li { display: flex; align-items: center; gap: 8px; }
.offer-copy li span { color: var(--brand-300); }
.price-panel { padding: 30px; border: 1px solid rgb(255 255 255 / 18%); border-radius: 18px; background: rgb(255 255 255 / 10%); backdrop-filter: blur(8px); }
.price-panel > span { color: var(--brand-300); font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.price { display: flex; align-items: baseline; margin: 14px 0 8px; }
.price small { align-self: flex-start; margin-top: 7px; font-size: 14px; font-weight: 750; }
.price strong { margin-left: 6px; font-size: clamp(42px, 4.3vw, 58px); letter-spacing: -.055em; }
.price em { margin-left: 5px; color: rgb(255 255 255 / 60%); font-size: 11px; font-style: normal; }
.price-panel > p { margin: 0 0 22px; color: rgb(255 255 255 / 68%); font-size: 12px; line-height: 1.55; }
.price-panel .button { width: 100%; }
.price-panel > small { display: block; margin-top: 12px; color: rgb(255 255 255 / 48%); font-size: 8px; line-height: 1.45; text-align: center; }

.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(60px, 9vw, 130px); }
.faq-grid > div:first-child > p:last-child { color: var(--ink-600); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 16px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--brand-700); background: var(--brand-50); font-size: 18px; font-weight: 400; transition: transform 150ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -5px 45px 25px 0; color: var(--ink-600); font-size: 14px; line-height: 1.65; }

.site-footer { padding: 64px 0 24px; color: rgb(255 255 255 / 62%); background: #10211d; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 45px; }
.brand-footer { color: white; }
.brand-footer .brand-mark { width: 34px; height: 34px; }
.footer-grid > div:first-child p { max-width: 270px; margin: 18px 0 0; font-size: 13px; line-height: 1.6; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid strong { margin-bottom: 5px; color: white; font-size: 12px; }
.footer-grid a, .footer-button { padding: 0; border: 0; color: inherit; background: none; cursor: pointer; font-size: 12px; text-align: left; text-decoration: none; }
.footer-grid a:hover, .footer-button:hover { color: white; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / 10%); font-size: 10px; }

.consent { position: fixed; z-index: 500; right: 20px; bottom: 20px; left: 20px; max-width: 1120px; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-inline: auto; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgb(255 255 255 / 97%); box-shadow: 0 20px 70px rgb(6 39 32 / 25%); backdrop-filter: blur(12px); }
.consent > div:first-child { display: flex; align-items: flex-start; gap: 13px; }
.consent-icon { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: var(--brand-700); background: var(--brand-100); }
.consent strong { font-size: 13px; }
.consent p { max-width: 660px; margin: 5px 0 0; color: var(--ink-600); font-size: 11px; line-height: 1.55; }
.consent p a { color: var(--brand-700); font-weight: 700; }
.consent-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.consent .button { min-height: 42px; padding-inline: 15px; font-size: 11px; }
.mobile-offer { display: none; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .product-stage { width: min(100%, 700px); margin-inline: auto; }
  .feature-card-large, .feature-card-wide { grid-template-columns: 1fr 1fr; }
  .workflow-grid, .security-grid, .faq-grid { gap: 60px; }
  .offer-card { gap: 40px; }
  .footer-grid { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 64px; }
  .header-inner > .button { display: none; }
  .brand-name { font-size: 15px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { padding: 56px 0 62px; }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { text-align: center; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-stage { min-height: 500px; margin-top: 20px; }
  .app-window { border-radius: 21px; transform: none; }
  .app-body { padding: 16px; }
  .floating-note-top { top: 28px; right: -5px; }
  .floating-note-bottom { bottom: 28px; left: -6px; }
  .strip-grid { grid-template-columns: 1fr 1fr; padding: 15px 0; }
  .strip-grid p, .strip-grid p:first-child { min-height: 52px; padding: 0 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-grid p:nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section h2 { font-size: clamp(34px, 10vw, 46px); }
  .section-heading { margin-bottom: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-large, .feature-card-wide { min-height: 0; grid-column: auto; grid-template-columns: 1fr; padding: 26px; }
  .pipeline-preview { overflow-x: auto; }
  .pipeline-preview div { min-width: 110px; }
  .workflow-grid, .security-grid, .offer-card, .faq-grid { grid-template-columns: 1fr; }
  .workflow-card { padding: 22px; transform: none; }
  .security-grid, .faq-grid { gap: 45px; }
  .offer-section { padding-block: 56px; }
  .offer-card { width: min(calc(100% - 20px), var(--container)); gap: 38px; padding: 32px 22px; border-radius: 22px; }
  .offer-copy ul { grid-template-columns: 1fr; }
  .price-panel { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; padding-bottom: 76px; }
  .consent { right: 10px; bottom: 10px; left: 10px; align-items: stretch; flex-direction: column; gap: 16px; padding: 17px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-offer { position: fixed; z-index: 200; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgb(255 255 255 / 96%); box-shadow: 0 -10px 30px rgb(8 49 41 / 10%); backdrop-filter: blur(12px); }
  .mobile-offer div strong, .mobile-offer div span { display: block; }
  .mobile-offer div strong { font-size: 12px; }
  .mobile-offer div span { margin-top: 2px; color: var(--ink-500); font-size: 9px; }
  .mobile-offer .button { min-height: 40px; padding-inline: 17px; font-size: 11px; }
  .consent:not([hidden]) ~ .mobile-offer { display: none; }
}

@media (max-width: 440px) {
  .metrics-row div { padding: 9px; }
  .floating-note { display: none; }
  .product-stage { min-height: 455px; }
  .trust-list { grid-template-columns: 1fr; }
  .action-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .consent-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Legal and checkout state pages */
.simple-header { border-bottom: 1px solid var(--line); background: white; }
.simple-header .header-inner { min-height: 72px; }
.simple-header .text-link { color: var(--ink-600); text-decoration: none; }
.legal-main { min-height: 65vh; padding: 76px 0 110px; background: white; }
.legal-shell { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.legal-shell > .eyebrow { margin-bottom: 16px; }
.legal-shell h1 { margin: 0; font-size: clamp(38px, 6vw, 62px); line-height: 1.03; letter-spacing: -.055em; }
.legal-intro { margin: 22px 0 46px; color: var(--ink-600); font-size: 17px; line-height: 1.7; }
.legal-date { display: block; margin-top: 12px; color: var(--ink-500); font-size: 11px; }
.legal-content { color: var(--ink-700); font-size: 15px; line-height: 1.75; }
.legal-content section { padding: 29px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 13px; color: var(--ink-950); font-size: 22px; letter-spacing: -.03em; }
.legal-content h3 { margin: 23px 0 8px; color: var(--ink-950); font-size: 16px; }
.legal-content p { margin: 10px 0; }
.legal-content ul { margin: 12px 0; padding-left: 22px; }
.legal-content li { margin: 7px 0; }
.legal-content a { color: var(--brand-700); font-weight: 700; }
.cookie-table { width: 100%; margin: 18px 0; border-collapse: collapse; font-size: 13px; }
.cookie-table th, .cookie-table td { padding: 13px 11px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.cookie-table th { color: var(--ink-950); background: var(--surface-muted); }
.state-main { min-height: 72vh; display: grid; place-items: center; padding: 70px 20px; background: linear-gradient(180deg, white, var(--brand-50)); }
.state-card { width: min(100%, 620px); padding: clamp(30px, 6vw, 56px); border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow-lg); text-align: center; }
.state-icon { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 20px; color: var(--brand-800); background: var(--brand-100); font-size: 28px; font-weight: 850; }
.state-icon.warning { color: var(--gold); background: var(--gold-soft); }
.state-card h1 { margin: 0; font-size: clamp(31px, 6vw, 46px); line-height: 1.08; letter-spacing: -.05em; }
.state-card > p { margin: 18px auto 0; color: var(--ink-600); line-height: 1.65; }
.state-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.redemption { margin-top: 24px; padding: 17px; border-radius: 13px; background: var(--surface-muted); }
.redemption p { margin: 0 0 12px; color: var(--ink-600); font-size: 12px; line-height: 1.55; }

@media (max-width: 620px) {
  .simple-header .text-link { font-size: 12px; }
  .legal-main { padding-top: 55px; }
  .cookie-table { display: block; overflow-x: auto; white-space: nowrap; }
  .state-actions { align-items: stretch; flex-direction: column; }
}
