.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    color: white;
    text-decoration: none;
}

.nav a:hover {
    opacity: 1;
}


/* HERO */
.hero {
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 54px;
    font-weight: 900;
    max-width: 900px;
    margin: auto;
}

.hero p {
    margin-top: 25px;
    font-size: 20px;
    color: var(--muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}


/* PRICING */
.pricing {
    padding: 120px 0;
    background: var(--bg);
}

.pricing h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
}

.pricing h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-top:20px;
}

.subtext {
    text-align: center;
    margin-top: 10px;
    color: var(--muted);
}

.pricing-card {
    max-width: 750px;
    margin: 50px auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}

.row strong {
    font-size: 28px;
}

.gold {
    color: var(--gold);
    font-weight: 600;
}

.total {
    background: var(--teal);
    color: white;
    border-bottom: none;
}

/* GOVERNANCE REWARDS PROGRAM */

.discount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.discount-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

/* subtle top accent bar */
.discount-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--navy), var(--teal));
}

.discount-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.discount-item h4 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.discount-item strong {
    color: var(--teal);
    font-size: 16px;
    display: inline-block;
    margin-bottom: 10px;
}

.discount-item ul {
    margin-top: 10px;
    padding-left: 18px;
}

.discount-item li {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* PRICING */

.gold {
    color: var(--gold);
    font-weight: 700;
}

.total {
    background: var(--navy);
    color: white;
    border-bottom: none;
}


.row.gold span {
    color: var(--gold);
    font-weight: 600;
}


.info-box {
    max-width: 800px;
    margin: 40px auto 0;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-box h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.maintenance-highlight p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.disclaimer {
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(12, 76, 55, 0.08);
    border-left: 4px solid #1fc28c;
    border-radius: 8px;
    font-size: 14px;
}

/* FEATURES */
.featuresSection {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F8F9FB 100%);
    text-align: center;
    display: flex;
    justify-content: center;
}

.sectionHeader {
    max-width: 750px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.sectionHeader h2 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
}

.sectionHeader p {
    margin-top: 15px;
    font-size: 20px;
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.featureCard {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(1, 53, 118, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featureCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(1, 53, 118, 0.12);
}

.featureCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--navy), var(--teal));
}

.icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.featureCard h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.featureCard p {
    color: var(--muted);
    line-height: 1.5;
}

/* Highlight card (your legal offering) */
.highlightCard {
    border: 1px solid rgba(47, 184, 163, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #f4fffd 100%);
}

/* Stats */

.statsContainer {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F8F9FB 100%);
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.statCard {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(1, 53, 118, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* subtle top accent bar */
.statCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--navy), var(--teal));
}

.statCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(1, 53, 118, 0.12);
}

.statNumber {
    font-size: 54px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -1px;
}

.statLabel {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: #111;
}

.statHint {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

/* CTA */
.cta {
    background: var(--navy);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
}

.cta p {
    margin-top: 15px;
    margin-bottom: 45px;
    opacity: 0.85;
}


/* FOOTER */
footer {
    padding: 60px 0;
    text-align: center;
    color: #777;
}

/* MOBILE */

@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .sectionHeader h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    /* General */

    .nav {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .nav a {
        flex: 1;
        text-align: center;
    }

    /* Hero */

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.15;
    }

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

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    /* Pricing */

    .pricing {
        padding: 80px 0;
    }

    .pricing h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .pricing h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .subtext {
        font-size: 16px;
    }

    .pricing-card {
        margin-top: 35px;
    }

    .row {
        padding: 18px;
        font-size: 15px;
    }

    .row strong {
        font-size: 20px;
    }

    .info-box {
        padding: 25px;
    }

    .discount-item {
        padding: 18px;
    }

    .discount-item h4 {
        font-size: 16px;
    }

    /* Features */

    .featuresSection {
        padding: 80px 0;
    }

    .sectionHeader {
        margin-bottom: 40px;
    }

    .sectionHeader h2 {
        font-size: 32px;
    }

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

    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featureCard {
        padding: 25px;
    }

    .featureCard h3 {
        font-size: 20px;
    }

    /* Stats */

    .statsContainer {
        padding: 80px 0;
    }

    .statsGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .statCard {
        padding: 30px 20px;
    }

    .statNumber {
        font-size: 42px;
    }

    /* CTA */

    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 32px;
        line-height: 1.2;
    }

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

    .cta .btn-secondary {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Footer */

    footer {
        padding: 40px 20px;
        font-size: 14px;
    }
}

/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 30px;
    }

    .pricing h2 {
        font-size: 24px;
    }

    .pricing h1 {
        font-size: 22px;
    }

    .sectionHeader h2 {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .row strong {
        font-size: 24px;
    }
}