/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #1260d8;
    --dark-blue: #071936;
    --navy: #17233d;
    --text: #17233d;
    --muted: #59657a;
    --border: #dfe5ee;
    --light-blue: #f6faff;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1440px, calc(100% - 56px));
    margin: auto;
}


/* ================= REVEAL / COUNTER HELPERS ================= */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ================= SECTION HEADING ================= */

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2 {
    color: var(--dark-blue);
    font-size: 28px;
    line-height: 1.2;
}


/* ================= HERO / FORM ================= */

.assess-hero {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 60%);
    border-bottom: 1px solid var(--border);
    padding: 0px 0 70px;
}

.assess-hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 56px;
    align-items: start;
}

.assess-hero-grid .eyebrow {
    margin-top: 40px;
}

.eyebrow {
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .4px;
    margin-bottom: 14px;
}

.assess-intro h1 {
    font-size: clamp(32px, 3.6vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.hero-description {
    max-width: 480px;
    color: #4a5568;
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.check-list {
    list-style: none;
    margin-bottom: 34px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    font-size: 14.5px;
    color: var(--text);
    margin: 12px 0;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light-blue);
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.avatar-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(9, 30, 70, .12);
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-stat strong {
    display: block;
    font-size: 20px;
    color: var(--dark-blue);
    font-variant-numeric: tabular-nums;
}

.avatar-stat span {
    color: var(--muted);
    font-size: 13px;
}


/* ================= FORM ================= */

.form-wrapper {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 25px 60px rgba(9, 30, 70, .1);
    margin-right: 45px;
}

.form-wrapper h2 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.section-intro {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
}

.form-group label span {
    color: #e5484d;
    margin-left: 2px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d8dfe9;
    border-radius: 10px;
    padding: 0 14px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--text);
    outline: none;
    background: #fbfdff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
    height: 48px;
}

textarea {
    min-height: 100px;
    padding-top: 13px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(18, 96, 216, .1);
}

.submit-btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), #0a3f9e);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 12px 26px rgba(18, 96, 216, .28);
    transition: transform .25s ease, box-shadow .25s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(18, 96, 216, .38);
}

.submit-btn .material-symbols-outlined {
    font-size: 20px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
}

.form-note .material-symbols-outlined {
    font-size: 15px;
}


/* ================= BREADCRUMB ================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 0 0;
    font-size: 14px;
    color: #8792a3;
}

.breadcrumb .material-symbols-outlined {
    font-size: 18px;
}

.breadcrumb a {
    color: #8792a3;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb b {
    font-weight: 400;
    opacity: .6;
}

.breadcrumb span:last-child {
    color: var(--navy);
    font-weight: 500;
}


/* ================= WHAT YOU'LL RECEIVE ================= */

.receive-section {
    padding: 70px 0 70px;
    background: #fff;
}

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

.receive-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(30, 60, 90, .04);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s ease, border-color .35s ease;
}

.receive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 60, 90, .12);
    border-color: transparent;
}

.receive-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--light-blue);
    display: grid;
    place-items: center;
    transition: transform .35s ease, background .35s ease;
}

.receive-card:hover .receive-icon {
    transform: scale(1.1) rotate(-5deg);
    background: #dfeaff;
}

.receive-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--blue);
}

.receive-card h3 {
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.receive-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}


/* ================= TESTIMONIAL + MAP ================= */

.proof-section {
    padding: 0 0 90px;
}

.proof-box {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(9, 30, 70, .07);
}

.proof-quote {
    padding: 44px 48px;
    position: relative;
    background: #fff;
}

.quote-mark {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #06b6d4);
    margin-bottom: 20px;
    box-shadow: 0 10px 22px rgba(18, 96, 216, .3);
}

.quote-mark svg {
    width: 20px;
    height: 20px;
}

.proof-quote>p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--dark-blue);
    max-width: 480px;
    margin-bottom: 18px;
}

.stars {
    color: var(--blue);
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-author .author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.proof-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-author strong {
    display: block;
    font-size: 14px;
    color: var(--dark-blue);
}

.proof-author small {
    color: var(--muted);
    font-size: 12px;
}

.proof-map {
    position: relative;
    background: var(--light-blue);
    min-height: 220px;
}

.map-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#c3d6f2 1.4px, transparent 1.4px);
    background-size: 16px 16px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, #000 55%, transparent 80%);
}

.map-pin {
    position: absolute;
    top: 32%;
    left: 62%;
    width: 46px;
    height: 46px;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--blue);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(18, 96, 216, .35);
}

.map-pin .material-symbols-outlined {
    transform: rotate(-45deg);
    color: #fff;
    font-size: 20px;
}


/* ================= TRUST STRIP ================= */

.trust-strip-section {
    padding: 0 0 40px;
}

.trust-strip {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 3px 12px rgba(30, 60, 90, .04);
    overflow: hidden;
}

.trust-strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 24px 16px;
    border-left: 1px solid var(--border);
    transition: background .25s ease;
}

.trust-strip-item:first-child {
    border-left: 0;
}

.trust-strip-item:hover {
    background: var(--light-blue);
}

.trust-strip-item .material-symbols-outlined {
    font-size: 26px;
    color: var(--blue);
    flex-shrink: 0;
}

.trust-strip-item strong {
    display: block;
    font-size: 13.5px;
    color: var(--dark-blue);
}

.trust-strip-item small {
    color: var(--muted);
    font-size: 11px;
}


/* ================= CTA ================= */

.assess-cta-section {
    padding: 0 0 50px;
}

.assess-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 44px 48px;
    background: linear-gradient(120deg, var(--dark-blue), #0a3f9e 55%, var(--blue));
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(9, 30, 70, .18);
}

.assess-cta-box::before,
.assess-cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.assess-cta-box::before {
    width: 240px;
    height: 240px;
    background: rgba(6, 182, 212, .28);
    top: -90px;
    right: 30px;
}

.assess-cta-box::after {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .1);
    bottom: -100px;
    left: 20%;
}

.assess-cta-icon,
.assess-cta-content,
.assess-cta-box .cta-buttons {
    position: relative;
    z-index: 1;
}

.assess-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.assess-cta-icon .material-symbols-outlined {
    font-size: 30px;
    color: #fff;
}

.assess-cta-content {
    flex: 1;
    min-width: 260px;
}

.assess-cta-content h2 {
    font-size: 23px;
    color: #fff;
    margin-bottom: 6px;
}

.assess-cta-content p {
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    max-width: 460px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.assess-cta-box .btn-primary {
    background: #fff;
    color: var(--dark-blue);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.assess-cta-box .btn-primary:hover {
    background: #f1f6ff;
    transform: translateY(-2px);
}

.assess-cta-box .btn-outline {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    background: transparent;
}

.assess-cta-box .btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: white;
    transform: translateY(-2px);
}

.play {
    border: 1px solid currentColor;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    flex-shrink: 0;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1080px) {

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

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

    .proof-box {
        grid-template-columns: 1fr;
    }

    .proof-map {
        min-height: 160px;
    }

    .trust-strip {
        flex-wrap: wrap;
    }

    .trust-strip-item {
        flex: 1 1 50%;
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .form-wrapper {
        margin-right: 0;
    }
}

@media (max-width: 700px) {

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 28px 24px;
    }

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

    .trust-strip-item {
        flex: 1 1 100%;
    }

    .assess-cta-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}