:root {
    --primary: #169349;
    --primary-dark: #37AA67;
    --secondary: #153D9A;
    --background: linear-gradient(135deg, #f4ffe9 0%, #b6e0f5 100%);
    --dark: #0A0E1A;
    --light: #F2FBF6;
    --gray: #64748b;
    --light-gray: #e2e8f0;
}

body {
    font-family: "Jost", sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
}

h2 {
    font-weight: 600;
    font-size: 36px !important;
}

h3 {
    font-size: 30px;
    font-weight: 600;
}

h5 {
    font-size: 20px !important
}

p {
    color: var(--gray) ;
    line-height: 1.75;
    margin-top: 20px;
    font-weight: 300;
    font-size: 18px !important;
}

.light-bg {
    /* background-color: #f7f7f8; */
    background-color: #E0EAFF;
}

.section-padding {
    padding: 60px 0 !important;
}

.header-top {
    background-color: var(--primary);
    font-size: 14px;
}

.header-top a,
.header-top i {
    color: white;
    text-decoration: none;
}

/* Navbar */
.custom-navbar {
    background-color: transparent;
    box-shadow: unset;
    padding: 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    transition: transform var(--transition-speed);
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* REMOVE display: block; from this */
.dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed);
    /* display: block; âŒ remove this */
}

/* Add this to re-enable animation ONLY when visible */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-speed);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--hover-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: white;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* ─── HERO ─── */
.hero {
    /* min-height: 100vh; */
    background: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* animated mesh bg */
.hero-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 75% 40%, rgb(22 147 73 / 33%) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 20% 70%, rgb(55 170 103 / 43%) 0%, transparent 65%), radial-gradient(ellipse 40% 35% at 55% 85%, rgba(55, 170, 103, .15) 0%, transparent 60%);
    animation: meshPulse 8s ease-in-out infinite alternate;
}

@keyframes meshPulse {
    0% {
        opacity: .8;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* floating grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 147, 73, .15);
    border: 1px solid rgba(22, 147, 73, .35);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .8rem;
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--primary-dark);
    border-radius: 50%;
    animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.06;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
}

.hero h1 .accent {
    color: var(--primary-dark);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 44px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-hero:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(22, 147, 73, .4);
}

.btn-outline-hero {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    padding: 14px 32px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-hero:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* hero stats bar */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    flex-wrap: wrap;
}

.hero-stat-num {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat-num span {
    color: var(--primary-dark);
}

.hero-stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
}

/* hero visual card */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-card-main {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
}

.genome-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 80px;
    margin: 20px 0;
}

.genome-bar {
    flex: 1;
    background: linear-gradient(to top, var(--green), var(--primary-dark));
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out forwards;
    transform-origin: bottom;
    opacity: 1;
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
        opacity: 1;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ─── MARQUEE ─── */
.marquee-section {
    background: var(--secondary);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.marquee-item .sep {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.dna-helix {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .15;
    width: 120px;
}

.floating-pill {
    background: rgba(22, 147, 73, .2);
    border: 1px solid rgba(22, 147, 73, .4);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: .78rem;
    color: var(--primary-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.floating-pill-2 {
    background: rgba(21, 61, 154, .2);
    border: 1px solid rgba(21, 61, 154, .5);
    color: #7BA3FF;
}




.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.floating-card.top {
    top: 20px;
    right: 30px;
}

.floating-card.bottom {
    bottom: 40px;
    left: 20px;
}

.floating-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.floating-card .content h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.floating-card .content p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}


/* ─── MISSION ─── */
.mission-section {
    background: var(--light);
    padding: 100px 0;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.mission-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 147, 73, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    left: -100px;
    top: -100px;
}

.mission-quote {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.5rem) !important;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    letter-spacing: -.5px;
}

.mission-quote .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 24px;
    font-weight: 300;
}

.stat-card {
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.stat-card.light {
    background: #fff;
    box-shadow: 0 4px 30px rgba(22, 147, 73, 0.08);
}

.stat-card.navy {
    background: var(--navy);
}

.stat-card.dark {
    background: var(--dark);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    text-align: left;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
}

.stat-number.green {
    color: var(--green);
}

.stat-number.mint {
    color: var(--mint);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 6px;
}

.white-muted {
    color: rgba(255, 255, 255, 0.5);
}

.icon {
    font-size: 2rem;
}

.stat-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.stat-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

.btn-story {
    display: inline-block;
    margin-top: 36px;
    background: var(--secondary);
    color: #fff;
    border-radius: 8px;
    padding: 14px 32px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: all .25s;
}

.btn-story:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21, 61, 154, .3);
}

/* ─── EXOME / FEATURES SPLIT ─── */
.split-section {
    padding: 100px 0;
    background: #fff;
}

.split-section.alt {
    background: var(--dark);
}

.split-section.alt .section-heading {
    color: #fff;
}

.split-section.alt .section-tag {
    background: rgba(22, 147, 73, .2);
}

.split-section.alt p {
    color: rgba(255, 255, 255, .6);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: .92rem;
    color: var(--gray);
    line-height: 1.6;
}

.split-section.alt .feature-list li {
    border-color: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feat-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* dashboard mockup */
.dash-mockup {
    background: #1A2235;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
}

.dash-top {
    background: #111827;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-body {
    padding: 24px;
}

.dash-metric {
    background: rgba(255, 255, 255, .05);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}

.dash-metric-label {
    font-size: .7rem;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.dash-metric-val {
    font-family: 'Jost', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-top: 4px;
}

.dash-metric-val span {
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
}

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    margin-top: 12px;
}

.mini-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: rgba(55, 170, 103, .25);
}

.mini-bar.active {
    background: var(--primary-dark);
}

/* phone mockup */
.phone-mockup {
    width: 260px;
    background: #1A2235;
    border-radius: 36px;
    border: 6px solid #2A3550;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
    margin: 0 auto;
}

.phone-screen {
    padding: 20px 16px;
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 18px;
    font-size: .78rem;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 90%;
}

.chat-bubble.incoming {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .8);
    border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
    background: var(--primary);
    color: #fff;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

/* ─── PRECISION MEDICINE ─── */

.section-text {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.75;
    margin-top: 20px;
    font-weight: 400;
}

.feat-title {
    color: var(--dark);
}

.btn-primary-hero {
    font-size: .88rem;
    padding: 12px 24px;
}

/* Dashboard dots */
.dash-dot.red { background: #FF5F57; }
.dash-dot.yellow { background: #FEBC2E; }
.dash-dot.green { background: #28C840; }

.dash-title {
    color: rgba(255,255,255,.3);
    font-size: .75rem;
    margin-left: 12px;
}

/* Mini bars heights */
.mini-bar.h50 { height: 50%; }
.mini-bar.h60 { height: 60%; }
.mini-bar.h70 { height: 70%; }
.mini-bar.h80 { height: 80%; }
.mini-bar.h85 { height: 85%; }
.mini-bar.h90 { height: 90%; }
.mini-bar.h100 { height: 100%; }

/* Metrics */
.metric-green {
    margin-top: 10px;
    font-size: .7rem;
    color: var(--mint);
}

.metric-muted {
    margin-top: 10px;
    font-size: .7rem;
    color: rgba(255,255,255,.35);
}

/* Chromosome box */
.chromosome-box {
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    padding: 16px;
    margin-top: 12px;
}

.chromosome-title {
    font-size: .72rem;
    color: rgba(255,255,255,.35);
    margin-bottom: 10px;
}

.chromosome-wrap {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

/* QC box */
.qc-box {
    background: rgba(22,147,73,.12);
    border-radius: 10px;
    padding: 14px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qc-icon {
    font-size: 1.3rem;
}

.qc-title {
    font-size: .78rem;
    color: rgba(255,255,255,.8);
    font-weight: 600;
}

.qc-sub {
    font-size: .7rem;
    color: rgba(255,255,255,.35);
    margin-top: 2px;
}

.precision-section {
    background: var(--light);
    padding: 100px 0;
}

.pm-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    /* padding: 28px 0; */
    border-bottom: 1px solid var(--border);
    opacity: 1;
    transform: translateY(20px);
}

.pm-step:last-child {
    border-bottom: none;
}

.pm-step-num {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    flex-shrink: 0;
}

.pm-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.pm-step p {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.65;
    font-weight: 400;
}

.pm-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(21, 61, 154, .15);
}

.pm-img-placeholder {
    height: 480px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e5adf 40%, var(--primary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 12px;
}

.pm-img-placeholder .big-icon {
    font-size: 4rem;
    opacity: .8;
}


/* Features Section */
.features {
    /* background-color: white; */
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: -1px 2px 30px rgb(0 0 0 / 9%);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 1.6rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
}

.feature-card img {
    margin-top: 20px;
    margin: 0px auto;
    display: block;
    width: 100%;
}

/* Dashboard Section */
.dashboard-section {
    background-color: var(--light);
    position: relative;
}

.dashboard-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.dashboard-content h6,
.dashboard-content h5,
.dashboard-content h4 {
    color: var(--secondary);
    font-weight: 500
}

.dashboard-content p {
    color: var(--gray);
    /* margin-bottom: 30px; */
    /* max-width: 500px; */
}

.dashboard-content ul li {
    font-size: 14px;
    color: var(--gray);
}

.dashboard-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-badges {
    display: grid;
    padding-top: 30px;
    border-top: 1px solid #dfdfdf;
    grid-template-columns: 1fr 1fr;
}

.stat-badge {
    /* background: #f7f7f8; */
    border-radius: 30px;
    /* padding: 20px; */
    align-items: center;
    margin-right: 15px;
    margin-bottom: 15px;
    /* box-shadow: 0 5px 15px rgb(0 0 0 / 19%); */
    text-align: center;
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    align-items: self-start;
    gap: 12px;
}

.stat-badge .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0badaf;
    margin: 0 auto 10px;
}

.stat-badge .icon i {
    font-size: 20px
}

.stat-badge p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    text-align: start;
}

/* Steps Section */
.steps-section {
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray);
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    /* margin-bottom: 12px; */
}

.step-content p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 14px !important;
}

/* Analytics Section */
.analytics-section {
    background-color: var(--light);
}

.chart-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.chart-filters {
    display: flex;
    gap: 10px;
}

.chart-filter {
    background: var(--light);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-filter.active {
    background: var(--primary);
    color: white;
}

.chart-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.chart-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.chart-card {
    position: relative;
    /* To position chart-content correctly */
    min-height: 260px;
    /* Prevent layout jump */
}

.chart-filter {
    display: inline-block;
    padding: 5px 12px;
    cursor: pointer;
    background: #eee;
    border-radius: 4px;
    margin-right: 5px;
    font-weight: 500;
}

.chart-filter.active {
    background: var(--secondary);
    color: #fff;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    position: absolute;
    top: -40px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-gray);
    overflow: hidden;
}

.author-info h5 {
    font-size: 15px !important;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--background);
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: 20px;
    margin: 0 20px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #333;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-light {
        background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 12px 28px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .02em;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-light:hover {
    background: var(--primary-dark);
    color: #fff !important;
    border-color: var(--primary-dark);
}

.btn-outline-light {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 7px;
    padding: 12px 28px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover {
    background: var(--primary);
    color: white ;
    border-color: var(--primary)
}

/* Footer */
ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
  display: block !important;
}
.single-cta i {
  color: var(--primary-dark);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #e5e5e5;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #d1d1d1;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--primary-dark);
}
.footer-widget ul li {
  margin-bottom: 12px;
  list-style-type: none;
}
.footer-widget ul li a:hover{
  color: var(--primary-dark);
}
.footer-widget ul li a {
  color: #e7e7e7;
  text-transform: capitalize;
  text-decoration: none;
}
.single-cta{
    margin-bottom: 20px
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: var(--primary-dark);
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: var(--primary-dark);
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s;
}

.social-links a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    /* background: var(--primary); */
    transform: translateY(-4px);
}

.social-links a:hover i {
    background-color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .floating-card {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-menu li a {
        padding: 12px 16px;
    }

    .dashboard-content {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-image {
        margin-top: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .dashboard-content h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    font-size: 15px;
    color: var(--dark);
    background-color: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary) !important;
    color: white !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon) !important;
    filter: invert(1);
    width: 20px;
    height: 20px;
    background-size: cover;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--gray);
    font-size: 14px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-image: var(--bs-accordion-btn-icon) !important;
    background-size: 1rem;
    transition: all 0.3s ease;
}

/* Partners Section */
.partners-section {
    background-color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}


/* Custom Styles */
.custom-navbar {
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.navbar .contact-card {
    /* box-shadow: 1px 1px 30px 4px var(--secondary); */
}


/* .hero-section {
    background-color: var(--light);
    padding: 80px 0;    
}

.hero-section h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 600px;
} */

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.section-title {
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.card-service {
    border: none;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-service .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 2rem;
    margin: auto;
}

.card-service h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.featured-card {
    text-align: center;
    margin-bottom: 30px;
}

.featured-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(57, 50, 138, 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
}

.featured-card h4 {
    margin-bottom: 15px;
    font-size: 15px;
}

.bg-light-custom {
    background-color: var(--light);
}



.hero-section {
    padding: 100px 0 0px;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(57, 50, 138, 0.05);
    right: -150px;
    top: -100px;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(8, 175, 173, 0.05);
    left: -100px;
    bottom: -50px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.billing-process-section {
    background-color: #ffffff;
    position: relative;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem !important;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    border-radius: 5px 0 0 5px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(57, 50, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 24px;
    color: var(--primary);
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.process-card p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
}

.alert-info-custom {
    background-color: rgba(57, 50, 138, 0.1);
    border: none;
    border-radius: 15px;
    padding: 20px;
    color: var(--dark);
}

.financial-assistance-section {
    background: var(--background);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.assistance-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btn-outline-primary-custom {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 50, 138, 0.2);
}

.contact-section {
    background-color: #ffffff;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(57, 50, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 18px;
    color: var(--primary);
}

.online-payment-section {
    background-color: #ffffff;
    text-align: center;
}

.payment-card {
    background: var(--background);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.shadow-sm {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}




/* Step Section */
.step-section {
    padding: 60px 0;
    background-color: var(--white);
}

.step-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.step-content {
    flex: 1;
}

.step-image {
    flex: 1;
    text-align: center;
}

.step-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.step-section p {
    color: var(--gray);
    margin-bottom: 25px;
}

.support-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.support-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.support-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.support-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

/* Understanding Section */
.understanding-section {
    padding: 60px 0;
    background-color: var(--white);
}

.understanding-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.process-step {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.step-marker {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-details p {
    color: var(--gray);
}

.learn-more {
    text-align: center;
    margin-top: 20px;
}

/* .btn-transparent {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-transparent:hover {
    background-color: var(--primary-light);
  }
   */
/* Next Step Section */
.next-step-section {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.next-step-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.next-step-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gray);
}

.image-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .step-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .step-section h2,
    .understanding-section h2,
    .next-step-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .reasons {
        grid-template-columns: 1fr !important;
    }

    .hero-dots {
        display: none !important;
    }
}




.comparison-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.comparison-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.comparison-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.comparison-card.highlighted {
    background: var(--primary);
    color: #fff;
}

.comparison-card.highlighted .card-title,
.comparison-card.highlighted .price,
.comparison-card.highlighted .feature-list li {
    color: #fff;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.price {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
}

.comparison-card.highlighted .price .currency {
    color: rgba(255, 255, 255, 0.8);
}

.price .currency {
    font-size: 1.2rem;
    color: var(--gray);
    vertical-align: top;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.feature-list li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    font-size: 16px;
}

.feature-list li::before {
    content: "\2714";
    color: var(--secondary);
    margin-right: 10px;
    font-weight: bold;
}

.comparison-card.highlighted .feature-list li::before {
    color: #fff;
}

.feature-list-title {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
}

.feature-list-title::after {
    content: '';
    width: 20%;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background: var(--secondary)
}

.comparison-card.highlighted .feature-list-title {
    color: #fff;
}

.comparison-card.highlighted .pill-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}


/* Diagnostic Table */
.table-section {
    background: #fff;
    padding: 72px 0;
}

.table-section .section-heading {
    color: var(--primary);
}

.diag-table-wrap {
    margin-top: 40px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.diag-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .87rem;
}

.diag-table th {
    background: var(--dark);
    color: #fff;
    padding: 16px 20px;
    font-weight: 600;
    text-align: left;
    font-size: .8rem;
    letter-spacing: .03em;
}

.diag-table th:first-child {
    border-radius: 0;
}

.diag-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    font-weight: 400;
}

.diag-table tr:last-child td {
    border-bottom: none;
}

.diag-table tr:nth-child(odd) td {
    background: #fafbff;
}

.diag-table .highlight-row td {
    color: var(--primary);
    font-weight: 700;
    background: rgba(22, 147, 73, .05);
}

.diag-table .th-green {
    background: var(--primary);
}

.newsletter h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form .input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.newsletter-form .form-control {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    flex: 1;
    min-width: 200px;
}

.newsletter-form .btn-primary {
    padding: 10px 15px;
    background-color: #0cabac;
    border-color: #08afad;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background-color: #025aa5;
    border-color: #025aa5;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .btn-primary {
        width: 100%;
        margin-top: 8px;
    }
}


.why-tested {
    background: linear-gradient(120deg, #f6f9fc 0%, #eef3fb 100%);
    padding: 40px;
}

.reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.row .col-lg-6 .reasons {
    grid-template-columns: 1fr !important;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .05), 0 1px 3px rgba(0, 0, 0, .05);
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.reason-item .dot {
    color: var(--primary);
    font-size: 24px;
    margin-right: 15px;
    line-height: 1;
}

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
section {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(22, 147, 73, .1);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.section-heading {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.12;
    color: var(--dark);
}

.section-heading.green {
    color: var(--primary);
}

.section-sub {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.75;
    max-width: 600px;
    margin: 14px auto 0;
    font-weight: 400;
}

.text-center {
    text-align: center;
}

/* ─── DIVIDER ─── */
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}   