@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 200 1000;
    font-display: swap;
}

:root {
    color-scheme: light;
    --red: #d22227;
    --red-dark: #b8161b;
    --red-soft: #fff0f0;
    --ink: #241b19;
    --muted: rgb(107, 94, 91);
    --soft: #fbf7f4;
    --border: #eadfda;
    --white: #fff;
    --footer: #1f1514;
    --radius: 1.125rem;
    --container: 87.5rem;
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color: var(--ink);
    background: var(--white);
    scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 4.75rem; }
body { margin: 0; overflow-x: hidden; background: var(--white); color: var(--ink); }
body.is-analyzing { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 0.0625rem; height: 0.0625rem; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; white-space: nowrap; }
.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }

h1, h2, h3, .brand, .price, summary {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: -.035em;
}

h1, h2, h3, p { margin-top: 0; }
h2 em { color: var(--red); font-style: normal; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 4.5rem;
    border-bottom: 0.0625rem solid #f1e9e6;
    background: rgba(255, 255, 255, .96);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.625rem; text-decoration: none; font-size: 1.125rem; letter-spacing: -.045em; }
.brand-logo { display: block; width: auto; object-fit: contain; }
.brand-logo-header { height: 2.75rem; }
.brand-logo-footer { height: 3.25rem; }
.brand-mark { display: inline-grid; width: 2.125rem; height: 2.125rem; place-items: center; border-radius: 0.625rem; color: #fff; background: var(--red); font-size: 1.0625rem; }
.main-nav { display: flex; gap: 1.875rem; align-items: center; }
.main-nav a { color: #6e625f; font-size: 0.9375rem; font-weight: 700; text-decoration: none; }
.main-nav a:hover { color: var(--red); }

.hero { position: relative; padding: 8rem 0 8.4375rem; overflow: hidden; background: #fff; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero h1 { max-width: 58.75rem; margin-bottom: 1.5rem; font-size: clamp(2.75rem, 5vw, 4.25rem); line-height: .98; letter-spacing: -.065em; }
.hero-lead { margin-bottom: 1.875rem; color: var(--muted); font-size: 1.125rem; line-height: 1.65; }
.surface-card { border: 0.0625rem solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: 0 1.125rem 2.8125rem rgba(77, 39, 32, .08); }
.test-form { width: min(53.75rem, 100%); padding: 1.75rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.test-form label, .contact-form label { display: grid; gap: 0.4375rem; color: #382d2b; font-size: 0.75rem; font-weight: 800; }
.test-form label { font-size: 1.0625rem; }
.test-form .field-help { color: var(--muted); font-size: 0.8125rem; font-weight: 400; line-height: 1.4; }
.test-form input, .contact-form input, .contact-form textarea {
    width: 100%;
    min-width: 0;
    height: 3.25rem;
    padding: 0 0.9375rem;
    border: 0.0625rem solid #eadbd7;
    border-radius: 0.6875rem;
    outline: 0;
    background: #fffdfc;
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 400;
}
.test-form input:focus, .contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 0.1875rem rgba(210, 34, 39, .1); }
.test-form > label { margin-top: 0.8125rem; }
.button { display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; gap: 0.5625rem; padding: 0 1.375rem; border: 0.125rem solid transparent; border-radius: 0.6875rem; cursor: pointer; font-family: "Nunito", Arial, Helvetica, sans-serif; font-size: 1rem; font-weight: 900; letter-spacing: -.02em; text-decoration: none; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-0.0625rem); }
.button-primary { color: #fff; background: var(--red); border-color: var(--red); box-shadow: 0 0.625rem 1.375rem rgba(210, 34, 39, .18); }
.button-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button-outline { color: var(--red); background: #fff; border-color: var(--red); }
.button-wide { width: 100%; margin-top: 0.9375rem; }
.button:disabled { opacity: .58; cursor: wait; transform: none; }
.form-note { display: block; margin-top: 0.75rem; color: var(--muted); text-align: center; font-size: 0.875rem; font-weight: 700; }
.form-feedback { min-height: 0; color: var(--red); text-align: center; font-size: 0.75rem; }
.form-feedback:not(:empty) { margin-top: 0.5rem; }
.form-feedback.is-success { color: #237a44; }
.form-feedback.is-error { color: var(--red); }

.test-results-slot { width: 100%; scroll-margin-top: 5.5rem; }
.geo-loader-overlay { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 1.5rem; background: rgba(255, 255, 255, .9); backdrop-filter: blur(0.25rem); }
.geo-loader { width: min(34rem, 100%); text-align: center; }
.geo-loader img { width: 6.5rem; height: auto; aspect-ratio: 1; margin: 0 auto 1rem; object-fit: contain; animation: ghost-loader 1.5s ease-in-out infinite; }
.geo-loader strong { display: block; min-height: 2.5rem; color: #8f8b89; font-family: "Montserrat", Arial, Helvetica, sans-serif; font-size: clamp(1.375rem, 4vw, 2rem); font-weight: 900; line-height: 1.2; }
.geo-loader p { margin: 0.375rem 0 1rem; color: var(--muted); font-size: 1rem; font-weight: 800; }
.geo-loader-track { display: block; width: min(24rem, 100%); height: 0.625rem; margin-inline: auto; overflow: hidden; border-radius: 99rem; background: #f1e9e6; }
.geo-loader-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #d22227 0%, #ff6a6f 45%, #d22227 100%); background-size: 200% 100%; animation: loader-flow 1.1s linear infinite; transition: width .35s ease; }
.geo-loader-overlay.is-progress-1 .geo-loader-track i { width: 16.6667%; }
.geo-loader-overlay.is-progress-2 .geo-loader-track i { width: 33.3333%; }
.geo-loader-overlay.is-progress-3 .geo-loader-track i { width: 50%; }
.geo-loader-overlay.is-progress-4 .geo-loader-track i { width: 66.6667%; }
.geo-loader-overlay.is-progress-5 .geo-loader-track i { width: 83.3333%; }
.geo-loader-overlay.is-progress-6 .geo-loader-track i { width: 100%; }
.geo-results { width: 100%; margin-top: 2.5rem; text-align: left; }
.geo-score-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border: 0.0625rem solid var(--border);
    border-radius: 1rem;
    background: #fdf9f7;
}
.geo-gauge-grid { display: grid; grid-template-columns: repeat(2, minmax(13.75rem, 1fr)); gap: 1rem; }
.geo-gauge { display: grid; place-items: center; padding: 1.125rem 1rem 0.75rem; border: 0.0625rem solid #eee5e1; border-radius: 0.875rem; background: #fff; text-align: center; }
.geo-gauge > strong { min-height: 2.625rem; font-size: 0.9375rem; line-height: 1.35; }
.geo-gauge-heading { position: relative; display: flex; min-height: 2.625rem; align-items: flex-start; justify-content: center; gap: 0.4375rem; font-size: 0.9375rem; line-height: 1.35; }
.geo-gauge-heading > strong { font-weight: 900; }
.geo-score-tooltip { position: relative; flex: 0 0 auto; }
.geo-score-tooltip button { display: grid; width: 1.125rem; height: 1.125rem; padding: 0; place-items: center; border: 0.0625rem solid #c8bbb6; border-radius: 50%; color: var(--muted); background: #fff; cursor: help; font-family: "Nunito", Arial, sans-serif; font-size: 0.6875rem; font-weight: 900; line-height: 1; }
.geo-score-tooltip [role="tooltip"] { position: absolute; z-index: 5; bottom: calc(100% + 0.625rem); left: 50%; width: 18rem; padding: 0.75rem 0.875rem; border-radius: 0.625rem; visibility: hidden; color: #fff; background: #241b19; box-shadow: 0 0.75rem 1.75rem rgba(36, 27, 25, .2); font-size: 0.75rem; font-weight: 700; line-height: 1.45; opacity: 0; pointer-events: none; text-align: left; transform: translate(-50%, 0.25rem); transition: opacity .16s ease, transform .16s ease, visibility .16s; }
.geo-score-tooltip [role="tooltip"]::after { position: absolute; top: 100%; left: 50%; width: 0; height: 0; border: 0.375rem solid transparent; border-top-color: #241b19; content: ""; transform: translateX(-50%); }
.geo-score-tooltip:hover [role="tooltip"], .geo-score-tooltip:focus-within [role="tooltip"] { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.geo-gauge-visual { position: relative; width: min(13.75rem, 100%); }
.geo-gauge-visual svg { width: 100%; }
.geo-gauge-track, .geo-gauge-value { fill: none; stroke-width: 22; }
.geo-gauge-track { stroke: #e8e8e8; }
.geo-gauge-value { stroke: var(--gauge-color); }
.geo-gauge.is-low { --gauge-color: #dc2635; }
.geo-gauge.is-medium { --gauge-color: #e78a18; }
.geo-gauge.is-high { --gauge-color: #20a354; }
.geo-gauge-visual > span { position: absolute; inset: auto 0 0.3125rem; display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; line-height: 1; }
.geo-gauge-visual b { font-family: "Montserrat", Arial, Helvetica, sans-serif; font-size: 2rem; font-weight: 900; }
.geo-gauge-visual small { color: var(--muted); font-size: 0.875rem; font-weight: 800; }
.geo-score-actions { display: grid; gap: 0.75rem; min-width: 14rem; }
.geo-score-actions .button { width: 100%; }
.geo-score-actions .button svg { width: 1.125rem; height: 1.125rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; }
.geo-score-cta { flex: 0 0 auto; }
.geo-share-panel { display: grid; grid-column: 1 / -1; grid-template-columns: minmax(12rem, 1fr) auto auto; align-items: end; gap: 0.75rem; padding: 1rem; border: 0.0625rem solid #eadcd7; border-radius: 0.75rem; background: #fff; }
.geo-share-panel[hidden] { display: none; }
.geo-share-panel.has-error input, .geo-share-panel.has-error .button { display: none; }
.geo-share-panel p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 0.875rem; }
.geo-share-panel p strong, .geo-share-panel p span { display: block; }
.geo-share-panel p strong { margin-bottom: 0.125rem; color: var(--ink); font-size: 1rem; }
.geo-share-panel input { min-width: 0; height: 3rem; padding: 0 0.875rem; border: 0.0625rem solid var(--border); border-radius: 0.6875rem; color: var(--ink); background: #fffdfc; font: 700 0.875rem "Nunito", Arial, sans-serif; }
.geo-share-feedback { grid-column: 1 / -1; min-height: 1.25rem; color: var(--muted); font-size: 0.8125rem; font-weight: 800; }
.geo-share-feedback.is-success { color: #237a44; }
.geo-share-feedback.is-error { color: var(--red); }
.geo-results-warning { margin: 0.75rem 0 0; padding: 0.875rem 1rem; border-left: 0.5rem solid #dc2635; border-radius: 0 0.25rem 0.25rem 0; color: #c51f2e; background: #fde8eb; font-size: 0.875rem; font-weight: 800; }
.geo-result-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.geo-result-card {
    --provider-color: #fff;
    --provider-bg: #000;
    --provider-foreground: #fff;
    min-height: 17rem;
    padding: 1.25rem;
    border: 0.0625rem solid transparent;
    border-radius: 1rem;
    background: var(--provider-bg);
    color: var(--provider-foreground);
    box-shadow: 0 0.75rem 1.625rem rgba(65, 35, 28, .09);
}
.geo-result-card.provider-openai { --provider-bg: #000; }
.geo-result-card.provider-google { --provider-bg: #127bf5; }
.geo-result-card.provider-anthropic { --provider-bg: #d17353; }
.geo-result-card.provider-perplexity { --provider-bg: #267c85; }
.geo-result-card.provider-mistral { --provider-bg: #f77d04; }
.geo-result-card.provider-xai { --provider-bg: #000; }
.geo-result-card-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.geo-result-card h3 { display: flex; align-items: center; gap: 0.625rem; margin: 0; font-size: 1.0625rem; letter-spacing: -.025em; }
.provider-dot { width: 0.6875rem; height: 0.6875rem; flex: 0 0 auto; border-radius: 50%; background: var(--provider-color); opacity: .85; }
.geo-status-badge { --badge-color: #12a854; display: inline-flex; flex: 0 0 auto; align-items: center; gap: 0.3125rem; padding: 0.3125rem 0.625rem; border: 0; border-radius: 99rem; color: #fff; background: var(--badge-color); font-size: 0.75rem; font-weight: 900; line-height: 1; }
.geo-status-badge i { display: grid; width: 0.875rem; height: 0.875rem; place-items: center; border-radius: 50%; color: #fff; background: rgba(255, 255, 255, .2); font-size: 0.625rem; font-style: normal; line-height: 1; }
.geo-status-badge.is-cited { --badge-color: #12a854; }
.geo-status-badge.is-not-cited, .geo-status-badge.is-error { --badge-color: #ef3340; }
.geo-result-position { margin: 0.875rem 0 0; font-size: 0.875rem; font-weight: 900; }
.geo-result-card blockquote { margin: 0.75rem 0 0; padding: 0.75rem; border: 0; border-radius: 0.6875rem; color: inherit; background: rgba(255, 255, 255, .18); font-size: 0.8125rem; font-style: italic; line-height: 1.5; }
.geo-ranking { display: grid; gap: 0.1875rem; margin: 0.875rem 0 0; padding-left: 2rem; font-size: 0.8125rem; font-weight: 700; }
.geo-ranking li { min-height: 1.625rem; padding: 0.1875rem 0.4375rem; border-radius: 0.3125rem; line-height: 1.45; }
.geo-ranking li::marker { color: currentColor; font-weight: 900; }
.geo-ranking li.is-brand { background: rgba(255, 255, 255, .25); font-weight: 900; }
.geo-provider-unavailable { margin: 1rem 0 0; color: #fff; font-size: 0.875rem; font-style: italic; font-weight: 700; line-height: 1.5; }
.geo-no-competitor { margin: 0.875rem 0 0; color: inherit; font-size: 0.75rem; opacity: .76; }
.geo-competitor-summary { margin-top: 1rem; padding: 1.5rem; border: 0.0625rem solid var(--border); border-radius: 1rem; background: #fff; }
.geo-competitor-summary h3 { margin: 0 0 1rem; font-size: 1.125rem; letter-spacing: -.025em; }
.geo-competitor-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.geo-competitor-pill { display: inline-flex; min-height: 2.75rem; align-items: center; gap: 0.625rem; padding: 0.625rem 1rem; border: 0.0625rem solid #e8e3e1; border-radius: 99rem; color: var(--ink); background: #f5f4f4; font-size: 0.875rem; line-height: 1.2; }
.geo-competitor-pill strong { font-weight: 900; }
.geo-competitor-pill span { padding-left: 0.625rem; border-left: 0.0625rem solid #d9d1ce; color: var(--muted); font-size: 0.75rem; font-weight: 800; white-space: nowrap; }
.geo-no-aggregate { margin: 0; color: var(--muted); font-size: 0.875rem; }

.media-placeholder { display: grid; place-items: center; align-content: center; gap: 0.5625rem; border: 0.0625rem dashed #cfc6c2; background: #f6f6f6; color: #77706e; font-size: 0.75rem; }
.placeholder-icon { width: 1.5rem; height: 1.5rem; fill: none; stroke: #99928f; stroke-width: 1.8; }
.ai-float { --float-x: 0.3125rem; --float-y: -1.125rem; --float-rotate: 3deg; position: absolute; z-index: 1; display: grid; width: 3.375rem; height: 3.375rem; place-items: center; border: 0.0625rem solid #eee4df; border-radius: 0.875rem; background: #fff; box-shadow: 0 0.9375rem 1.875rem rgba(48, 25, 21, .1); animation: float-ai-icon 4.6s ease-in-out infinite; will-change: transform; }
.ai-float img { width: 1.75rem; height: 1.75rem; object-fit: contain; }
.ai-float-openai { top: 9.375rem; left: max(1.375rem, calc(50% - 38.125rem)); animation-duration: 4.8s; animation-delay: -1.1s; }
.ai-float-claude { --float-x: 0.4375rem; --float-y: -1.5rem; --float-rotate: -4deg; top: 20.3125rem; left: max(1.375rem, calc(50% - 40rem)); animation-duration: 5.2s; animation-delay: -3.4s; }
.ai-float-mistral { --float-x: -0.375rem; --float-y: -1.125rem; --float-rotate: 3deg; top: 31.25rem; left: max(1.375rem, calc(50% - 37.5rem)); animation-duration: 4.2s; animation-delay: -2.2s; }
.ai-float-gemini { --float-x: -0.4375rem; --float-y: -1.375rem; --float-rotate: -3.5deg; top: 8.125rem; right: max(1.375rem, calc(50% - 38.125rem)); animation-duration: 4.9s; animation-delay: -.6s; }
.ai-float-perplexity { --float-x: 0.375rem; --float-y: -1.25rem; --float-rotate: 4deg; top: 20.3125rem; right: max(1.375rem, calc(50% - 40rem)); animation-duration: 4.5s; animation-delay: -4.1s; }
.ai-float-grok { --float-x: -0.3125rem; --float-y: -1.625rem; --float-rotate: -3deg; top: 30.625rem; right: max(1.375rem, calc(50% - 37.5rem)); animation-duration: 5.3s; animation-delay: -2.8s; }

@keyframes float-ai-icon {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
    50% { transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--float-rotate)) scale(1.05); }
}

@keyframes ghost-loader {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-0.625rem) rotate(2deg); }
}

@keyframes loader-flow {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

.section-white { background: #fff; }
.section-soft { background: var(--soft); }
.problem-section { padding: 6.875rem 0; }
.split-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 6.875rem; align-items: center; }
.split-copy h2 { margin-bottom: 1.4375rem; font-size: 2.5rem; line-height: 1.04; letter-spacing: -.055em; }
.problem-section .split-copy h2 { font-size: 2.5rem; }
.problem-section .split-copy h2 span { display: inline-block; white-space: nowrap; }
.split-copy p { max-width: 33.125rem; margin-bottom: 0; color: var(--muted); font-size: 1.0625rem; line-height: 1.75; }
.assistant-window { overflow: hidden; min-height: 20rem; border: 0.0625rem solid #ebdfdb; border-radius: 1.0625rem; background: #fff; box-shadow: 0 1.375rem 2.8125rem rgba(55, 32, 27, .08); }
.window-bar { display: flex; height: 2.625rem; align-items: center; gap: 0.4375rem; padding: 0 1.0625rem; border-bottom: 0.0625rem solid #eee5e2; color: #988d89; font-size: 0.6875rem; }
.window-bar span { width: 0.5625rem; height: 0.5625rem; border-radius: 50%; background: #f3dcda; }
.window-bar strong { margin-left: 0.375rem; }
.chat-body { display: flex; flex-direction: column; padding: 1.375rem; font-size: 0.8125rem; }
.chat-prompt { align-self: flex-end; margin-bottom: 1rem; padding: 0.6875rem 1rem; border-radius: 0.75rem 0.75rem 0.1875rem 0.75rem; color: #fff; background: var(--red); }
.chat-answer { align-self: flex-start; max-width: 72%; padding: 0.9375rem; border-radius: 0.75rem; background: #fbf5f2; line-height: 1.55; }
.chat-alert { margin: 0.875rem 0 0; padding: 0.6875rem 0.875rem; border: 0.0625rem solid #f0c7c7; border-radius: 0.5625rem; color: var(--red); background: #fff0f0; font-weight: 800; }
.chat-alert span { display: inline-block; width: 0.4375rem; height: 0.4375rem; margin-right: 0.4375rem; border-radius: 50%; background: var(--red); }

.stats-section { padding: 7.5rem 0 4.375rem; }
.metrics-section { padding: 5.9375rem 0 8.125rem; }
.section-title { margin-bottom: 3.125rem; text-align: center; font-size: 2.5rem; line-height: 1.08; letter-spacing: -.055em; }
.section-subtitle { margin: -2rem auto 3.25rem; color: var(--muted); text-align: center; font-size: 1.0625rem; line-height: 1.6; }
.card-grid { display: grid; gap: 1.25rem; }
.card-grid-three { grid-template-columns: repeat(3, 1fr); }
.card-grid-four { grid-template-columns: repeat(4, 1fr); }
.info-card { position: relative; min-height: 12.8125rem; padding: 1.625rem; border: 0.0625rem solid var(--border); border-radius: 1.0625rem; background: #fff; box-shadow: 0 0.8125rem 1.75rem rgba(65, 35, 28, .035); }
.card-icon { display: grid; width: 2.75rem; height: 2.75rem; margin-bottom: 1.125rem; place-items: center; border-radius: 0.75rem; background: var(--red-soft); color: var(--red); }
.card-icon svg { width: 1.4375rem; height: 1.4375rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 1.1875rem; right: 1.5rem; color: #f5d9d8; font-family: "Montserrat", Arial, sans-serif; font-size: 2.0625rem; font-weight: 900; }
.info-card h3 { margin-bottom: 0.625rem; font-size: 1.25rem; line-height: 1.1; }
.info-card p { margin-bottom: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.stat-card { min-height: 14.375rem; }
.stat-card strong { display: block; margin: 0.25rem 0 0.9375rem; font-family: "Montserrat", Arial, sans-serif; font-size: 3.25rem; font-weight: 900; line-height: 1; letter-spacing: -.055em; }
.stat-card strong small { margin-left: .18em; font-size: .48em; }

.competitors-section { padding: 7.5rem 0 8.4375rem; text-align: center; }
.centered-section h2 { margin-bottom: 0.875rem; font-size: 2.5rem; letter-spacing: -.055em; }
.centered-section h2 em { color: var(--red); font-style: normal; }
.centered-section > p { margin-bottom: 2.625rem; color: var(--muted); font-size: 1.0625rem; line-height: 1.65; }
.competitors-placeholder { width: min(57.5rem, 100%); height: 30rem; margin-inline: auto; }

.pricing-section { padding: 7.1875rem 0 7.8125rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.375rem; align-items: stretch; }
.pricing-card { position: relative; display: flex; min-height: 27.8125rem; flex-direction: column; padding: 1.875rem; border: 0.0625rem solid var(--border); border-radius: 1.125rem; background: #fff; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.pricing-featured { border: 0.125rem solid var(--red); box-shadow: 0 1.25rem 2.375rem rgba(122, 47, 37, .08); }
.pricing-icon { margin-bottom: 1.25rem; }
.recommended { position: absolute; top: -0.9375rem; left: 50%; padding: 0.4375rem 1.25rem; transform: translateX(-50%); border-radius: 62.4375rem; color: #fff; background: var(--red); font-size: 0.6875rem; font-weight: 900; text-transform: uppercase; }
.pricing-card h3 { margin-bottom: 1.125rem; font-size: 1.4375rem; }
.pricing-card ul { margin: 0 0 1.5rem; padding: 0; list-style: none; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.pricing-card li { position: relative; margin-bottom: 0.625rem; padding-left: 1.1875rem; }
.pricing-card li::before { position: absolute; left: 0; color: var(--red); content: "✓"; font-weight: 900; }
.price { display: block; margin-top: auto; margin-bottom: 1.125rem; font-size: 1rem; }
.pricing-card .button { width: 100%; }

.agency-section { padding: 7.5rem 0 9.0625rem; }
.agency-layout { gap: 4.0625rem; }
.agency-visual { display: grid; min-height: 22.5rem; padding: 3.4375rem; place-items: center; border-radius: 1.375rem; background-color: #fff0ef; background-image: radial-gradient(#efc9c5 0.0625rem, transparent 0.0625rem); background-size: 1rem 1rem; }
.agency-stat-card { width: 100%; padding: 2.25rem 2.625rem; border-radius: 1.0625rem; background: #fff; box-shadow: 0 1.25rem 2.5rem rgba(64, 33, 28, .1); }
.agency-stat-card > div:first-child { display: flex; align-items: center; gap: 1.125rem; }
.agency-stat-card strong { display: grid; min-width: 4.75rem; min-height: 4.75rem; flex: 0 0 auto; place-items: center; padding: 0.75rem; border-radius: 1rem; color: #fff; background: var(--red); font-size: 1.5rem; font-weight: 900; }
.agency-stat-card span { display: grid; gap: 0.1875rem; }
.agency-stat-card b { font-family: "Montserrat", Arial, sans-serif; font-size: 1.125rem; }
.agency-stat-card small { color: var(--muted); }
.agency-stat-card hr { margin: 1.75rem 0; border: 0; border-top: 0.0625rem solid #ece4e1; }
.avatar-row { display: flex; align-items: center; }
.avatar-row img, .avatar-more { display: grid; width: 2.375rem; height: 2.375rem; margin-left: -0.4375rem; flex: 0 0 auto; place-items: center; border: 0.125rem solid #fff; border-radius: 50%; object-fit: cover; }
.avatar-row img:first-child { margin-left: 0; }
.avatar-more { color: #675653; background: #efe4df; font-size: 0.5625rem; font-weight: 900; }
.agency-copy h2 em { color: var(--red); font-style: normal; }
.check-list { margin: 1.5rem 0 0; padding: 0; list-style: none; font-weight: 800; font-size: 0.875rem; }
.check-list li { position: relative; margin-bottom: 0.75rem; padding-left: 2rem; }
.check-list li::before { position: absolute; left: 0; display: grid; width: 1.3125rem; height: 1.3125rem; place-items: center; border-radius: 50%; color: var(--red); background: var(--red-soft); content: "✓"; }

.faq-section { padding: 6.5625rem 0 9.0625rem; }
.faq-container { max-width: 80rem; }
.faq-container .section-title { margin-bottom: 2.8125rem; }
.faq-list { display: grid; gap: 0.8125rem; }
.faq-list details { overflow: hidden; border: 0.0625rem solid var(--border); border-radius: 0.875rem; background: #fff; }
.faq-list summary { position: relative; padding: 1.25rem 3.625rem 1.25rem 1.5rem; cursor: pointer; list-style: none; font-family: "Nunito", Arial, Helvetica, sans-serif; font-size: 1.0625rem; font-weight: 800; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 1.5rem; color: var(--red); transform: translateY(-50%); content: "+"; font-family: "Montserrat", Arial, sans-serif; font-size: 1.375rem; font-weight: 700; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 1.5rem 1.25rem; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }

.contact-section { padding: 6.5625rem 0 7.1875rem; }
.contact-container { max-width: 47.5rem; }
.contact-container .section-title { margin-bottom: 2.625rem; }
.contact-form { padding: 1.6875rem; }
.contact-form .form-row { align-items: start; }
.contact-form .form-row + .form-row { margin-top: 0.9375rem; }
.contact-form > label { margin-top: 0.9375rem; }
.contact-form textarea { height: 7.5rem; padding-top: 0.875rem; resize: vertical; }
.contact-form .field-control { position: relative; display: block; }
.contact-form .field-control input, .contact-form .field-control textarea { padding-right: 2.875rem; transition: border-color .18s ease, box-shadow .18s ease; }
.contact-form .field-validation-icon { position: absolute; top: 50%; right: 0.9375rem; display: grid; width: 1.25rem; height: 1.25rem; place-items: center; transform: translateY(-50%); border-radius: 50%; opacity: 0; font-size: 0.875rem; font-weight: 900; line-height: 1; pointer-events: none; }
.contact-form .field-control-textarea .field-validation-icon { top: 1rem; transform: none; }
.contact-form .field-control.is-valid input, .contact-form .field-control.is-valid textarea { border-color: #2e9d59; box-shadow: 0 0 0 0.1875rem rgba(46, 157, 89, .1); }
.contact-form .field-control.is-valid .field-validation-icon { opacity: 1; color: #fff; background: #2e9d59; }
.contact-form .field-control.is-valid .field-validation-icon::before { content: "✓"; }
.contact-form .field-control.is-invalid input, .contact-form .field-control.is-invalid textarea { border-color: var(--red); box-shadow: none; }
.contact-form .field-control.is-invalid .field-validation-icon { opacity: 1; color: var(--red); font-size: 1.5rem; }
.contact-form .field-control.is-invalid .field-validation-icon::before { content: "×"; }
.contact-form .field-error { display: block; color: var(--red); font-size: 0.75rem; font-weight: 600; line-height: 1.35; }
.contact-form .field-error:empty { display: none; }
.contact-form .consent-field { margin-top: 0.9375rem; }
.contact-form .consent-label { display: flex; grid-template-columns: none; flex-direction: row; align-items: flex-start; gap: 0.625rem; color: var(--muted); font-weight: 400; line-height: 1.45; }
.consent-label input { width: 1.0625rem; height: 1.0625rem; min-height: 0; flex: 0 0 auto; padding: 0; accent-color: var(--red); }
.consent-field.is-valid .consent-label input { accent-color: #2e9d59; }
.consent-field.is-invalid .consent-label input { outline: 0.125rem solid var(--red); outline-offset: 0.125rem; }
.consent-field .field-error { margin: 0.375rem 0 0 1.6875rem; }

.final-cta-section { padding: 5.625rem 0 6.875rem; }
.final-cta { padding: 4.875rem 1.875rem; border-radius: 1.5rem; color: #fff; background: linear-gradient(135deg, #59100f, #1f0b0b 82%); text-align: center; }
.final-cta h2 { margin-bottom: 1.375rem; font-size: 2.5rem; line-height: 1.08; letter-spacing: -.055em; }
.final-cta p { margin-bottom: 1.75rem; color: #cfb7b4; font-size: 1.0625rem; line-height: 1.6; }
.cta-actions { display: flex; justify-content: center; gap: 0.8125rem; }
.button-dark-outline { color: #fff; border-color: #765452; background: rgba(255, 255, 255, .06); }
.button-dark-outline svg { width: 1.125rem; height: 1.125rem; fill: none; stroke: currentColor; stroke-width: 1.7; }

.site-footer { padding: 4.375rem 0 1.875rem; color: #d3c4c1; background: var(--footer); }
.footer-grid { display: grid; grid-template-columns: 1fr 11.25rem 13.75rem; gap: 5rem; }
.brand-light { color: #fff; }
.footer-brand-block p { max-width: none; margin: 1.375rem 0; color: #9f8e8b; font-size: 0.8125rem; line-height: 1.6; white-space: nowrap; }
.footer-brand-block p a { color: #fff; text-underline-offset: 0.2em; }
.partner-badges { display: flex; min-height: 3.125rem; align-items: center; gap: 1.25rem; }
.partner-badge { display: grid; width: auto; height: auto; place-items: center; padding: 0; border: 0; background: transparent; transition: transform .18s ease; }
.partner-badge:hover { transform: translateY(-0.125rem); }
.partner-badge img { width: auto; max-width: 100%; height: 3.125rem; object-fit: contain; }
.trustindex-slot { display: flex; min-width: 8rem; min-height: 3.125rem; align-items: center; justify-content: flex-start; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6875rem; }
.footer-menu-title { margin: 0.3125rem 0 0.5rem; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 0.875rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { color: #d7c9c6; font-size: 0.875rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 3.125rem; padding-top: 1.5rem; border-top: 0.0625rem solid #3c2b29; color: #9f8e8b; font-size: 0.875rem; }

.content-page { min-height: 65vh; padding: 5.625rem 0; }
.generic-page { min-height: 65vh; padding: 3rem 0 6rem; background: #fdf8f6; }
.generic-page-container { max-width: 75rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1.25rem; color: var(--muted); font-size: 0.875rem; font-weight: 700; }
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.generic-page-card { padding: clamp(1.5rem, 4vw, 4rem); border: 0.0625rem solid var(--border); border-radius: 1.25rem; background: #fff; box-shadow: 0 1.25rem 2.5rem rgba(64, 33, 28, .07); }
.generic-page-card > h1 { margin: 0 0 1.5rem; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.05; letter-spacing: -.055em; }
.generic-page-card > p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.legal-content { max-width: none; }
.legal-content > header { margin-bottom: 3rem; }
.legal-content h1 { margin: 0 0 0.75rem; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.05; letter-spacing: -.055em; }
.legal-content header p { margin: 0; color: var(--muted); font-size: 1rem; }
.legal-content section + section { margin-top: 2.25rem; }
.legal-content h2 { margin: 0 0 0.75rem; font-size: 1.5rem; line-height: 1.2; letter-spacing: -.025em; }
.legal-content p { margin: 0.625rem 0 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.legal-content a { color: var(--red); font-weight: 800; text-underline-offset: 0.2em; }

.shared-result-page { background: #fff; }
.shared-result-intro { padding: 5rem 0 3rem; background: #fdf8f6; text-align: center; }
.shared-result-intro .container { max-width: 70rem; }
.shared-result-kicker { display: inline-flex; margin-bottom: 1rem; padding: 0.4375rem 0.875rem; border-radius: 99rem; color: var(--red); background: var(--red-soft); font-size: 0.8125rem; font-weight: 900; text-transform: uppercase; }
.shared-result-intro h1, .share-unavailable h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.05; letter-spacing: -.055em; }
.shared-result-lead { max-width: 46rem; margin: 1rem auto 2rem; color: var(--muted); font-size: 1.0625rem; }
.shared-result-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; margin: 0; text-align: left; }
.shared-result-meta > div { padding: 1rem; border: 0.0625rem solid var(--border); border-radius: 0.75rem; background: #fff; }
.shared-result-meta dt { color: var(--muted); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.shared-result-meta dd { margin: 0.25rem 0 0; overflow-wrap: anywhere; color: var(--ink); font-weight: 900; }
.shared-result-prompt { margin-top: 0.75rem; padding: 1rem 1.25rem; border: 0.0625rem solid var(--border); border-radius: 0.75rem; background: #fff; text-align: left; }
.shared-result-prompt strong { font-size: 0.75rem; text-transform: uppercase; }
.shared-result-prompt p { margin: 0.375rem 0 0; color: var(--ink); font-size: 1rem; }
.shared-result-expiration { display: flex; align-items: center; gap: 0.75rem; margin: 1rem 0 0; padding: 0.875rem 1rem; border-radius: 0.75rem; color: #6b5e5b; background: #f3eae7; font-size: 0.875rem; text-align: left; }
.shared-result-expiration svg { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; fill: none; stroke: var(--red); stroke-width: 2; }
.shared-result-content { padding: 0 0 5rem; }
.shared-result-content .geo-results { margin-top: 0; padding-top: 3rem; }
.shared-result-disclaimer { margin-top: 1rem; padding: 1.25rem 1.5rem; border-left: 0.375rem solid var(--red); color: var(--muted); background: #fdf8f6; }
.shared-result-disclaimer strong { color: var(--ink); }
.shared-result-disclaimer p { margin: 0.25rem 0 0; }
.shared-result-cta { margin-top: 2rem; padding: 3rem 1.5rem; border-radius: 1.25rem; color: #fff; background: linear-gradient(135deg, #59100f, #1f0b0b 82%); text-align: center; }
.shared-result-cta h2 { max-width: 46rem; margin: 0 auto 1.5rem; color: #fff; }
.share-unavailable { min-height: 60vh; display: grid; place-items: center; padding: 5rem 0; background: #fdf8f6; text-align: center; }
.share-unavailable-card { max-width: 46rem; margin-inline: auto; padding: 3rem; border: 0.0625rem solid var(--border); border-radius: 1.25rem; background: #fff; box-shadow: 0 1.25rem 2.5rem rgba(64, 33, 28, .08); }
.share-unavailable-card p { margin: 1.25rem 0 1.75rem; color: var(--muted); font-size: 1.0625rem; }

@media (hover: hover) {
    .pricing-card:hover { transform: translateY(-0.5rem); border-color: rgba(210, 34, 39, .45); box-shadow: 0 1.5rem 2.8125rem rgba(77, 39, 32, .12); }
    .pricing-featured:hover { border-color: var(--red); }
}

@media (max-width: 62.5rem) {
    .hero { min-height: auto; padding-top: 5.125rem; }
    .ai-float { display: none; }
    .split-layout { gap: 2.8125rem; }
    .card-grid-four { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 38.75rem; margin-inline: auto; }
    .pricing-card { min-height: 24.375rem; }
    .footer-grid { grid-template-columns: 1fr 10rem 12.5rem; gap: 2.1875rem; }
    .geo-result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 47.5rem) {
    html { scroll-padding-top: 8rem; }
    .container { width: min(100% - 1.75rem, var(--container)); }
    .site-header { height: auto; min-height: 4.25rem; }
    .header-inner { min-height: 4.25rem; flex-wrap: wrap; padding: 0.75rem 0; }
    .brand-logo-header { height: 2.125rem; }
    .main-nav { width: 100%; justify-content: space-between; gap: 0.625rem; order: 2; padding-top: 0.5rem; border-top: 0.0625rem solid #f2e9e6; }
    .main-nav a { font-size: 0.75rem; }
    .hero { padding: 4.0625rem 0 4.6875rem; }
    .hero h1 { font-size: clamp(2.25rem, 11.5vw, 3.375rem); }
    .hero h1 br { display: none; }
    .hero-lead { font-size: 1rem; }.hero-lead br { display: none; }
    .test-form { padding: 1.125rem; }
    .form-row { grid-template-columns: 1fr; }
    .geo-results { margin-top: 1.5rem; }
    .geo-score-banner { grid-template-columns: 1fr; align-items: stretch; padding: 1rem; }
    .geo-share-panel { grid-template-columns: 1fr 1fr; }
    .geo-share-panel input { grid-column: 1 / -1; }
    .geo-gauge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .geo-result-grid { grid-template-columns: 1fr; }
    .geo-result-card { min-height: 0; }
    .geo-competitor-summary { padding: 1rem; }
    .geo-competitor-pills { gap: 0.625rem; }
    .problem-section, .agency-section { padding: 5rem 0; }
    .split-layout { grid-template-columns: 1fr; gap: 2.625rem; }
    .split-copy h2 br { display: none; }
    .problem-section .split-copy h2 span { display: inline; white-space: normal; }
    .assistant-window { min-height: 18.75rem; }
    .stats-section, .metrics-section, .competitors-section, .pricing-section, .faq-section, .contact-section { padding: 5rem 0; }
    .section-title br, .centered-section p br { display: none; }
    .card-grid-four { grid-template-columns: 1fr; }
    .card-grid-three { grid-template-columns: 1fr; }
    .info-card { min-height: 11.875rem; }
    .competitors-placeholder { height: 17.5rem; }
    .agency-visual { min-height: 18.75rem; padding: 1.75rem; }
    .agency-stat-card { padding: 1.625rem 1.375rem; }
    .agency-stat-card b { font-size: 0.9375rem; }
    .contact-form { padding: 1.1875rem; }
    .final-cta-section { padding: 4.0625rem 0; }
    .final-cta { padding: 3.75rem 1.375rem; }
    .final-cta h2 br, .final-cta p br { display: none; }
    .cta-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-block { grid-column: 1 / -1; }
    .footer-brand-block p { white-space: normal; }
    .shared-result-meta { grid-template-columns: 1fr; }
    .partner-badges { flex-wrap: wrap; }
}

@media (max-width: 27.5rem) {
    .main-nav a { font-size: 0.6875rem; }
    .hero { padding-top: 3rem; }
    .hero h1 { font-size: 2.3125rem; }
    .geo-gauge-grid { grid-template-columns: 1fr; }
    .geo-share-panel { grid-template-columns: 1fr; }
    .geo-share-panel input, .geo-share-panel .button { grid-column: 1; width: 100%; }
    .section-title, .centered-section h2, .split-copy h2 { font-size: 2.0625rem; }
    .chat-answer { max-width: 94%; }
    .agency-stat-card > div:first-child { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand-block { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    :root { scroll-behavior: auto; }
    .button { transition: none; }
    .ai-float { animation: none; }
    .geo-loader img { animation: none; }
    .geo-loader-track i { animation: none; transition: none; }
}
