
/* =========================================================
   GLOBAL
========================================================= */
:root {
    --navy: #101B2A;
    --navy-2: #162537;
    --blue: #2AA6FF;
    --blue-dark: #087BC1;
    --blue-light: #EAF6FF;
    --orange: #F59E0B;
    --text: #17212B;
    --text-light: #617181;
    --border: #DCE3EA;
    --bg: #F6F8FA;
    --white: #FFFFFF;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}
/* =========================================================
   HEADER
========================================================= */
.header {
    height: 76px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    background: var(--navy);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-name {
    color: var(--blue);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 2px;
}
.since {
    padding: 4px 10px;
    border: 1px solid rgba(245,158,11,0.65);
    border-radius: 20px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
}
.nav {
    display: flex;
    gap: 30px;
    color: #C4CFDA;
    font-size: 13px;
}
.nav a:hover {
    color: var(--blue);
}
/* =========================================================
   HERO
========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 110px;
    background: var(--navy);
    color: var(--white);
}
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(42,166,255,0.13);
    border-radius: 50%;
    right: -250px;
    top: -280px;
}
.hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(42,166,255,0.09);
    border-radius: 50%;
    right: -130px;
    bottom: -280px;
}
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}
.eyebrow {
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.08;
    letter-spacing: -2px;
}
.hero h1 span {
    color: var(--blue);
}
.hero-lead {
    max-width: 680px;
    margin: 27px 0 0;
    color: #C7D2DD;
    font-size: 19px;
    line-height: 1.65;
}
.hero-actions {
    margin-top: 38px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}
.button-primary {
    background: var(--blue);
    color: var(--white);
}
.button-primary:hover {
    background: #1595E8;
}
.button-secondary {
    border: 1px solid #526274;
    color: #FFFFFF;
}
.button-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}
/* =========================================================
   INTRO
========================================================= */
.intro {
    padding: 90px 0 60px;
    text-align: center;
}
.intro h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
}
.intro p {
    max-width: 700px;
    margin: 18px auto 0;
    color: var(--text-light);
    font-size: 16px;
}
/* =========================================================
   PARTNERSHIP MODELS
========================================================= */
.models-section {
    padding: 25px 0 100px;
    background: var(--bg);
}
.models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.model {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 34px 30px 32px;
    position: relative;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}
.model:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(16,27,42,0.08);
}
.model.featured {
    border: 2px solid var(--blue);
}
.model-badge {
    position: absolute;
    top: -13px;
    left: 25px;
    padding: 4px 11px;
    border-radius: 20px;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.model-number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.model h3 {
    margin: 9px 0 12px;
    font-size: 24px;
    line-height: 1.2;
}
.model-intro {
    min-height: 72px;
    color: var(--text-light);
    font-size: 13px;
}
.model-bestfor {
    font-size:12px;
    color:var(--blue-dark);
    margin:-4px 0 14px 0;
    font-weight:700;
}
.model-divider {
    height: 1px;
    background: var(--border);
    margin: 22px 0;
}
.model h4 {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #697887;
}
.model ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.model li {
    position: relative;
    padding-left: 18px;
    margin: 9px 0;
    font-size: 13px;
}
.model li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}
/* =========================================================
   COMPARISON
========================================================= */
.comparison-section {
    padding: 100px 0;
}
.section-heading {
    max-width: 700px;
    margin-bottom: 40px;
}
.section-heading .eyebrow {
    margin-bottom: 10px;
}
.section-heading h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
}
.section-heading p {
    margin: 15px 0 0;
    color: var(--text-light);
}
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
}
.comparison {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: var(--white);
}
.comparison th,
.comparison td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.comparison th {
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.5px;
}
.comparison th:first-child {
    width: 32%;
}
.comparison tr:last-child td {
    border-bottom: none;
}
.check {
    color: var(--blue-dark);
    font-size: 17px;
    font-weight: 700;
}
.optional {
    color: var(--orange);
    font-weight: 700;
}
/* =========================================================
   WHAT WE SUPPORT
========================================================= */
.support-section {
    padding: 95px 0;
    background: var(--bg);
}
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.support-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 26px;
}
.support-card-number {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 700;
}
.support-card h3 {
    margin: 15px 0 8px;
    font-size: 18px;
}
.support-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
}
/* =========================================================
   WHO IT IS FOR
========================================================= */
.audience {
    padding: 100px 0;
}
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.audience h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
}
.audience-lead {
    margin-top: 18px;
    color: var(--text-light);
}
.audience-list {
    margin-top: 27px;
}
.audience-item {
    display: flex;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.audience-item:last-child {
    border-bottom: none;
}
.audience-check {
    color: var(--blue);
    font-weight: 700;
}
/* =========================================================
   PROCESS
========================================================= */
.process {
    padding: 90px 0;
    background: var(--navy);
    color: var(--white);
}
.process-heading {
    text-align: center;
}
.process-heading h2 {
    margin: 0;
    font-size: 36px;
}
.process-heading p {
    margin: 12px auto 0;
    max-width: 600px;
    color: #AEBCCC;
}
.steps {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.step {
    text-align: center;
}
.step-number {
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}
.step h3 {
    margin: 0;
    font-size: 16px;
}
.step p {
    margin: 8px 0 0;
    color: #AEBCCC;
    font-size: 12px;
}
/* =========================================================
   FAQ
========================================================= */
.faq {
    padding: 100px 0;
}
.faq-list {
    max-width: 850px;
    margin: 40px auto 0;
}
details {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
summary {
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}
summary::after {
    content: "+";
    float: right;
    color: var(--blue);
    font-size: 20px;
}
details[open] summary::after {
    content: "−";
}
details p {
    max-width: 780px;
    margin: 13px 0 0;
    color: var(--text-light);
    font-size: 13px;
}
/* =========================================================
   FINAL CTA
========================================================= */
.final-cta {
    padding: 95px 0;
    background: var(--blue-light);
    text-align: center;
}
.final-cta h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.2;
    color: var(--navy);
}
.final-cta p {
    max-width: 650px;
    margin: 17px auto 30px;
    color: var(--text-light);
}
.final-cta .button {
    background: var(--navy);
    color: var(--white);
}
/* =========================================================
   FOOTER
========================================================= */
.footer {
    padding: 30px 0;
    background: var(--navy);
    color: #8E9CAC;
    font-size: 11px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
    .models {
        grid-template-columns: 1fr;
    }
    .support-grid {
        grid-template-columns: 1fr;
    }
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
    .nav {
        display: none;
    }
}
@media (max-width: 600px) {
    .container {
        width: min(100% - 32px, 1160px);
    }
    .hero {
        padding: 75px 0 80px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-lead {
        font-size: 16px;
    }
    .intro,
    .comparison-section,
    .support-section,
    .audience,
    .faq {
        padding: 70px 0;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
    }
}
