:root {
    --navy: #0b2b45;
    --blue: #0875a5;
    --teal: #27b6b0;
    --green: #87c83d;
    --text-soft: #55779b;
    --mint: #eefdfb;
    --border: #dceff3;
    --white: #ffffff;
    --shadow: 0 16px 36px rgba(11, 43, 69, 0.11);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--navy);
    background: #ffffff;
    line-height: 1.55;
}

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

/* NAVBAR */
.navbar {
    height: 78px;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-bottom: 1px solid #e8f1f4;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.brand img,
.footer-brand img {
    width: 140px;
    height: 100px;
    object-fit: contain;
}

.brand span {
    font-size: 14px;
    color: var(--blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 18px;
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--teal);
}

.login-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 14px 28px rgba(8, 117, 165, 0.16);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 999px;
    border: 2px solid var(--blue);
    color: var(--blue);
    font-weight: 800;
    font-size: 16px;
    background: white;
}

.white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 999px;
    background: white;
    color: var(--blue);
    font-weight: 800;
    font-size: 17px;
}

/* GENERAL */
.section {
    padding: 60px 42px;
}

.soft-section {
    background: linear-gradient(180deg, #ffffff, var(--mint));
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 78px);
}

.badge,
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 999px;
    background: #eafffb;
    border: 1px solid #c8eeee;
    color: var(--blue);
    font-weight: 800;
    font-size: 15px;
}

.hero h1 {
    margin-top: 34px;
    font-size: clamp(42px, 4.1vw, 64px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    margin-top: 26px;
    max-width: 700px;
    font-size: 21px;
    color: var(--text-soft);
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.stats {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #dceff3;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stats strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    color: var(--blue);
}

.stats div:nth-child(2) strong,
.stats div:nth-child(3) strong {
    color: var(--green);
}

.stats span {
    color: var(--text-soft);
    font-size: 15px;
}

.hero-image-card {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}

.hero-image-card img {
    width: 100%;
    min-height: 410px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-card span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.floating-card small {
    color: var(--text-soft);
    font-size: 13px;
}

.floating-card strong {
    display: block;
    font-size: 23px;
}

.top-card {
    top: -22px;
    left: -22px;
}

.bottom-card {
    right: -18px;
    bottom: -22px;
}

/* SECTION HEADINGS */
.section-heading {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 52px;
}

.section-heading h2 {
    margin-top: 18px;
    font-size: clamp(36px, 3.5vw, 54px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
}

.section-heading p {
    margin-top: 14px;
    font-size: 21px;
    color: var(--text-soft);
}

/* GRIDS */
.features-grid,
.roles-grid,
.plans-grid,
.why-grid {
    display: grid;
    gap: 26px;
}

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

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

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

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

/* CARDS */
.feature-card,
.role-card,
.plan-card,
.why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 22px rgba(11, 43, 69, 0.04);
}

.feature-card {
    min-height: 225px;
}

.role-card,
.why-card {
    background: #f7fffe;
}

.role-card.active {
    border: 2px solid var(--teal);
}

.icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 26px;
    margin-bottom: 24px;
}

.icon.blue {
    background: linear-gradient(135deg, var(--blue), #0f91a6);
}

.icon.teal {
    background: linear-gradient(135deg, var(--teal), #5fd5ca);
}

.icon.green {
    background: linear-gradient(135deg, #61c47c, var(--green));
}

.feature-card h3,
.role-card h3,
.why-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.feature-card p,
.role-card p,
.why-card p {
    color: var(--text-soft);
    font-size: 18px;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service-card {
    min-height: 250px;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card::before,
.facility-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,43,69,0.12), rgba(11,43,69,0.65));
}

.service-card > *,
.facility-card > * {
    position: relative;
    z-index: 1;
}

.service-card span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    margin-bottom: 16px;
    font-size: 24px;
}

.service-card h3 {
    font-size: 21px;
}

/* FACILITIES */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.facility-card {
    min-height: 280px;
    border-radius: 24px;
    padding: 34px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.facility-card h3 {
    font-size: 28px;
}

.facility-card p {
    font-size: 19px;
}

/* REGISTRATION */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    text-align: center;
}

.step strong {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: white;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    font-size: 27px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-soft);
    font-size: 18px;
}

/* PLANS */
.plan-card {
    position: relative;
    padding: 36px;
}

.plan-card h3 {
    font-size: 25px;
    margin-bottom: 18px;
}

.plan-card h4 {
    font-size: 48px;
    color: var(--blue);
    margin-bottom: 28px;
    line-height: 1.05;
}

.plan-card h4 span {
    font-size: 17px;
    color: var(--text-soft);
}

.plan-card ul {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-bottom: 34px;
    color: var(--text-soft);
    font-size: 17px;
}

.plan-card.popular {
    color: white;
    background: linear-gradient(180deg, var(--blue), var(--teal));
    transform: translateY(-14px);
    border: 2px solid #075f89;
}

.plan-card.popular h4,
.plan-card.popular ul,
.plan-card.popular h4 span {
    color: white;
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    padding: 8px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

.full {
    width: 100%;
}

/* CTA */
.final-cta {
    padding: 90px 42px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--teal), var(--green));
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    font-size: clamp(36px, 3.5vw, 54px);
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 24px;
    margin-bottom: 34px;
}

/* FOOTER */
.footer {
    background: var(--navy);
    color: white;
    padding: 38px 42px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
    margin-bottom: 10px;
}

.footer p,
.footer a {
    color: #c8d9e7;
    font-size: 14px;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer a {
    display: block;
    margin-bottom: 7px;
}

.footer-bottom {
    padding-top: 18px;
    text-align: center;
    color: #c8d9e7;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 46px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer p,
.footer a {
    color: #c8d9e7;
    font-size: 16px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer a {
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 28px;
    text-align: center;
    color: #c8d9e7;
    font-size: 16px;
}

/* TABLET */
@media (max-width: 1100px) {
    .navbar {
        padding: 0 24px;
    }

    .nav-links {
        gap: 22px;
        font-size: 16px;
    }

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

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

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

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

/* PHONE */
@media (max-width: 720px) {
    .navbar {
        height: auto;
        padding: 16px 18px;
        flex-wrap: wrap;
        gap: 14px;
    }

    .brand img {
        width: 30px;
        height: 30px;
    }

    .brand span {
        font-size: 13px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        gap: 18px;
        font-size: 15px;
        padding-bottom: 6px;
    }

    .login-btn {
        padding: 11px 16px;
        font-size: 14px;
    }

    .section {
        padding: 52px 18px;
    }

    .hero {
        gap: 34px;
    }

    .hero h1 {
        margin-top: 28px;
        font-size: 38px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn,
    .outline-btn,
    .white-btn {
        width: 100%;
        font-size: 16px;
    }

    .stats {
        gap: 24px;
    }

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

    .hero-image-card img {
        min-height: 300px;
    }

    .floating-card {
        position: static;
        margin-top: 12px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 18px;
    }

    .features-grid,
    .roles-grid,
    .services-grid,
    .facility-grid,
    .steps-grid,
    .plans-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .role-card,
    .plan-card,
    .why-card {
        padding: 26px;
    }

    .service-card,
    .facility-card {
        min-height: 240px;
    }

    .plan-card.popular {
        transform: none;
    }

    .footer {
    padding: 34px 18px 20px;
}    
}
/* CONTACT PAGE */
.contact-page {
    min-height: 100vh;
    padding: 28px 64px 56px;
    background:
        radial-gradient(circle at 84% 26%, rgba(8, 117, 165, 0.08), transparent 18%),
        linear-gradient(135deg, #ffffff 0%, #f2fffd 100%);
}

.contact-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #c9e5ee;
    background: white;
    color: var(--blue);
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(11, 43, 69, 0.06);
}

.contact-header {
    max-width: 720px;
    margin: 42px auto 46px;
    text-align: center;
}

.contact-header img {
    width: 140px;
    height: 66px;
    object-fit: contain;
    margin-bottom: 18px;
}

.contact-header h1 {
    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 14px;
}

.contact-header p {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.55;
}

.contact-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(11, 43, 69, 0.08);
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.blue-soft {
    background: linear-gradient(135deg, #e6f7ff, #effdfb);
}

.green-soft {
    background: linear-gradient(135deg, #e6f7ff, #ccfff1);
}

.mint-soft {
    background: linear-gradient(135deg, #ccfff1, #f2fffd);
}

.contact-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    font-size: 20px;
    font-weight: 900;
}

.contact-icon.green {
    background: linear-gradient(135deg, #61c47c, var(--green));
}

.contact-info-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-item a {
    display: inline-block;
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

.contact-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid #b8d9e7;
    border-radius: 14px;
    background: #f8fcfd;
    padding: 0 16px;
    outline: none;
    color: var(--navy);
    font-size: 15px;
}

.contact-form-card textarea {
    min-height: 150px;
    padding: 16px;
    resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #8ca1b3;
}

.contact-submit-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: white;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(8, 117, 165, 0.16);
}

.contact-response-note {
    margin-top: 18px;
    text-align: center;
    color: var(--text-soft);
    font-size: 13px;
}

@media (max-width: 950px) {
    .contact-page {
        padding: 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-page {
        padding: 18px;
    }

    .contact-header {
        margin-top: 28px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 22px;
    }

    .contact-info-item {
        align-items: flex-start;
    }
}
.contact-messages {
    max-width: 1180px;
    margin: 0 auto 24px;
}

.message-alert {
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
}

.message-alert.success {
    color: #0b6b45;
    background: #e9fff5;
    border: 1px solid #b8f0d3;
}

.message-alert.error {
    color: #9b1c1c;
    background: #fff0f0;
    border: 1px solid #ffc4c4;
}
/* PRIVACY / LEGAL PAGE */
.legal-page {
    min-height: 100vh;
    padding: 22px 64px 52px;
    background:
        radial-gradient(circle at 84% 34%, rgba(8, 117, 165, 0.08), transparent 18%),
        linear-gradient(135deg, #ffffff 0%, #f2fffd 100%);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #c9e5ee;
    background: white;
    color: var(--blue);
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(11, 43, 69, 0.06);
}

.legal-header {
    max-width: 760px;
    margin: 18px auto 36px;
    text-align: center;
}

.legal-header img {
    width: 105px;
    height: 105px;
    object-fit: contain;
    margin-bottom: 4px;
}

.legal-header h1 {
    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 12px;
}

.legal-header p {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.legal-header small {
    color: var(--text-soft);
    font-size: 13px;
}

.privacy-highlight {
    max-width: 960px;
    margin: 0 auto 28px;
    border-radius: 18px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 16px 34px rgba(11, 43, 69, 0.16);
}

.privacy-highlight-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255,255,255,0.18);
    display: grid;
    place-items: center;
    font-size: 28px;
}

.privacy-highlight h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

.privacy-highlight p {
    font-size: 15px;
    line-height: 1.5;
}

.legal-card {
    max-width: 960px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px 42px;
    box-shadow: 0 14px 34px rgba(11, 43, 69, 0.08);
}

.legal-block {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 30px 0;
    border-bottom: 1px solid #dceff3;
}

.legal-block:first-child {
    padding-top: 0;
}

.legal-block:last-child,
.legal-simple-block:last-child {
    border-bottom: none;
}

.legal-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.legal-icon.blue {
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.legal-icon.green {
    background: linear-gradient(135deg, #61c47c, var(--green));
}

.legal-block h2,
.legal-simple-block h2 {
    font-size: 22px;
    margin-bottom: 14px;
}

.legal-block p,
.legal-simple-block p,
.legal-block li {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.legal-block strong,
.legal-simple-block strong {
    color: var(--navy);
}

.legal-block ul {
    margin-left: 22px;
    margin-top: 8px;
}

.legal-simple-block {
    padding: 30px 0;
    border-bottom: 1px solid #dceff3;
}

.legal-contact-box {
    margin-top: 14px;
    padding: 20px 22px;
    border: 1px solid #c9e5ee;
    border-radius: 16px;
    background: #f8fcfd;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.legal-contact-box a {
    color: var(--blue);
    font-weight: 900;
}

.legal-bottom-action {
    text-align: center;
    margin-top: 28px;
}

.legal-return-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: white;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(8, 117, 165, 0.16);
}

/* Legal responsive */
@media (max-width: 800px) {
    .legal-page {
        padding: 18px;
    }

    .legal-card {
        padding: 28px 24px;
    }

    .privacy-highlight {
        align-items: flex-start;
        padding: 22px;
    }

    .legal-block {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .legal-header img {
        width: 88px;
        height: 88px;
    }
}
/* =========================
   HERO FEATURE STATS
========================= */

.hero-feature-stats {
    gap: 18px;
    align-items: stretch;
}

.hero-feature-stats div {
    flex: 1 1 190px;
    min-height: 118px;
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid #ccecf1;
    background: linear-gradient(135deg, #ffffff, #f3fffd);
    box-shadow: 0 12px 28px rgba(11, 43, 69, 0.06);
    transition: 0.22s ease;
}

.hero-feature-stats div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(8, 117, 165, 0.12);
    border-color: #9ddfe7;
}

.hero-feature-stats strong {
    font-size: 17px;
    line-height: 1.25;
    color: var(--blue);
    margin-bottom: 8px;
}

.hero-feature-stats div:nth-child(2) strong {
    color: var(--teal);
}

.hero-feature-stats div:nth-child(3) strong {
    color: var(--green);
}

.hero-feature-stats span {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-soft);
}