@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Source+Sans+3:wght@400;600;700&display=swap");

:root {
    --navy: #0c3558;
    --navy-2: #16456e;
    --teal: #1b8fb8;
    --orange: #ef7a2a;
    --gold: #e3b03a;
    --green: #4caf82;
    --cream: #f7f2e8;
    --ink: #1c2430;
    --muted: #5b6775;
    --line: #e6ddd0;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(12, 53, 88, .08);
    --radius: 18px;
}

/* =========================================================
   Base
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 0;
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    color: var(--teal);
    text-decoration: none;
}

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

.wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-shell {
    min-height: 100vh;
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 242, 232, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    width: min(1400px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: var(--navy);
    text-decoration: none;
}

.nav-logo {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px;
}

.brand-copy {
    min-width: 0;
    line-height: 1.1;
}

.brand-name {
    color: var(--navy);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.brand-tagline {
    margin-top: 7px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

    .desktop-nav a {
        color: var(--navy);
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        transition: color .15s ease;
    }

        .desktop-nav a:hover {
            color: var(--orange);
        }

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff !important;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity .15s ease, transform .15s ease;
}

    .header-cta:hover {
        opacity: .9;
    }

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--navy) !important;
    transition: color .15s ease, border-color .15s ease;
}

    .social-link svg {
        fill: currentColor;
    }

    .social-link:hover {
        color: #0a66c2 !important;
        border-color: #0a66c2;
    }

/* Hidden on desktop */
.mobile-menu-button,
.mobile-nav {
    display: none;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff !important;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
}

    .btn.ghost {
        background: transparent;
        color: var(--navy) !important;
        border: 1px solid var(--navy);
    }

.band .btn.ghost {
    border-color: #fff;
    color: #fff !important;
}

/* =========================================================
   Typography
   ========================================================= */

.kicker {
    color: var(--teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
}

h1,
h2,
h3 {
    font-family: "Fraunces", Georgia, serif;
    color: var(--navy);
    letter-spacing: -.03em;
    margin: 8px 0 12px;
}

h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
}

h2 {
    font-size: 32px;
}

h1:focus,
h1:focus-visible {
    outline: none;
}

p.lead {
    font-size: 19px;
    color: var(--muted);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
    padding: 52px 0 20px;
}

.hero-art {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    padding: 18px;
}

    .hero-art img {
        width: 100%;
        max-height: 420px;
        object-fit: contain;
        margin: 0 auto;
    }

/* =========================================================
   Pills
   ========================================================= */

.pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0 22px;
}

.pill {
    background: #fff;
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

/* =========================================================
   Grids / Cards
   ========================================================= */

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 18px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

    .card h3 {
        margin-top: 0;
        font-size: 22px;
    }

.swatch {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.section {
    padding: 28px 0 52px;
}

/* =========================================================
   Dark Band
   ========================================================= */

.band {
    background: var(--navy);
    color: #fff;
}

    .band h2,
    .band p,
    .band li {
        color: #fff;
    }

/* =========================================================
   Pricing
   ========================================================= */

.price {
    display: flex;
    gap: 24px;
    align-items: center;
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    padding: 22px;
    margin-top: 18px;
}

    .price strong {
        font-size: 42px;
        color: var(--navy);
        font-family: "Fraunces", Georgia, serif;
    }

/* =========================================================
   Lists
   ========================================================= */

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.steps {
    margin: 0;
    padding: 0;
}

    .steps li {
        list-style: none;
        margin: 0 0 14px;
        padding-left: 42px;
        position: relative;
        color: var(--muted);
    }

        .steps li:before {
            content: attr(data-n);
            position: absolute;
            left: 0;
            top: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--navy);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* =========================================================
   Forms
   ========================================================= */

form {
    display: grid;
    gap: 10px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    font: inherit;
    background: #fff;
}

.form-embed {
    padding: 8px;
    overflow: hidden;
}

    .form-embed .pipedriveWebForms,
    .form-embed iframe {
        width: 100%;
        min-height: 720px;
        border: 0;
    }

.pipedriveWebForms {
    min-height: 240px;
}

/* =========================================================
   Education / Pillars
   ========================================================= */

.pillar-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 22px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    margin: 0 0 16px;
    box-shadow: var(--shadow);
}

    .pillar-row img.icon {
        width: 112px;
        height: 112px;
        object-fit: contain;
    }

.paper {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 40px;
    box-shadow: var(--shadow);
    max-width: 820px;
}

    .paper h2 {
        font-size: 26px;
    }

    .paper p {
        color: var(--muted);
    }

.pull {
    border-left: 4px solid var(--orange);
    padding: 4px 0 4px 18px;
    font-family: "Fraunces", Georgia, serif;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.35;
}

/* =========================================================
   Comparison Table
   ========================================================= */

.compare {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

    .compare th,
    .compare td {
        text-align: left;
        padding: 12px 14px;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
    }

    .compare th {
        background: var(--navy);
        color: #fff;
    }

    .compare td.yes {
        color: var(--green);
        font-weight: 700;
    }

    .compare td.no {
        color: #b45309;
    }

/* =========================================================
   Fit Page
   ========================================================= */

.fit-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.fit-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow);
}

    .fit-item h3 {
        margin: 0 0 8px;
        font-size: 20px;
    }

    .fit-item .pain {
        color: var(--muted);
        margin: 0 0 10px;
    }

    .fit-item .answer {
        margin: 0;
        color: var(--ink);
    }

.fit-next-step {
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 40px;
}

    .fit-next-step .kicker {
        color: #9fd4e8;
    }

/* =========================================================
   Home / Conversion Helpers
   ========================================================= */

.home-secondary-button,
.fit-secondary-button {
    margin-left: 8px;
}

.home-modules-grid {
    margin-top: 20px;
}

.home-pillar-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.home-more-link,
.fit-actions {
    margin-top: 18px;
}

.home-card-image {
    width: 100%;
    max-height: 220px;
    margin-bottom: 14px;
    object-fit: cover;
    border-radius: 12px;
}

.about-box-image {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    margin: 0 auto 12px;
}

.about-campus-image {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.education-lead-spaced {
    margin-bottom: 20px;
}

/* =========================================================
   Footer
   ========================================================= */

footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 48px;
    color: var(--muted);
    font-size: 14px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

    .footer-grid .social-link {
        margin-left: 6px;
        vertical-align: middle;
    }

.li-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 600;
}

/* =========================================================
   Responsive Header / Hamburger Menu
   ========================================================= */

@media (max-width: 1050px) {

    .header-inner {
        width: calc(100% - 32px);
        min-height: 76px;
        padding: 9px 0;
    }

    .desktop-nav,
    .desktop-actions {
        display: none;
    }

    .nav-logo {
        width: 52px;
        height: 52px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-tagline {
        margin-top: 5px;
        font-size: 9px;
        letter-spacing: .10em;
    }

    .mobile-menu-button {
        width: 48px;
        height: 48px;
        margin-left: auto;
        padding: 0;
        flex-shrink: 0;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

        .mobile-menu-button span {
            width: 22px;
            height: 2px;
            display: block;
            border-radius: 2px;
            background: var(--navy);
            transition: transform .2s ease, opacity .2s ease;
        }

        .mobile-menu-button.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-button.is-open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-button.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 8px 20px 22px;
        background: var(--cream);
        border-top: 1px solid rgba(12, 53, 88, .06);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 28px rgba(12, 53, 88, .12);
    }

        .mobile-nav.is-open {
            display: block;
        }

        .mobile-nav > a {
            display: block;
            padding: 13px 4px;
            border-bottom: 1px solid var(--line);
            color: var(--navy);
            font-size: 17px;
            font-weight: 700;
        }

            .mobile-nav > a:hover {
                color: var(--orange);
            }

    .mobile-nav-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .mobile-cta {
        width: 100%;
        min-height: 50px;
        padding: 12px 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: var(--orange);
        color: #fff !important;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
    }

    .mobile-linkedin {
        width: 100%;
        min-height: 48px;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        color: var(--navy);
        text-decoration: none;
        font-weight: 700;
    }

        .mobile-linkedin svg {
            fill: currentColor;
        }

    .hero {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-art img {
        max-height: 340px;
    }
}

/* =========================================================
   Tablet / Mobile Page Layout
   ========================================================= */

@media (max-width: 760px) {

    .wrap {
        width: calc(100% - 32px);
    }

    .hero {
        gap: 26px;
        padding-top: 36px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .pillar-row {
        grid-template-columns: 1fr;
    }

    .pillar-row {
        gap: 14px;
    }

        .pillar-row img.icon {
            width: 88px;
            height: 88px;
        }

    .paper {
        padding: 22px;
    }

    .price {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .compare {
        display: block;
        overflow-x: auto;
    }

    .hero-art img {
        max-height: 280px;
    }

    p.lead {
        font-size: 18px;
    }
}

/* =========================================================
   Small Phones
   ========================================================= */

@media (max-width: 520px) {

    .header-inner {
        width: calc(100% - 28px);
        min-height: 70px;
    }

    .nav-logo {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .brand {
        gap: 10px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-tagline {
        max-width: 180px;
        margin-top: 4px;
        font-size: 8px;
        line-height: 1.3;
        letter-spacing: .09em;
        white-space: normal;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .mobile-nav {
        padding: 6px 16px 18px;
    }

        .mobile-nav > a {
            padding: 12px 2px;
            font-size: 16px;
        }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    .section {
        padding: 24px 0 42px;
    }

    .card {
        padding: 18px;
    }

    .home-secondary-button,
    .fit-secondary-button {
        margin-left: 0;
        margin-top: 8px;
    }

    .form-embed {
        padding: 4px;
    }
}
