:root {
    --bg: #edf3ed;
    --paper: rgba(251, 253, 249, 0.9);
    --paper-strong: rgba(255, 255, 255, 0.82);
    --ink: #17211d;
    --muted: #5b6762;
    --accent: #1f4d47;
    --accent-soft: #dbece5;
    --signal: #b7844c;
    --signal-soft: #f3e4d1;
    --line: rgba(23, 33, 29, 0.09);
    --shadow: 0 24px 60px rgba(32, 46, 40, 0.12);
    --shadow-soft: 0 12px 28px rgba(32, 46, 40, 0.08);
    --radius-lg: 30px;
    --radius-md: 22px;
    --content-width: 430px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Archivo", sans-serif;
    color: var(--ink);
    background:
    radial-gradient(circle at top left, rgba(183, 132, 76, 0.14), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(31, 77, 71, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbf6 0%, #eaf0e7 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(23, 33, 29, 0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 33, 29, 0.016) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.45;
}

.page-shell {
    position: relative;
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 18px 14px 40px;
}

.hero,
.visual-card,
.partners,
.cta-panel {
    position: relative;
    background: var(--paper);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero,
.partners,
.cta-panel {
    padding: 22px;
}

.hero {
    margin-top: 12px;
    padding-top: 18px;
    background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(246, 251, 247, 0.94)),
        var(--paper);
}

.hero__wash {
    content: "";
    position: absolute;
    inset: -60px -40px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(31, 77, 71, 0.14), transparent 62%),
        radial-gradient(circle at 30% 70%, rgba(183, 132, 76, 0.16), transparent 48%);
    pointer-events: none;
    filter: blur(4px);
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: auto -34px -80px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183, 132, 76, 0.16), transparent 70%);
}

.hero__eyebrow,
.hero__stats,
.section-heading,
.sticky-cta {
    display: flex;
}

.hero__eyebrow {
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.hero__badge,
.kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__newsflash {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--signal);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__newsflash::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(183, 132, 76, 0.14);
}

.hero__meta {
    color: var(--muted);
    font-size: 0.85rem;
}

h1,
h2,
h3,
strong {
    font-family: "Spectral", serif;
}

h1 {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: clamp(2.05rem, 5.8vw, 2.6rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.hero__lead,
.cta-panel p,
.info-card p,
figcaption {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.58;
}

.hero__lead {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    max-width: 31ch;
}

.hero__stats {
    gap: 12px;
    margin-top: 24px;
}

.hero__stats div,
.info-card,
.logo-chip {
    border: 1px solid var(--line);
}

.hero__stats div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 249, 245, 0.74));
    box-shadow: var(--shadow-soft);
}

.hero__stats strong {
    font-size: 1.4rem;
    line-height: 1;
}

.hero__stats span {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(31, 77, 71, 0.1);
}

.hero__note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.hero__note-dot {
    width: 10px;
    height: 10px;
    margin-top: 0.35em;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--signal), #d6ad7c);
}

.visual-card,
.partners,
.cta-panel,
.trust-footer {
    margin-top: 18px;
}

.trust-footer {
    position: relative;
    padding: 22px;
    background:
        radial-gradient(circle at top left, rgba(183, 132, 76, 0.14), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(31, 77, 71, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 249, 245, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.trust-footer__heading h2 {
    max-width: 16ch;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.trust-footer__media {
    padding: 12px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 249, 245, 0.9));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.trust-footer__media img {
    display: block;
    width: 100%;
    border-radius: 16px;
}

.trust-card {
    display: grid;
    gap: 10px;
    min-height: 124px;
    padding: 16px 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 249, 245, 0.88));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.trust-card--review {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 240, 0.96));
    border-color: rgba(31, 77, 71, 0.14);
}

.trust-card__brand {
    display: grid;
    gap: 10px;
    align-content: start;
}

.trust-card__brand strong {
    display: block;
    font-size: 1.08rem;
    line-height: 1.05;
    color: var(--ink);
}

.trust-card__brand span:last-child {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.trust-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(31, 77, 71, 0.1), rgba(31, 77, 71, 0.04));
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.trust-card__icon--google {
    background: linear-gradient(135deg, #fbbc05, #ea4335 48%, #34a853 78%, #4285f4 100%);
}

.trust-card__icon--trust {
    background: linear-gradient(135deg, #00b67a, #0f7f73);
}

.trust-card__meta {
    margin: 0;
    color: var(--signal);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.visual-card {
    padding: 12px;
    background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 248, 244, 0.94)),
        var(--paper);
}

figure {
    margin: 0;
}

img {
    display: block;
    width: 100%;
    border-radius: 22px;
}

figcaption {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 10px 6px;
}

.caption-tag {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    padding: 0 10px;
    align-items: center;
    border-radius: 999px;
    background: var(--signal-soft);
    color: var(--signal);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

h2 {
    margin: 0;
    font-size: clamp(1.65rem, 5vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.partners__companies {
    margin: 16px 2px 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.logo-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 16px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 244, 0.9));
    box-shadow: var(--shadow-soft);
}

.logo-chip img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 28px;
    object-fit: contain;
    border-radius: 0;
}

.logo-chip--orange {
    background: #ff7900;
}

.info-stack {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.info-card {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 249, 245, 0.9));
    box-shadow: var(--shadow-soft);
}

.info-card p {
    margin: 0;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 18px 0 24px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 12px 14px 12px 40px;
    color: var(--ink);
    line-height: 1.45;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(23, 33, 29, 0.06);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--signal), #d8b17d);
    box-shadow: 0 0 0 4px rgba(183, 132, 76, 0.12);
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #231b96, #094974 55%, #020d47);
    box-shadow: 0 18px 32px rgba(168, 116, 63, 0.22);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta:hover {
    box-shadow: 0 22px 36px rgba(168, 116, 63, 0.26);
    transform: translateY(-1px);
}

.primary-cta {
    width: 100%;
}

.primary-cta:active {
    transform: translateY(1px) scale(0.995);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: rise-in 700ms ease forwards;
}

.visual-card.reveal {
    animation-delay: 120ms;
}

.partners.reveal {
    animation-delay: 220ms;
}

.cta-panel.reveal {
    animation-delay: 320ms;
}

@keyframes rise-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 560px) {
    .page-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero,
    .partners,
    .cta-panel,
    .trust-footer {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .primary-cta,
    .sticky-cta a {
        transition: none;
    }
}