:root {
    --sos-red: #E81D25;
    --sos-red-dark: #B9131B;
    --sos-blue: #1B75BC;
    --sos-blue-dark: #0F2C3F;
    --sos-blue-soft: #D8F0FF;
    --sos-gold: #CFBA8E;
    --sos-gold-soft: #F4E8D1;
    --sos-cream: #FFFAF2;
    --sos-sand: #F7EFE3;
    --sos-white: #FFFFFF;
    --sos-ink: #172331;
    --sos-muted: #637282;
    --sos-border: rgba(15, 44, 63, 0.14);
    --sos-shadow: 0 22px 55px rgba(15, 44, 63, 0.14);
    --sos-shadow-soft: 0 14px 34px rgba(15, 44, 63, 0.09);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--sos-ink);
    background: radial-gradient(circle at top left, rgba(216, 240, 255, 0.65), transparent 32rem), linear-gradient(180deg, var(--sos-cream) 0%, #ffffff 42%, var(--sos-cream) 100%);
    font-family: Aptos, "Inter", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

h1 {
    max-width: 830px;
    margin-bottom: 1.25rem;
    font-size: clamp(3.1rem, 7vw, 6.35rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4.2vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

h3 {
    margin-bottom: 0.55rem;
    font-size: 1.12rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.35rem;
    padding: 0.75rem clamp(1rem, 4vw, 3rem);
    background: rgba(255, 250, 242, 0.94);
    border-bottom: 1px solid var(--sos-border);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--sos-blue-dark);
    text-decoration: none;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.brand-logo {
    display: block;
    width: clamp(76px, 8vw, 108px);
    height: auto;
    max-height: 76px;
    object-fit: contain;
}

.brand-text {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.7rem, 1.5vw, 1.1rem);
    font-size: 0.94rem;
    font-weight: 750;
}

    .site-nav a {
        color: var(--sos-blue-dark);
        text-decoration: none;
    }

        .site-nav a:hover {
            color: var(--sos-red);
        }

.nav-button {
    padding: 0.62rem 1.05rem;
    color: var(--sos-white) !important;
    border: 1px solid rgba(232, 29, 37, 0.22);
    border-radius: 999px;
    background: var(--sos-red);
    box-shadow: 0 10px 22px rgba(232, 29, 37, 0.18);
}

.hero-section,
.section,
.cta-section,
.page-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(3.25rem, 7vw, 6.5rem) clamp(1rem, 4vw, 2rem);
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    min-height: calc(100vh - 92px);
}

.hero-content {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--sos-red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-lede,
.wide-text,
.cta-section p,
.page-hero p,
.section-heading p {
    max-width: 790px;
    color: var(--sos-muted);
    font-size: clamp(1.06rem, 1.55vw, 1.24rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.centered-actions {
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.25rem;
    border: 0;
    border-radius: 999px;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

    .button:hover {
        transform: translateY(-1px);
    }

.button-primary {
    color: var(--sos-white);
    background: var(--sos-red);
    box-shadow: 0 12px 26px rgba(232, 29, 37, 0.22);
}

    .button-primary:hover {
        background: var(--sos-red-dark);
    }

.button-secondary {
    color: var(--sos-blue-dark);
    background: var(--sos-blue-soft);
    box-shadow: 0 10px 22px rgba(27, 117, 188, 0.12);
}

    .button-secondary:hover {
        background: #C5E9FF;
    }

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

    .hero-proof-row span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0.35rem 0.75rem;
        color: var(--sos-blue-dark);
        border: 1px solid rgba(27, 117, 188, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        font-size: 0.82rem;
        font-weight: 800;
    }

.hero-card,
.step-card,
.features-grid article,
.callout-card,
.investment-card,
.contact-card,
.contact-form {
    border: 1px solid var(--sos-border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--sos-shadow-soft);
}

.hero-card {
    position: relative;
    padding: clamp(1.4rem, 3vw, 2rem);
    overflow: hidden;
}

    .hero-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto auto;
        width: 150px;
        height: 150px;
        border-radius: 0 0 0 100%;
        background: linear-gradient(135deg, rgba(232, 29, 37, 0.14), rgba(27, 117, 188, 0.16));
        pointer-events: none;
    }

.hero-card-topline {
    position: relative;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.38rem 0.75rem;
    color: var(--sos-blue-dark);
    border-radius: 999px;
    background: var(--sos-gold-soft);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-card h2 {
    position: relative;
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    letter-spacing: -0.04em;
}

.hero-card p {
    position: relative;
    color: var(--sos-muted);
}

.hero-card ul {
    position: relative;
    display: grid;
    gap: 0.72rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-card li {
    color: var(--sos-ink);
    font-weight: 650;
}

    .hero-card li::before {
        content: "•";
        color: var(--sos-red);
        font-weight: 900;
        margin-right: 0.55rem;
    }

.section-muted {
    max-width: none;
    background: linear-gradient(135deg, rgba(247, 239, 227, 0.96), rgba(216, 240, 255, 0.58));
}

    .section-muted > * {
        max-width: var(--max-width);
        margin-left: auto;
        margin-right: auto;
    }

.section-heading {
    max-width: 850px;
    margin-bottom: 2rem;
}

.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

    .centered p {
        margin-left: auto;
        margin-right: auto;
    }

.problem-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.25rem;
    align-items: start;
}

.callout-card {
    padding: 1.35rem;
    border-left: 6px solid var(--sos-red);
}

    .callout-card strong,
    .callout-card span {
        display: block;
    }

    .callout-card strong {
        margin-bottom: 0.35rem;
        color: var(--sos-blue-dark);
        font-size: 1rem;
    }

    .callout-card span {
        color: var(--sos-muted);
    }

.steps-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

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

.step-card,
.features-grid article {
    padding: 1.45rem;
}

    .step-card p,
    .features-grid p,
    .split-section p,
    .feature-list span,
    .contact-card p,
    .form-note {
        color: var(--sos-muted);
    }

.step-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1.15rem;
    color: var(--sos-white);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sos-red), var(--sos-blue));
    font-weight: 950;
    box-shadow: 0 10px 22px rgba(232, 29, 37, 0.18);
}

.audience-section {
    padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 1rem;
}

    .feature-list div {
        display: grid;
        gap: 0.28rem;
        padding: 1.1rem 1.2rem;
        border-left: 5px solid var(--sos-blue);
        border-radius: var(--radius-md);
        background: linear-gradient(135deg, #ffffff, var(--sos-blue-soft));
        box-shadow: 0 10px 24px rgba(15, 44, 63, 0.07);
    }

    .feature-list strong {
        color: var(--sos-blue-dark);
    }

.investment-section {
    padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.investment-card {
    padding: clamp(1.5rem, 4vw, 2.4rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 232, 209, 0.78)), #ffffff;
}

    .investment-card p {
        max-width: 840px;
        color: var(--sos-muted);
        font-size: 1.08rem;
    }

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.4rem;
}

    .investment-grid div {
        padding: 1rem;
        border: 1px solid rgba(15, 44, 63, 0.12);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.82);
    }

    .investment-grid strong,
    .investment-grid span {
        display: block;
    }

    .investment-grid strong {
        margin-bottom: 0.3rem;
        color: var(--sos-blue-dark);
    }

    .investment-grid span {
        color: var(--sos-muted);
        font-size: 0.94rem;
    }

.cta-section {
    margin-bottom: 4rem;
    text-align: center;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top right, rgba(232, 29, 37, 0.22), transparent 22rem), linear-gradient(135deg, var(--sos-blue-dark), var(--sos-blue));
    color: var(--sos-white);
    box-shadow: var(--sos-shadow);
}

    .cta-section .eyebrow,
    .cta-section p {
        color: rgba(255, 255, 255, 0.86);
    }

    .cta-section p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section .button-primary {
        color: var(--sos-red);
        background: var(--sos-white);
    }

        .cta-section .button-primary:hover {
            background: var(--sos-gold-soft);
        }

    .cta-section .button-secondary {
        color: var(--sos-white);
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.12);
    }

        .cta-section .button-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem clamp(1rem, 4vw, 3rem);
    color: var(--sos-white);
    background: var(--sos-blue-dark);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-logo {
    display: block;
    width: 76px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.site-footer p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem;
    font-weight: 700;
}

    .footer-links a {
        color: var(--sos-white);
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.compact-page-hero {
    padding-bottom: 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
    gap: 1.25rem;
    padding-top: 1rem;
}

.contact-card,
.contact-form {
    padding: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 0.65rem;
}

    .contact-form label {
        font-weight: 800;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 0.8rem 0.9rem;
        border: 1px solid rgba(31, 102, 117, 0.22);
        border-radius: 14px;
        font: inherit;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--sos-blue);
            box-shadow: 0 0 0 0.18rem rgba(27, 117, 188, 0.18);
        }

    .contact-form span {
        color: var(--sos-red-dark);
        font-size: 0.9rem;
    }

.success-message {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--sos-blue-soft);
}

@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-logo {
        width: 84px;
        max-height: 68px;
    }

    .site-nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-section,
    .split-section,
    .contact-layout,
    .problem-layout {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .reverse .feature-list {
        order: 2;
    }

    .steps-grid,
    .features-grid,
    .investment-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        gap: 1rem;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: clamp(2.65rem, 16vw, 4.2rem);
    }

    .hero-section,
    .section,
    .cta-section,
    .page-hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .brand-text {
        display: none;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-proof-row span {
        width: 100%;
        justify-content: center;
    }
}
