/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --primary: #1769ff;
    --primary-dark: #0d4fc7;

    --dark: #101828;
    --text: #344054;
    --muted: #667085;

    --light: #f7f9fc;
    --border: #e4e7ec;

    --white: #ffffff;

    --radius: 14px;

    --shadow:
        0 15px 40px rgba(16, 24, 40, 0.08);
}


/* =========================================================
   GENERAL
========================================================= */

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.narrow {
    max-width: 760px;
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: var(--primary);

    margin-bottom: 18px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 60px;

    text-align: center;
}

h1,
h2,
h3 {
    color: var(--dark);
    line-height: 1.15;
}

h2 {
    font-size: clamp(32px, 5vw, 48px);
}

p {
    color: var(--text);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    border-radius: 10px;

    font-size: 16px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--primary);

    box-shadow:
        0 10px 25px rgba(23, 105, 255, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-light {
    color: var(--primary);
    background: var(--white);
}

.btn-light:hover {
    box-shadow: var(--shadow);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #eef5ff 100%
        );

    padding: 80px 0 100px;

    border-bottom: 1px solid var(--border);
}

.hero-content {

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, 0.75fr);

    gap: 70px;

    align-items: center;
}

.eyebrow {

    display: inline-block;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.7px;

    color: var(--primary);

    margin-bottom: 22px;
}

.hero h1 {

    max-width: 720px;

    font-size:
        clamp(44px, 6vw, 72px);

    letter-spacing: -2.5px;

    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {

    max-width: 650px;

    font-size: 20px;

    line-height: 1.7;

    margin-bottom: 32px;
}

.microcopy {

    margin-top: 14px;

    font-size: 13px;

    color: var(--muted);
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 40px;

    box-shadow: var(--shadow);
}

.card-icon {

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf2ff;

    color: var(--primary);

    font-size: 26px;
    font-weight: 800;

    margin-bottom: 24px;
}

.hero-card h3 {

    font-size: 25px;

    margin-bottom: 12px;
}

.hero-card p {

    color: var(--muted);

    margin-bottom: 28px;
}

.card-line {

    height: 1px;

    background: var(--border);

    margin-bottom: 24px;
}

.mini-stat {

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.mini-stat strong {
    color: var(--dark);
}

.mini-stat span {

    font-size: 14px;

    color: var(--muted);
}


/* =========================================================
   PROBLEM
========================================================= */

.problem {

    text-align: center;
}

.problem h2 {

    margin-bottom: 25px;
}

.problem p {

    font-size: 18px;

    margin-bottom: 16px;
}


/* =========================================================
   SOLUTION
========================================================= */

.solution {

    background: var(--light);
}

.steps {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.step {

    background: var(--white);

    padding: 35px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.step:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.step-number {

    font-size: 14px;

    font-weight: 800;

    color: var(--primary);

    margin-bottom: 22px;
}

.step h3 {

    font-size: 22px;

    margin-bottom: 14px;
}

.step p {

    color: var(--muted);
}


/* =========================================================
   BENEFITS
========================================================= */

.benefit-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

    max-width: 900px;

    margin: auto;
}

.benefit {

    display: flex;

    gap: 18px;

    padding: 28px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);
}

.check {

    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf2ff;

    color: var(--primary);

    font-weight: 800;
}

.benefit h3 {

    font-size: 19px;

    margin-bottom: 5px;
}

.benefit p {

    font-size: 15px;

    color: var(--muted);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 100px 0;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #1769ff,
            #0d4fc7
        );
}

.cta-section h2 {

    color: var(--white);

    margin-bottom: 22px;
}

.cta-section p {

    color: rgba(255, 255, 255, 0.85);

    font-size: 18px;

    margin-bottom: 32px;
}


/* =========================================================
   FORM
========================================================= */

.form-section {

    background: #ffffff;
}

.form-container {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 80px;

    align-items: start;
}

.form-intro h2 {

    margin-bottom: 22px;
}

.form-intro > p {

    font-size: 18px;

    margin-bottom: 30px;
}

.form-note {

    padding: 18px 20px;

    border-left:
        4px solid var(--primary);

    background: var(--light);

    border-radius: 8px;

    font-size: 14px;

    color: var(--muted);
}

.form-note strong {

    display: block;

    color: var(--dark);

    margin-bottom: 4px;
}

.lead-form {

    padding: 40px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow);
}

.form-group {

    margin-bottom: 22px;
}

.form-group label {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 700;

    color: var(--dark);
}

.form-group input,
.form-group textarea {

    width: 100%;

    border:
        1px solid #d0d5dd;

    border-radius: 9px;

    padding: 14px 15px;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {

    resize: vertical;

    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(23, 105, 255, 0.12);
}

.btn-submit {

    width: 100%;

    border: none;

    cursor: pointer;

    font-family: inherit;
}

.privacy-note {

    margin-top: 16px;

    text-align: center;

    font-size: 12px;

    color: var(--muted);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding: 30px 0;

    background: #101828;

    text-align: center;
}

.footer p {

    color: #98a2b3;

    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .hero-content,
    .form-container {

        grid-template-columns: 1fr;

    }

    .hero-card {

        max-width: 600px;

        margin: 0 auto;

    }

    .steps {

        grid-template-columns: 1fr;

    }

    .benefit-grid {

        grid-template-columns: 1fr;

    }

    .hero {

        padding-top: 60px;

    }

    .section {

        padding: 75px 0;

    }

}


@media (max-width: 600px) {

    .hero h1 {

        letter-spacing: -1.5px;

    }

    .hero-description {

        font-size: 18px;

    }

    .btn {

        width: 100%;

    }

    .hero-card {

        padding: 30px;

    }

    .lead-form {

        padding: 25px 20px;

    }

}