/* =========================================================
   UNIVERIFY MATURE DESIGN
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #f4f6f8;
    color: #17202a;
    line-height: 1.6;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    height: 72px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #17202a;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.7px;
}

.logo:hover {
    color: #17202a;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3f8;
    color: #173f67;
    border-radius: 8px;
    font-size: 18px;
}

.logo-text {
    color: #173f67;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

nav a:hover {
    color: #173f67;
}

/* =========================================================
   START BUTTON
   ========================================================= */

.start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #173f67;
    color: #ffffff !important;

    padding: 11px 21px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s ease;
}

.start-btn:hover {
    background: #0f2f4f;
    transform: translateY(-1px);
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.nav-toggle {
    display: none;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #173f67;
    border-radius: 5px;
}

.nav-overlay {
    display: none;
}

/* =========================================================
   STEP PAGE
   ========================================================= */

.step-page {
    min-height: calc(100vh - 72px);
    padding: 55px 0 75px;
    background: #f4f6f8;
}

.step-container {
    max-width: 900px;
}

/* =========================================================
   STEP TRACKER
   ========================================================= */

.step-tracker {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.step-pill {
    background: #ffffff;
    color: #7b8794;

    border: 1px solid #dfe4e8;

    padding: 7px 12px;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 600;
}

.step-pill-active {
    background: #173f67;
    color: #ffffff;
    border-color: #173f67;
}

/* =========================================================
   PROGRESS
   ========================================================= */

.progress-bar {
    width: 100%;
    height: 5px;

    background: #e1e6eb;

    border-radius: 10px;

    overflow: hidden;

    margin-bottom: 42px;
}

.progress-fill {
    height: 100%;
    background: #2d6cdf;
    border-radius: 10px;
}

/* =========================================================
   TITLE
   ========================================================= */

.step-container > h1 {
    font-size: 40px;
    line-height: 1.15;

    color: #173f67;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 12px;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.step-container > .lead {
    color: #667085;

    font-size: 16px;

    max-width: 760px;

    margin-bottom: 28px;
}

/* =========================================================
   FORM CARD
   ========================================================= */

.step-card {
    background: #ffffff;

    border: 1px solid #e0e5ea;

    border-radius: 12px;

    padding: 32px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06);
}

/* =========================================================
   FORM ROW
   ========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

    margin-bottom: 24px;
}

/* =========================================================
   FORM GROUP
   ========================================================= */

.form-group {
    width: 100%;
}

.form-group label {
    display: block;

    color: #344054;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 8px;
}

/* =========================================================
   SELECT
   ========================================================= */

.form-group select {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    background: #ffffff;

    border: 1px solid #d5dce3;

    border-radius: 7px;

    color: #1f2937;

    font-size: 14px;

    outline: none;

    cursor: pointer;

    transition: 0.2s ease;
}

.form-group select:hover {
    border-color: #aeb8c3;
}

.form-group select:focus {
    border-color: #2d6cdf;

    box-shadow:
        0 0 0 3px rgba(45, 108, 223, 0.10);
}

/* =========================================================
   INFORMATION BOX
   ========================================================= */

.step-card > div:not(.form-row) {
    background: #f7f9fb;

    border-left: 3px solid #2d6cdf;

    color: #667085;

    padding: 13px 15px;

    margin-bottom: 24px;

    border-radius: 4px;

    font-size: 13px;
}

/* =========================================================
   BUTTON
   ========================================================= */

.btn {
    border: none;

    border-radius: 7px;

    min-height: 48px;

    padding: 0 25px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.btn-primary {
    background: #173f67;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0f2f4f;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(23, 63, 103, 0.18);
}

.btn-full {
    width: 100%;
}

/* =========================================================
   GENERAL CARDS
   ========================================================= */

.card {
    background: #ffffff;

    border: 1px solid #e0e5ea;

    border-radius: 10px;

    padding: 30px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05);
}

/* =========================================================
   INPUTS
   ========================================================= */

input,
textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d5dce3;

    border-radius: 7px;

    background: #ffffff;

    color: #17202a;

    font-size: 14px;

    outline: none;
}

input:focus,
textarea:focus {
    border-color: #2d6cdf;

    box-shadow:
        0 0 0 3px rgba(45, 108, 223, 0.10);
}

/* =========================================================
   TABLE
   ========================================================= */

table {
    width: 100%;
    border-collapse: collapse;

    background: #ffffff;

    border: 1px solid #e0e5ea;
}

th {
    background: #173f67;

    color: #ffffff;

    padding: 14px 16px;

    text-align: left;

    font-size: 13px;
}

td {
    padding: 14px 16px;

    border-bottom: 1px solid #edf0f3;

    color: #475467;

    font-size: 14px;
}

tr:hover td {
    background: #f8fafc;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: #122b40;

    color: #ffffff;

    padding: 50px 0;

    text-align: center;

    margin-top: 0;
}

footer p {
    color: #b7c3ce;

    font-size: 13px;

    margin-top: 8px;
}

footer a {
    color: #ffffff;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .site-header {
        height: 68px;
    }

    .nav {
        height: 68px;
    }

    .logo {
        font-size: 21px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .nav-toggle {
        display: flex;
    }

    nav {
        position: fixed;

        top: 0;
        right: 0;

        width: 290px;
        max-width: 80vw;

        height: 100vh;

        background: #ffffff;

        padding-top: 85px;

        transform: translateX(100%);

        transition: transform 0.3s ease;

        z-index: 1001;

        box-shadow:
            -10px 0 30px rgba(0,0,0,0.12);
    }

    nav.open {
        transform: translateX(0);
    }

    nav ul {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;

        padding: 16px 25px;

        border-bottom: 1px solid #edf0f3;
    }

    nav ul li a.start-btn {
        margin: 18px 25px;

        width: calc(100% - 50px);

        text-align: center;
    }

    .nav-overlay {
        display: block;

        position: fixed;

        inset: 0;

        background: rgba(0,0,0,0.4);

        opacity: 0;

        visibility: hidden;

        transition: 0.2s ease;

        z-index: 1000;
    }

    .nav-overlay.open {
        opacity: 1;

        visibility: visible;
    }

    /* STEP PAGE */

    .step-page {
        padding: 35px 0 60px;
    }

    .step-tracker {
        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 5px;
    }

    .step-pill {
        white-space: nowrap;
    }

    .step-container > h1 {
        font-size: 31px;
    }

    .step-container > .lead {
        font-size: 14px;
    }

    .step-card {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 18px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .container {
        width: 92%;
    }

    .step-container > h1 {
        font-size: 28px;
    }

    .step-card {
        padding: 18px;
    }
}
.buy-products-btn {
    display: inline-block;
    padding: 14px 24px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

.buy-products-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}