:root {
    --blue: #373A8F;
    --blue2: #2E3192;
    --cyan: #1FA0CF;
    --cyan-light: #5BC8EC;
    --bg: #F5F7FA;
    --dark: #1F2A44;
    --white: #FFFFFF;
    --border: #DDE4F0;
    --muted: #6B7A99;
    --card-bg: #FFFFFF;
    --glow-blue: rgba(55, 58, 143, 0.18);
    --glow-cyan: rgba(31, 160, 207, 0.22);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #f0f2f8
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 3px
}

/* ─── HERO ─── */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, #1e2070 45%, #0e3d6a 100%);
    padding: 100px 6% 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

/* animated grid bg */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(31, 160, 207, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 160, 207, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from {
        background-position: 0 0
    }

    to {
        background-position: 48px 48px
    }
}

/* glowing orbs */
.hero-orb1 {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 160, 207, 0.2) 0%, transparent 65%);
    pointer-events: none;
    animation: orb1 8s ease-in-out infinite alternate;
}

.hero-orb2 {
    position: absolute;
    bottom: -150px;
    left: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(55, 58, 143, 0.25) 0%, transparent 65%);
    pointer-events: none;
    animation: orb2 10s ease-in-out infinite alternate;
}

@keyframes orb1 {
    from {
        transform: scale(1) translate(0, 0)
    }

    to {
        transform: scale(1.15) translate(-20px, 20px)
    }
}

@keyframes orb2 {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.2) translate(15px, -15px)
    }
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 160, 207, 0.15);
    border: 1px solid rgba(31, 160, 207, 0.35);
    color: var(--cyan-light);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 26px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-light);
    animation: livepulse 2s infinite;
}

@keyframes livepulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.85)
    }
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.13;
    color: white;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero h1 .grad {
    background: linear-gradient(90deg, var(--cyan-light), #7BD8F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.78;
    margin-bottom: 38px;
    max-width: 490px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, #0d7aad 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.93rem;
    cursor: pointer;
    transition: all .22s;
    box-shadow: 0 6px 24px rgba(31, 160, 207, 0.45);
    letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(31, 160, 207, 0.55)
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.93rem;
    cursor: pointer;
    transition: all .22s;
    backdrop-filter: blur(4px);
}

.btn-hero-outline a{  color: white;}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5)
}

.hero-note {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem
}

/* HERO DASHBOARD CARD */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeSlideUp .9s ease-out both
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.dash-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 26px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(31, 160, 207, 0.1) inset;
}

.dash-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan)
}

.dash-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 0.92rem
}

.dash-live-tag {
    background: rgba(31, 160, 207, 0.2);
    border: 1px solid rgba(31, 160, 207, 0.4);
    color: var(--cyan-light);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px
}

.kpi-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 14px;
}

.kpi-card.highlight {
    background: linear-gradient(135deg, rgba(31, 160, 207, 0.2), rgba(55, 58, 143, 0.2));
    border-color: rgba(31, 160, 207, 0.3);
}

.kpi-lbl {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
    margin-bottom: 5px;
    font-weight: 500
}

.kpi-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: white
}

.kpi-num.cyan {
    color: var(--cyan-light)
}

.kpi-num.orange {
    color: #FFB347
}

.kpi-tag-row {
    display: flex;
    gap: 5px;
    margin-top: 4px
}

.kpi-micro {
    background: rgba(31, 160, 207, 0.15);
    color: var(--cyan-light);
    font-size: 0.64rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
}

.kpi-micro.up {
    background: rgba(72, 199, 142, 0.15);
    color: #48C78E
}

.kpi-micro.warn {
    background: rgba(255, 179, 71, 0.15);
    color: #FFB347
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.act-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9px;
    padding: 9px 12px;
}

.act-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

.dot-cyan {
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan)
}

.dot-orange {
    background: #FFB347;
    box-shadow: 0 0 6px #FFB347
}

.dot-blue {
    background: #7B93FF;
    box-shadow: 0 0 6px #7B93FF
}

.act-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    flex: 1
}

.act-time {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.68rem;
    white-space: nowrap
}

.progress-row {
    margin-top: 14px
}

.prog-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px
}

.prog-label span:first-child {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem
}

.prog-label span:last-child {
    color: var(--cyan-light);
    font-size: 0.72rem;
    font-weight: 700
}

.prog-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 6px;
    overflow: hidden
}

.prog-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light))
}

/* ─── TRUSTED ─── */
.trusted {
    background: white;
    padding: 52px 6%;
    border-bottom: 1px solid var(--border)
}

.trusted-label {
    text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px
}

.logo-pill {
    background: var(--bg);
    border: 1.5px solid var(--border);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--blue2);
    letter-spacing: 0.5px;
    transition: all .2s;
}

.logo-pill:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(31, 160, 207, 0.04)
}

/* ─── SECTION COMMONS ─── */
.section-tag {
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-title .accent {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 540px
}

/* ─── MODULES ─── */
.modules {
    padding: 100px 6%
}

.modules-header {
    text-align: center;
    margin-bottom: 60px
}

.modules-header .section-desc {
    margin: 0 auto
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.mod-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    transition: all .28s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mod-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s;
}

.mod-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 8px 32px rgba(55, 58, 143, 0.1), 0 0 0 1px rgba(31, 160, 207, 0.1);
    transform: translateY(-4px);
}

.mod-card:hover::after {
    transform: scaleX(1)
}

.mod-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(55, 58, 143, 0.08), rgba(31, 160, 207, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    border: 1px solid rgba(31, 160, 207, 0.15);
}

.mod-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px
}

.mod-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65
}

.mod-link {
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.mod-link:hover {
    color: var(--blue)
}

/* ─── STATS STRIP ─── */
.stats-strip {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 40%, #0e5a8a 100%);
    padding: 70px 6%;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(31, 160, 207, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 160, 207, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative
}

.stat-item {
    text-align: center
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, white, var(--cyan-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500
}

/* ─── PHASES ─── */
.phases {
    background: var(--dark);
    padding: 100px 6%;
    position: relative;
    overflow: hidden
}

.phases::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 160, 207, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.phases .section-tag {
    color: var(--cyan)
}

.phases .section-title {
    color: white
}

.phases .section-desc {
    color: rgba(255, 255, 255, 0.5)
}

.phases-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 50px;
    align-items: start
}

.phases-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative
}

.phases-list::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyan), rgba(31, 160, 207, 0.1));
}

.phase-row {
    display: flex;
    gap: 24px;
    padding: 22px 0;
    cursor: pointer
}

.phase-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--cyan);
    flex-shrink: 0;
    z-index: 1;
    transition: all .2s;
}

.phase-row:hover .phase-num {
    background: var(--cyan);
    color: var(--dark)
}

.phase-info {
    padding-top: 8px
}

.phase-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    margin-bottom: 4px
}

.phase-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem
}

.phases-detail {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
}

.phases-detail h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--cyan-light);
    font-size: 1.1rem;
    margin-bottom: 20px
}

.phase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px
}

.phase-tag {
    background: rgba(31, 160, 207, 0.1);
    border: 1px solid rgba(31, 160, 207, 0.2);
    color: var(--cyan-light);
    font-size: 0.77rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
}

/* ─── COMPLIANCE ─── */
.compliance {
    padding: 100px 6%;
    background: white
}

.compliance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.iso-cards {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.iso-card {
    background: linear-gradient(135deg, var(--blue) 0%, #1e2070 60%, #0e3d6a 100%);
    border-radius: 18px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    border: 1px solid rgba(31, 160, 207, 0.2);
    box-shadow: 0 8px 30px rgba(55, 58, 143, 0.2);
    transition: transform .2s;
}

.iso-card:hover {
    transform: translateX(5px)
}

.iso-icon-box {
    font-size: 2.2rem;
    flex-shrink: 0
}

.iso-code {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--cyan-light);
    font-size: 1.1rem
}

.iso-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    margin-top: 3px
}

.security-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 26px 30px;
}

.security-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.sec-items {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.sec-item {
    display: flex;
    gap: 12px;
    align-items: center
}

.sec-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.sec-item span {
    color: var(--dark);
    font-size: 0.87rem
}

.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.comp-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all .2s
}

.comp-item:hover {
    border-color: var(--cyan);
    background: rgba(31, 160, 207, 0.03)
}

.comp-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 0.72rem;
}

.comp-item p {
    color: var(--dark);
    font-size: 0.87rem;
    line-height: 1.6;
    padding-top: 4px
}

.comp-item strong {
    color: var(--blue);
    font-weight: 600
}

/* ─── STAKEHOLDERS ─── */
.stakeholders {
    padding: 100px 6%;
    background: var(--bg)
}

.stake-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px
}

.stake-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.stake-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    transition: all .25s;
}

.stake-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(55, 58, 143, 0.1);
}

.stake-level {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cyan);
    background: rgba(31, 160, 207, 0.08);
    border: 1px solid rgba(31, 160, 207, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.stake-icon {
    font-size: 1.9rem;
    margin-bottom: 10px;
    display: block
}

.stake-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 7px
}

.stake-desc {
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.65
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 100px 6%;
    background: white
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px
}

.testi-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: all .25s;
    position: relative;
}

.testi-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 8px 30px rgba(55, 58, 143, 0.08)
}

.testi-bar {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    margin-bottom: 22px;
}

.testi-text {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 400;
}

.testi-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--blue);
    font-size: 0.9rem
}

.testi-company {
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 3px
}

/* ─── CTA ─── */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 40%, #0e5a8a 100%);
    padding: 100px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(31, 160, 207, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 160, 207, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-inner {
    position: relative;
    z-index: 2
}

.cta-section h2 {
    font-size: 2.8rem;
    color: white;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px
}

.cta-section p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    margin-bottom: 38px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.cta-note {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    margin-top: 18px
}



.iso-badge-pill {
    background: rgba(31, 160, 207, 0.1);
    border: 1px solid rgba(31, 160, 207, 0.25);
    color: var(--cyan-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .phases-layout {
        grid-template-columns: 1fr
    }

    .compliance-inner {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
  

    .hero h1 {
        font-size: 2.4rem
    }

    .section-title {
        font-size: 2rem
    }

    .modules-grid,
    .stake-grid,
    .testi-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cta-section h2 {
        font-size: 2rem
    }
}