:root {
    --navy: #062852;
    --navy-900: #001d3f;
    --green: #17a43a;
    --green-700: #0d8b2d;
    --line: #d9e2ec;
    --muted: #5f6f84;
    --soft: #f4f8fb;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(3, 25, 56, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--navy);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 10px clamp(20px, 6vw, 112px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    transition: min-height 0.24s ease, padding 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.site-header.is-scrolled {
    min-height: 62px;
    padding-top: 6px;
    padding-bottom: 6px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 12px 30px rgba(3, 25, 56, 0.08);
}

.brand img {
    width: clamp(178px, 15vw, 232px);
    transition: width 0.24s ease, transform 0.24s ease;
}

.site-header.is-scrolled .brand img {
    width: clamp(160px, 13vw, 210px);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    color: #09294f;
    font-size: 15px;
    font-weight: 720;
    line-height: 1;
    letter-spacing: 0;
}

.main-nav a {
    position: relative;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--green);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--green);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.mobile-menu-toggle {
    display: none;
}

.header-cta,
.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 850;
    line-height: 1.1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta::before,
.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.26) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.header-cta,
.button.primary {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 12px 22px rgba(23, 164, 58, 0.24);
}

.button.secondary,
.button.outline {
    color: var(--green-700);
    background: var(--white);
    border-color: var(--green);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.header-cta:hover::before,
.button:hover::before {
    transform: translateX(120%);
}

.button:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible,
.site-footer a:focus-visible,
.legal-card a:focus-visible {
    outline: 3px solid rgba(23, 164, 58, 0.35);
    outline-offset: 4px;
}

.full {
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    align-items: stretch;
    min-height: 620px;
    padding: clamp(42px, 7vw, 96px) clamp(20px, 6vw, 112px) 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 47%, rgba(255, 255, 255, 0.42) 100%),
        url("/img/logo.png") right 8% top 28% / min(720px, 52vw) auto no-repeat,
        linear-gradient(180deg, #ffffff 0%, #eef5f7 100%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 690px;
    padding-bottom: 52px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 740px;
    margin-bottom: 18px;
    font-size: clamp(40px, 5.3vw, 76px);
    line-height: 0.97;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.hero h1::after {
    content: "";
    display: block;
    width: 210px;
    height: 8px;
    margin-top: 12px;
    background: var(--green);
    border-radius: 99px;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 24px;
    color: #263d59;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.trust-row span {
    position: relative;
    min-height: 68px;
    padding: 12px 14px 12px 42px;
    color: #334b66;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(217, 226, 236, 0.9);
    border-radius: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-row span:hover {
    border-color: rgba(23, 164, 58, 0.35);
    box-shadow: 0 12px 26px rgba(3, 25, 56, 0.08);
    transform: translateY(-3px);
}

.trust-row span::before,
.check-list span::before,
.package-card li::before,
.audit-card li::before,
.examples li::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
}

.trust-row span::before {
    left: 14px;
    top: 17px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.portrait-panel {
    position: absolute;
    top: 2px;
    left: 4%;
    display: flex;
    align-items: center;
    gap: 16px;
    width: min(420px, 88%);
    padding: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.portrait-panel:hover {
    box-shadow: 0 24px 54px rgba(3, 25, 56, 0.16);
    transform: translateY(-4px);
}

.portrait {
    display: block;
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--green);
    background: var(--soft);
}

.portrait-panel p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.phone-card {
    position: absolute;
    right: 22%;
    bottom: -24px;
    width: 290px;
    min-height: 492px;
    padding: 42px 22px 24px;
    background: var(--white);
    border: 8px solid var(--navy-900);
    border-radius: 38px;
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.phone-card:hover {
    box-shadow: 0 28px 60px rgba(3, 25, 56, 0.18);
    transform: translateY(-5px);
}

.phone-top {
    position: absolute;
    top: 13px;
    left: 50%;
    width: 92px;
    height: 16px;
    background: var(--navy-900);
    border-radius: 0 0 14px 14px;
    transform: translateX(-50%);
}

.rating-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.google-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #4285f4;
    background: #eef4ff;
    border-radius: 50%;
    font-size: 35px;
    font-weight: 900;
}

.rating-card p,
.metric span {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.metric {
    margin-top: 18px;
    padding: 18px;
    background: #f7fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.metric strong {
    display: block;
    margin-top: 8px;
    color: var(--green);
    font-size: 28px;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.mini-chart i {
    flex: 1;
    background: linear-gradient(180deg, #39bf55, #0f8b33);
    border-radius: 6px 6px 0 0;
    transform-origin: bottom;
}

.mini-chart i:nth-child(1) {
    height: 35%;
}

.mini-chart i:nth-child(2) {
    height: 58%;
}

.mini-chart i:nth-child(3) {
    height: 86%;
}

.audit-card {
    position: absolute;
    right: 0;
    top: 190px;
    width: 260px;
    padding: 22px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.audit-card:hover {
    box-shadow: 0 24px 54px rgba(3, 25, 56, 0.2);
    transform: translateY(-4px);
}

.audit-card h2 {
    margin-bottom: 14px;
    font-size: 16px;
}

.audit-card ul,
.package-card ul,
.examples ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.audit-card li,
.package-card li,
.examples li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
}

.audit-card li + li,
.package-card li + li,
.examples li + li {
    margin-top: 10px;
}

.audit-card li::before,
.package-card li::before,
.examples li::before {
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
}

.problem-strip,
.packages,
.audiences,
.faq {
    padding: clamp(38px, 6vw, 76px) clamp(20px, 6vw, 112px);
}

.problem-strip {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.problem-strip h2 {
    font-size: clamp(22px, 2vw, 30px);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.problem-grid article {
    min-height: 122px;
    padding: 18px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem-grid article:hover {
    border-color: rgba(23, 164, 58, 0.42);
    box-shadow: 0 14px 30px rgba(3, 25, 56, 0.08);
    transform: translateY(-4px);
}

.icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    color: var(--navy);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.problem-grid p {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
}

.split-section,
.region-section,
.workflow,
.examples,
.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    padding: clamp(54px, 7vw, 92px) clamp(20px, 6vw, 112px);
}

.split-section p,
.examples p,
.contact-copy p {
    color: var(--muted);
    font-size: 18px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.region-section {
    background:
        linear-gradient(135deg, rgba(0, 29, 63, 0.94), rgba(6, 40, 82, 0.9)),
        linear-gradient(180deg, #001d3f, #062852);
    color: var(--white);
}

.region-section p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.region-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.region-list span {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.region-list span:hover {
    color: var(--green-700);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

.check-list span {
    position: relative;
    min-height: 58px;
    padding: 17px 18px 17px 48px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.check-list span:hover {
    background: #ffffff;
    border-color: rgba(23, 164, 58, 0.42);
    transform: translateX(4px);
}

.check-list span::before {
    left: 18px;
    top: 20px;
}

.packages {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
    text-align: left;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(3, 25, 56, 0.08);
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(220px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(23, 164, 58, 0.13), transparent 62%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.package-card:hover {
    border-color: rgba(23, 164, 58, 0.5);
    box-shadow: 0 22px 44px rgba(3, 25, 56, 0.13);
    transform: translateY(-6px);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.featured {
    border: 2px solid var(--green);
    transform: translateY(-10px);
}

.package-card.featured:hover {
    transform: translateY(-14px);
}

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    color: var(--white);
    background: var(--green);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.price {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 950;
}

.package-card ul {
    flex: 1;
    margin-bottom: 24px;
}

.workflow {
    background: var(--white);
}

.steps {
    display: grid;
    gap: 16px;
}

.steps article {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(3, 25, 56, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.steps article:hover {
    border-color: rgba(23, 164, 58, 0.42);
    box-shadow: 0 18px 38px rgba(3, 25, 56, 0.1);
    transform: translateX(5px);
}

.steps span {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 900;
}

.steps p {
    margin: 0;
    color: var(--muted);
}

.audiences {
    color: var(--white);
    background: var(--navy-900);
}

.audiences h2 {
    margin-bottom: 24px;
}

.audience-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.audience-row span {
    padding: 14px 16px;
    color: var(--navy);
    background: var(--white);
    border-radius: 8px;
    font-weight: 850;
    text-align: center;
    transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.audience-row span:hover {
    color: var(--green-700);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px);
}

.examples {
    background: #f8fbfd;
}

.seo-links {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: start;
    padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 112px);
    background: #f8fbfd;
    border-bottom: 1px solid var(--line);
}

.seo-link-grid {
    display: grid;
    gap: 14px;
}

.seo-link-grid a {
    display: grid;
    gap: 6px;
    min-height: 94px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(3, 25, 56, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.seo-link-grid a:hover {
    border-color: rgba(23, 164, 58, 0.42);
    box-shadow: 0 18px 38px rgba(3, 25, 56, 0.1);
    transform: translateY(-4px);
}

.seo-link-grid strong {
    font-size: 19px;
}

.seo-link-grid span {
    color: var(--muted);
}

.examples li {
    padding: 18px 18px 18px 52px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.examples li:hover {
    border-color: rgba(23, 164, 58, 0.4);
    box-shadow: 0 14px 30px rgba(3, 25, 56, 0.08);
    transform: translateY(-3px);
}

.examples li::before {
    left: 20px;
    top: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

details {
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

details:hover,
details[open] {
    border-color: rgba(23, 164, 58, 0.42);
    box-shadow: 0 14px 30px rgba(3, 25, 56, 0.08);
}

summary {
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
    padding-right: 32px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

details p {
    margin: 12px 0 0;
    color: var(--muted);
}

.contact {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-900), var(--navy));
}

.contact-result {
    grid-column: 1 / -1;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: clamp(20px, 4vw, 28px);
    color: var(--navy);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.contact-result.success {
    border: 2px solid var(--green);
}

.contact-result.error {
    border: 2px solid #c94a4a;
}

.contact-result:focus {
    outline: 4px solid rgba(23, 164, 58, 0.32);
    outline-offset: 4px;
}

.contact-result strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.05;
}

.contact-result p {
    margin: 0;
    color: #334b66;
    font-size: 17px;
}

.contact .eyebrow {
    color: #55d56f;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px;
    color: var(--navy);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.contact-form:focus-within {
    box-shadow: 0 24px 54px rgba(3, 25, 56, 0.18);
    transform: translateY(-3px);
}

label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 900;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    grid-column: 1 / -1;
    margin: 0;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
}

.form-status.success {
    color: #076624;
    background: #e9f9ee;
    border: 1px solid rgba(23, 164, 58, 0.28);
}

.form-status.error {
    color: #8a1f1f;
    background: #fff0f0;
    border: 1px solid rgba(190, 52, 52, 0.28);
}

.form-confirmation {
    grid-column: 1 / -1;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    color: #075f24;
    background: linear-gradient(135deg, #ecfbf0, #ffffff);
    border: 1px solid rgba(23, 164, 58, 0.34);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(23, 164, 58, 0.12);
}

.confirmation-icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 950;
}

.form-confirmation strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 20px;
}

.form-confirmation p {
    margin: 0;
    color: #255c39;
    font-size: 15px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--navy);
    background: #f8fbfd;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    background: #ffffff;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(23, 164, 58, 0.12);
    outline: none;
}

textarea {
    resize: vertical;
}

.wide,
.contact-form button {
    grid-column: 1 / -1;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px clamp(20px, 6vw, 112px);
    color: var(--white);
    background: #00162f;
}

.site-footer nav {
    display: flex;
    gap: 18px;
}

.site-footer span,
.site-footer a {
    color: rgba(255, 255, 255, 0.78);
}

.legal-page {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.legal-hero {
    padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, 112px) clamp(24px, 4vw, 46px);
}

.legal-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(42px, 6vw, 76px);
}

.legal-hero p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 19px;
}

.legal-card {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto clamp(54px, 7vw, 92px);
    padding: clamp(26px, 5vw, 54px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(3, 25, 56, 0.08);
}

.legal-card h2 {
    margin: 32px 0 10px;
    font-size: clamp(22px, 2.4vw, 30px);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    max-width: 820px;
    color: #334b66;
}

.legal-card a {
    color: var(--green-700);
    font-weight: 850;
}

.seo-page {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.seo-hero,
.seo-content,
.seo-cta,
.seo-related {
    padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, 112px);
}

.seo-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
    min-height: 560px;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 56%, rgba(244, 248, 251, 0.72) 100%),
        url("/img/logo.png") right 8% center / min(620px, 48vw) auto no-repeat;
}

.seo-hero h1 {
    max-width: 820px;
}

.seo-hero p:not(.eyebrow),
.seo-text p,
.seo-cta p {
    max-width: 760px;
    color: var(--muted);
    font-size: 19px;
}

.seo-summary {
    display: grid;
    gap: 10px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.seo-summary span {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.seo-summary strong {
    margin-bottom: 16px;
    font-size: 21px;
    line-height: 1.2;
}

.seo-content {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 5vw, 72px);
    background: var(--white);
}

.seo-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.seo-checks article {
    display: flex;
    gap: 14px;
    min-height: 98px;
    padding: 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.seo-checks article:hover {
    background: var(--white);
    border-color: rgba(23, 164, 58, 0.42);
    transform: translateY(-3px);
}

.seo-checks span {
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 950;
}

.seo-checks p {
    margin: 0;
    font-weight: 800;
}

.seo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-900), var(--navy));
}

.seo-cta .eyebrow {
    color: #55d56f;
}

.seo-cta p {
    color: rgba(255, 255, 255, 0.78);
}

.seo-cta .button {
    flex: 0 0 auto;
}

.seo-related {
    background: #f8fbfd;
}

.seo-related h2 {
    max-width: 760px;
}

.seo-related div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.seo-related a {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 900;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.seo-related a:hover {
    color: var(--green-700);
    border-color: rgba(23, 164, 58, 0.42);
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.58s ease var(--reveal-delay, 0ms), transform 0.58s ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.phone-card.is-visible .mini-chart i {
    animation: bar-rise 0.82s ease both;
}

.phone-card.is-visible .mini-chart i:nth-child(2) {
    animation-delay: 0.12s;
}

.phone-card.is-visible .mini-chart i:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes bar-rise {
    from {
        transform: scaleY(0.18);
    }

    to {
        transform: scaleY(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .site-header {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero,
    .split-section,
    .region-section,
    .workflow,
    .examples,
    .contact,
    .seo-links,
    .seo-hero,
    .seo-content {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.94) 55%, #eef5f7 100%),
            url("/img/logo.png") center bottom 4% / min(620px, 86vw) auto no-repeat;
    }

    .hero-visual {
        min-height: 520px;
    }

    .problem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .package-grid,
    .audience-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-related div {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 720px) {
    .site-header {
        position: static;
        display: grid;
        grid-template-columns: 1fr auto;
        justify-items: stretch;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
    }

    .brand img {
        width: 190px;
    }

    .mobile-menu-toggle {
        display: inline-grid;
        grid-template-columns: 18px auto;
        align-items: center;
        column-gap: 8px;
        min-height: 40px;
        padding: 0 13px;
        color: var(--navy);
        background: var(--soft);
        border: 1px solid var(--line);
        border-radius: 8px;
        font: inherit;
        font-size: 13px;
        font-weight: 850;
    }

    .mobile-menu-toggle span {
        grid-column: 1;
        width: 18px;
        height: 2px;
        background: currentColor;
        border-radius: 99px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-menu-toggle span:nth-child(1) {
        grid-row: 1;
        transform: translateY(-5px);
    }

    .mobile-menu-toggle span:nth-child(2) {
        grid-row: 1;
    }

    .mobile-menu-toggle span:nth-child(3) {
        grid-row: 1;
        transform: translateY(5px);
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .main-nav {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 8px;
        grid-column: 1 / -1;
        width: 100%;
        overflow: hidden;
        padding-bottom: 0;
        font-size: 13px;
    }

    .js .main-nav {
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: max-height 0.24s ease, opacity 0.2s ease, transform 0.24s ease;
    }

    .site-header.is-menu-open .main-nav {
        max-height: 120px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        grid-column: span 2;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 8px;
        background: var(--soft);
        border: 1px solid var(--line);
        border-radius: 8px;
        white-space: nowrap;
        transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .main-nav a:nth-child(4),
    .main-nav a:nth-child(5) {
        grid-column: span 3;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
        color: var(--white);
        background: var(--navy);
        border-color: var(--navy);
        transform: translateY(-1px);
    }

    .header-cta {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 42px;
    }

    .hero {
        padding: 34px 18px 0;
    }

    h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .hero-actions,
    .trust-row,
    .problem-grid,
    .check-list,
    .region-list,
    .package-grid,
    .audience-row,
    .faq-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .button,
    .button.secondary {
        width: 100%;
    }

    .hero-visual {
        min-height: 700px;
    }

    .portrait-panel,
    .phone-card,
    .audit-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 16px;
    }

    .phone-card {
        min-height: 440px;
    }

    .problem-strip,
    .packages,
    .audiences,
    .faq,
    .split-section,
    .region-section,
    .workflow,
    .examples,
    .contact,
    .seo-links,
    .seo-hero,
    .seo-content,
    .seo-cta,
    .seo-related {
        padding: 42px 18px;
    }

    .seo-hero {
        min-height: auto;
        background:
            linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.94) 58%, #eef5f7 100%),
            url("/img/logo.png") center bottom 4% / min(520px, 92vw) auto no-repeat;
    }

    .seo-checks {
        grid-template-columns: 1fr;
    }

    .seo-cta {
        display: grid;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-card {
        width: calc(100% - 36px);
    }
}
