﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #059669;
    --green-dark: #047857;
    --green-light: #ecfdf5;
    --green-mid: #34d399;
    --bg: #ffffff;
    --bg2: #f8fafc;
    --text: #0f172a;
    --text2: #475569;
    --text3: #94a3b8;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
    --radius: 16px;
    --radius-sm: 10px;
    --font-head: 'Cabinet Grotesk', sans-serif;
    --font-body: 'Instrument Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

.gradient-text {
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── PRELOADER ── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity .5s;
}

    #preloader.hide {
        opacity: 0;
        pointer-events: none;
    }

.pl-ring svg {
    width: 64px;
    height: 64px;
}

.pl-ring circle {
    fill: none;
    stroke-width: 5;
}

    .pl-ring circle:first-child {
        stroke: #e2e8f0;
    }

.pl-ring .spin-circle {
    stroke: var(--green);
    stroke-dasharray: 100 200;
    stroke-linecap: round;
    transform-origin: center;
    animation: spin 1.1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pl-brand {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
    background: linear-gradient(90deg, #059669, #0ea5e9);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #fff;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.ab-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.ab-tag {
    background: rgba(255,255,255,.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.ab-inner a {
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,.5);
    white-space: nowrap;
}

.ab-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    opacity: .8;
    flex-shrink: 0;
}

    .ab-close:hover {
        opacity: 1;
    }

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all .3s;
    max-width: 100%;
}

    .site-header.scrolled {
        background: rgba(255,255,255,.97);
        border-color: var(--border);
        box-shadow: 0 2px 20px rgba(0,0,0,.07);
    }

.header-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

    .logo strong {
        color: var(--green);
    }

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    transition: all .2s;
    white-space: nowrap;
}

    .nav-link:hover {
        color: var(--green);
        background: var(--green-light);
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-call {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .header-call:hover {
        color: var(--green);
    }

    .header-call i {
        color: var(--green);
    }

.btn-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(5,150,105,.25);
    white-space: nowrap;
}

    .btn-demo:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(5,150,105,.35);
    }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text);
}

.nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text);
    position: absolute;
    top: 20px;
    right: 20px;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(5,150,105,.3);
    transition: all .25s;
    white-space: nowrap;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(5,150,105,.4);
    }

    .btn-primary.sm {
        padding: 11px 22px;
        font-size: 14px;
        border-radius: 10px;
    }

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    to {
        left: 150%;
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text2);
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}

    .btn-ghost:hover {
        border-color: var(--green);
        color: var(--green);
    }

/* ── SECTION SHARED ── */
.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

    .section-head h2 {
        font-family: var(--font-head);
        font-size: clamp(30px, 3.5vw, 48px);
        font-weight: 900;
        line-height: 1.15;
        color: var(--text);
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .section-head p {
        font-size: 17px;
        color: var(--text2);
        max-width: 600px;
        margin: 0 auto;
    }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

    .tag i {
        font-size: 11px;
    }

/* ── HERO ── */
.hero {
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f0fdf9 0%, #f8fafc 50%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.b1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5,150,105,.12), transparent 70%);
    top: -100px;
    right: -100px;
}

.b2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,.1), transparent 70%);
    bottom: 0;
    left: -100px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(5,150,105,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(5,150,105,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
}

.hero-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 1.5s ease infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(5,150,105,.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(5,150,105,0);
    }
}

.hero-h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
}

.ta {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin-left: -8px;
}

    .ta:first-child {
        margin-left: 0;
    }

.ta5 {
    background: #f3f4f6;
    color: var(--text2);
    font-size: 10px;
}

.trust-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 2px;
}

.trust-text span {
    font-size: 13px;
    color: var(--text2);
    font-weight: 500;
}

/* ── DASHBOARD CARD ── */
.hero-right {
    position: relative;
    max-width: 100%;
    overflow: visible;
}

.dashboard-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.05);
    border: 1px solid var(--border);
    overflow: hidden;
    animation: float-up 6s ease-in-out infinite;
    max-width: 100%;
}

@keyframes float-up {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.dc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}

.dc-dots {
    display: flex;
    gap: 6px;
}

    .dc-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

        .dc-dots span:nth-child(1) {
            background: #ef4444;
        }

        .dc-dots span:nth-child(2) {
            background: #f59e0b;
        }

        .dc-dots span:nth-child(3) {
            background: #22c55e;
        }

.dc-url {
    background: #fff;
    border: 1px solid var(--border);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.dc-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 1s infinite;
}

.dc-body {
    display: flex;
    min-height: 340px;
    overflow: hidden;
}

.dc-sidebar {
    width: 52px;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 4px;
    flex-shrink: 0;
}

.dcs-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.dcs-item {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 15px;
    cursor: pointer;
    transition: all .2s;
}

    .dcs-item:hover {
        background: rgba(255,255,255,.08);
        color: #fff;
    }

    .dcs-item.active {
        background: rgba(5,150,105,.2);
        color: #34d399;
    }

.dc-main {
    flex: 1;
    padding: 14px;
    background: #f8fafc;
    min-width: 0;
    overflow: hidden;
}

.dc-greeting {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.dc-kpis {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.kpi {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--border);
    min-width: 0;
}

.kpi-val {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.kpi-key {
    font-size: 10px;
    color: var(--text3);
    margin: 2px 0;
}

.kpi-trend {
    font-size: 10px;
    color: var(--green);
    font-weight: 600;
}

.dc-chart-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 8px;
}

.dc-bar-chart {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--border);
}

.dcbc-label {
    font-size: 10px;
    color: var(--text3);
    margin-bottom: 8px;
}

.dcbc-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 100px;
}

.dcb {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #a7f3d0, #d1fae5);
    transition: height .6s;
    min-width: 0;
}

    .dcb.active {
        background: linear-gradient(180deg, #059669, #34d399);
    }

.dcbc-months {
    display: flex;
    gap: 5px;
    margin-top: 4px;
}

    .dcbc-months span {
        flex: 1;
        font-size: 8px;
        text-align: center;
        color: var(--text3);
    }

.dc-donut {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.donut-label {
    font-size: 10px;
    color: var(--text3);
}

.donut-svg {
    width: 80px;
    height: 80px;
}

.donut-legend {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

    .donut-legend span {
        font-size: 9px;
        color: var(--text3);
        display: flex;
        align-items: center;
        gap: 2px;
    }

/* ── FLOATING NOTIFICATIONS ── */
.float-notif {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 210px;
    max-width: 260px;
    z-index: 2;
    animation: float-notif 3s ease-in-out infinite;
}

@keyframes float-notif {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.fn-1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.fn-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 1.2s;
}

.fn-3 {
    bottom: -20px;
    left: 20px;
    animation-delay: 2.1s;
}

.fn-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.fn-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.fn-sub {
    font-size: 11px;
    color: var(--text3);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text3);
    font-weight: 500;
    animation: bounce-hint 2s ease infinite;
    z-index: 2;
    white-space: nowrap;
}

@keyframes bounce-hint {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ── LOGO STRIP ── */
.logo-strip {
    background: #fff;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    max-width: 100%;
}

.ls-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ls-track-wrap {
    overflow: hidden;
}

.ls-track {
    display: flex;
    gap: 0;
    animation: marquee 28s linear infinite;
    width: max-content;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.ls-school {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text3);
    padding: 0 36px;
    white-space: nowrap;
    border-right: 1px solid var(--border);
}

    .ls-school i {
        color: var(--green);
    }

    .ls-school img {
        flex-shrink: 0;
    }

/* ── STATS ── */
.stats-section {
    padding: 60px 24px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

    .stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 20% 50%, rgba(5,150,105,.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(14,165,233,.1) 0%, transparent 60%);
    }

.stats-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-card {
    padding: 24px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    background: rgba(255,255,255,.04);
    transition: all .3s;
}

    .stat-card:hover {
        background: rgba(255,255,255,.08);
        transform: translateY(-2px);
    }

.sc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(5,150,105,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    font-size: 18px;
    margin: 0 auto 14px;
}

.sc-num {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.sc-label {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

/* ── WHY SECTION ── */
.why-section {
    padding: 100px 24px;
    background: var(--bg2);
}

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

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #059669, #0ea5e9);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s;
    }

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

        .why-card:hover::before {
            transform: scaleX(1);
        }

.wc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ic);
    color: var(--cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.why-card p {
    font-size: 14.5px;
    color: var(--text2);
    line-height: 1.65;
}

.wc-tag {
    display: inline-flex;
    margin-top: 16px;
    background: var(--green-light);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ── TABS SECTION ── */
.tabs-section {
    padding: 100px 24px;
    background: #fff;
}

.tabs-nav {
    display: flex;
    gap: 6px;
    background: var(--bg2);
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 40px;
    overflow-x: auto;
    border: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    background: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    border-radius: 10px;
    white-space: nowrap;
    transition: all .2s;
    cursor: pointer;
}

    .tab-btn:hover:not(.active) {
        background: #fff;
        color: var(--text);
    }

    .tab-btn.active {
        background: var(--green);
        color: #fff;
        box-shadow: 0 4px 14px rgba(5,150,105,.3);
    }

.tab-panel {
    display: none;
    animation: fadeUp .35s ease;
}

    .tab-panel.active {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 56px;
        align-items: start;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tp-info h3 {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.tp-info p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

    .tp-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14.5px;
        color: var(--text2);
    }

        .tp-list li i {
            color: var(--green);
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }

.tp-cta {
    margin-top: 8px;
}

.tp-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #0f172a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.tp-mockup {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 100%;
}

.phone-center {
    display: flex;
    justify-content: center;
    border: none;
    box-shadow: none;
    background: none;
}

/* ── FEE MOCK ── */
.fee-mock {
    padding: 20px;
    background: #fff;
    overflow-x: auto;
}

.fm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

    .fm-header h4 {
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 800;
        color: var(--text);
    }

.fm-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
}

    .fm-search i {
        color: var(--text3);
        font-size: 12px;
    }

    .fm-search input {
        border: none;
        background: none;
        font-size: 12px;
        color: var(--text2);
        outline: none;
        width: 120px;
    }

.fm-summary {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.fms-card {
    background: var(--bg2);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    min-width: 0;
}

.fms-val {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
}

.fms-key {
    font-size: 11px;
    color: var(--text3);
    margin: 3px 0 8px;
}

.fms-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

    .fee-table th {
        padding: 8px 10px;
        font-size: 11px;
        color: var(--text3);
        text-align: left;
        border-bottom: 2px solid var(--border);
    }

    .fee-table td {
        padding: 10px;
        font-size: 13px;
        color: var(--text2);
        border-bottom: 1px solid #f1f5f9;
    }

    .fee-table tr:hover td {
        background: var(--bg2);
    }

.st-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.st-av {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

    .badge.paid {
        background: #ecfdf5;
        color: #059669;
    }

    .badge.pending {
        background: #fef3c7;
        color: #d97706;
    }

    .badge.overdue {
        background: #fef2f2;
        color: #ef4444;
    }

.act-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text3);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

    .act-btn:hover {
        background: var(--green);
        color: #fff;
        border-color: var(--green);
    }

    .act-btn.warn {
        color: #d97706;
        border-color: #fef3c7;
        background: #fef3c7;
    }

    .act-btn.danger {
        color: #ef4444;
        border-color: #fef2f2;
        background: #fef2f2;
    }

/* ── ANALYTICS MOCK ── */
.analytics-mock {
    padding: 20px;
    background: #fff;
    overflow-x: auto;
}

.am-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 10px;
    flex-wrap: wrap;
}

    .am-header h4 {
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 800;
    }

.am-pills {
    display: flex;
    gap: 4px;
}

.am-pill {
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text3);
    background: var(--bg2);
    border: 1px solid var(--border);
    cursor: pointer;
}

    .am-pill.active {
        background: var(--green);
        color: #fff;
        border-color: var(--green);
    }

.am-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
}

.am-chart {
    background: var(--bg2);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid var(--border);
    min-width: 0;
    overflow: hidden;
}

.amc-title {
    font-size: 11px;
    color: var(--text3);
    margin-bottom: 12px;
}

.am-bars {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 110px;
}

.amb-group {
    flex: 1;
    display: flex;
    gap: 2px;
    align-items: flex-end;
    flex-direction: row;
    position: relative;
    min-width: 0;
}

    .amb-group > span {
        position: absolute;
        bottom: -16px;
        font-size: 8px;
        color: var(--text3);
        left: 50%;
        transform: translateX(-50%);
    }

.amb {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-width: 0;
}

.am-legend {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

    .am-legend span {
        font-size: 10px;
        color: var(--text3);
        display: flex;
        align-items: center;
        gap: 4px;
    }

.am-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.am-metric {
    background: var(--bg2);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--border);
}

.amm-label {
    font-size: 11px;
    color: var(--text3);
    margin-bottom: 4px;
}

.amm-val {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.amm-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

    .amm-bar div {
        height: 100%;
        border-radius: 3px;
        transition: width 1s;
    }

.am-ai-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 12px;
}

.aibox-head {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.aibox-text {
    font-size: 12px;
    color: var(--text2);
    line-height: 1.5;
}

/* ── TIMETABLE MOCK ── */
.timetable-mock {
    padding: 20px;
    background: #fff;
    overflow-x: auto;
}

.tt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
    flex-wrap: wrap;
}

    .tt-header h4 {
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 800;
    }

.tt-badge {
    background: var(--green-light);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.tt-grid {
    display: grid;
    grid-template-columns: 56px repeat(5,1fr);
    gap: 4px;
    font-size: 11.5px;
    min-width: 460px;
}

.tt-day {
    background: var(--bg2);
    border-radius: 6px;
    padding: 7px 4px;
    text-align: center;
    font-weight: 700;
    color: var(--text3);
}

.tt-time {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    color: var(--text3);
    font-weight: 600;
}

.tt-cell {
    border-radius: 7px;
    padding: 9px 6px;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .tt-cell span {
        font-size: 9px;
        opacity: .75;
        font-weight: 400;
    }

.math {
    background: #ede9fe;
    color: #6d28d9;
}

.eng {
    background: #ecfdf5;
    color: #059669;
}

.sci {
    background: #fef3c7;
    color: #d97706;
}

.hist {
    background: #fef2f2;
    color: #ef4444;
}

.art {
    background: #fce7f3;
    color: #db2777;
}

.pe {
    background: #e0f2fe;
    color: #0284c7;
}

.break {
    background: #f8fafc;
    color: var(--text3);
    font-style: italic;
    font-size: 11px;
}

/* ── PHONE MOCKUP ── */
.phone-wrap {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.phone {
    width: 256px;
    background: #0f172a;
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 24px 64px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.1);
    flex-shrink: 0;
}

.phone-notch {
    width: 100px;
    height: 22px;
    background: #0f172a;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
}

.ps-status {
    display: flex;
    justify-content: space-between;
    padding: 8px 14px;
    font-size: 10px;
    color: var(--text);
}

    .ps-status span:last-child {
        display: flex;
        align-items: center;
        gap: 4px;
    }

.ps-header {
    background: linear-gradient(135deg, #059669, #0ea5e9);
    padding: 14px 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.psh-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.psh-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.psh-info {
    font-size: 10px;
    color: rgba(255,255,255,.75);
}

.psh-notif {
    margin-left: auto;
    position: relative;
    color: #fff;
    font-size: 16px;
}

.notif-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-quick {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 6px;
    padding: 12px;
}

.psq {
    background: var(--bg2);
    border-radius: 10px;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    color: var(--text2);
    font-weight: 600;
    cursor: pointer;
}

    .psq i {
        font-size: 16px;
        color: var(--c);
    }

.ps-feed {
    padding: 0 12px 12px;
}

.psf-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.psf-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.psfi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.psfi-text {
    font-size: 11px;
    color: var(--text2);
}

/* ── ATTENDANCE MOCK ── */
.attendance-mock {
    padding: 20px;
    background: #fff;
}

.atm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 10px;
    flex-wrap: wrap;
}

    .atm-header h4 {
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 800;
    }

.atm-date {
    font-size: 11px;
    color: var(--text3);
    margin-top: 2px;
}

.atm-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.atm-stat {
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

    .atm-stat.present {
        background: #ecfdf5;
        color: #059669;
    }

    .atm-stat.absent {
        background: #fef2f2;
        color: #ef4444;
    }

.atm-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.atm-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--bg2);
    border: 1px solid var(--border);
}

    .atm-row.absent {
        background: #fff5f5;
    }

    .atm-row.late {
        background: #fffbeb;
    }

.atm-num {
    font-size: 12px;
    color: var(--text3);
    font-weight: 700;
    width: 20px;
    flex-shrink: 0;
}

.atm-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    min-width: 0;
}

.atm-toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
}

.present-btn.active {
    background: #ecfdf5;
    color: #059669;
}

.absent-btn {
    background: #fef2f2;
    color: #ef4444;
}

.late-btn {
    background: #fef3c7;
    color: #d97706;
}

.atm-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    white-space: nowrap;
}

    .atm-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(5,150,105,.3);
    }

/* ── COMM MOCK ── */
.comm-mock {
    padding: 20px;
    background: #fff;
}

.cm-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .cm-header h4 {
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 800;
        flex: 1;
    }

.cm-badge {
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.cm-compose {
    background: var(--bg2);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
}

.cm-to, .cm-channels {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.cm-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text3);
    flex-shrink: 0;
}

.cm-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cm-tag {
    background: var(--green-light);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
}

    .cm-tag.rm {
        background: #fef2f2;
        color: #ef4444;
    }

.cm-add {
    font-size: 11px;
    color: var(--text3);
    cursor: pointer;
}

.cm-ch {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text3);
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    white-space: nowrap;
}

    .cm-ch.active {
        background: var(--green-light);
        color: var(--green);
        border-color: #a7f3d0;
    }

.cm-msg {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    color: var(--text2);
    line-height: 1.6;
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.cm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.cm-reach {
    font-size: 12px;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cm-send {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.cm-recent-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text3);
    margin-bottom: 8px;
}

.cm-msg-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text2);
}

    .cm-msg-item span {
        margin-left: auto;
        font-size: 10px;
        color: var(--text3);
        flex-shrink: 0;
    }

/* ── HOW IT WORKS ── */
.how-section {
    padding: 100px 24px;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.step-card {
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 2px solid var(--border);
    position: relative;
    transition: all .3s;
    text-align: center;
}

    .step-card:hover {
        border-color: var(--green);
        box-shadow: 0 0 0 4px rgba(5,150,105,.08), var(--shadow-lg);
        transform: translateY(-4px);
    }

.step-num {
    font-family: var(--font-head);
    font-size: 60px;
    font-weight: 900;
    color: var(--border);
    position: absolute;
    top: -10px;
    right: 16px;
    line-height: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 14px;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    margin-top: 80px;
    color: var(--text3);
    font-size: 20px;
}

/* ── MODULES ── */
.modules-section {
    padding: 100px 24px;
    background: var(--bg2);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.mod-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .3s;
    cursor: pointer;
    position: relative;
}

    .mod-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.mod-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--bc);
    color: var(--ic);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
}

.mod-card h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.mod-card p {
    font-size: 12px;
    color: var(--text3);
}

.mod-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
}

/* ── ROI CALCULATOR ── */
.roi-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f0fdf9 0%, #f8fafc 100%);
}

.roi-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.roi-inputs {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

    .roi-inputs h3 {
        font-family: var(--font-head);
        font-size: 22px;
        font-weight: 900;
        color: var(--text);
        margin-bottom: 28px;
    }

.roi-field {
    margin-bottom: 24px;
}

    .roi-field label {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 10px;
    }

.roi-slider-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .roi-slider-wrap input[type=range] {
        flex: 1;
        -webkit-appearance: none;
        height: 6px;
        border-radius: 3px;
        background: var(--border);
        outline: none;
        cursor: pointer;
        min-width: 0;
    }

        .roi-slider-wrap input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--green);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(5,150,105,.4);
        }

    .roi-slider-wrap span {
        font-family: var(--font-head);
        font-size: 16px;
        font-weight: 800;
        color: var(--green);
        min-width: 70px;
        text-align: right;
        flex-shrink: 0;
    }

.roi-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .roi-results h3 {
        font-family: var(--font-head);
        font-size: 22px;
        font-weight: 900;
        color: var(--text);
    }

.roi-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.roi-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all .3s;
}

    .roi-card:hover {
        border-color: var(--rc);
        box-shadow: 0 8px 32px rgba(0,0,0,.08);
    }

.roi-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0,0,0,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--rc);
    flex-shrink: 0;
}

.roi-card-val {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    color: var(--rc);
    line-height: 1;
    margin-bottom: 4px;
}

.roi-card-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.roi-card-sub {
    font-size: 12px;
    color: var(--text3);
}

.roi-cta-bar {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

    .roi-cta-bar p {
        font-size: 14px;
        color: rgba(255,255,255,.7);
    }

    .roi-cta-bar strong {
        color: #fff;
    }

/* ── COMPARE ── */
.compare-section {
    padding: 100px 24px;
    background: var(--bg2);
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    min-width: 700px;
}

    .compare-table th {
        padding: 16px 20px;
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 800;
        text-align: left;
        border-bottom: 2px solid var(--border);
        color: var(--text2);
    }

        .compare-table th:first-child {
            color: var(--text);
        }

    .compare-table td {
        padding: 14px 20px;
        font-size: 13.5px;
        color: var(--text2);
        border-bottom: 1px solid var(--border);
    }

    .compare-table tr:last-child td {
        border-bottom: none;
    }

    .compare-table tr:hover td {
        background: var(--bg2);
    }

.eduzen-col {
    background: rgba(5,150,105,.04);
    border-left: 3px solid var(--green);
}

.ez-col-head {
    display: flex;
    justify-content: center;
}

.ez-badge-col {
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.ct-check {
    color: var(--green);
    font-size: 16px;
}

.ct-cross {
    color: #ef4444;
    font-size: 16px;
}

.ct-good {
    background: #ecfdf5;
    color: #059669;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.ct-mid {
    background: #fef3c7;
    color: #d97706;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.ct-bad {
    background: #fef2f2;
    color: #ef4444;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

/* ── PRICING ── */
.pricing-section {
    padding: 100px 24px;
    background: #fff;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pt-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text3);
    cursor: pointer;
}

    .pt-label.active {
        color: var(--text);
    }

.pt-switch {
    width: 48px;
    height: 26px;
    border-radius: 13px;
    background: var(--border);
    cursor: pointer;
    position: relative;
    transition: background .2s;
    flex-shrink: 0;
}

    .pt-switch.on {
        background: var(--green);
    }

.pts-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform .2s;
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

.pt-switch.on .pts-knob {
    transform: translateX(22px);
}

.pt-save {
    background: var(--green-light);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 2px solid var(--border);
    position: relative;
    transition: all .3s;
}

    .price-card:hover {
        box-shadow: var(--shadow-lg);
    }

    .price-card.popular {
        border-color: var(--green);
        box-shadow: 0 0 0 4px rgba(5,150,105,.1), var(--shadow-lg);
    }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.pc-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pc-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.pc-currency {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-top: 8px;
}

.pc-num {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    letter-spacing: -2px;
}

.pc-per {
    font-size: 14px;
    color: var(--text3);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 4px;
}

.pc-desc {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 28px;
    line-height: 1.5;
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

    .pc-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--text2);
    }

        .pc-list li i {
            font-size: 14px;
            color: var(--green);
        }

        .pc-list li.disabled {
            color: var(--text3);
        }

            .pc-list li.disabled i {
                color: var(--border);
            }

.pc-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

    .pc-btn.primary {
        background: linear-gradient(135deg, #059669, #0ea5e9);
        color: #fff;
        box-shadow: 0 4px 16px rgba(5,150,105,.3);
    }

        .pc-btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(5,150,105,.4);
        }

    .pc-btn.secondary {
        background: var(--bg2);
        color: var(--text);
        border: 2px solid var(--border);
    }

        .pc-btn.secondary:hover {
            border-color: var(--green);
            color: var(--green);
        }

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text3);
    margin-bottom: 48px;
}

    .pricing-note a {
        color: var(--green);
        font-weight: 600;
    }

.pricing-features {
    background: var(--bg2);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
}

.pf-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text2);
    font-weight: 500;
}

    .pf-item i {
        color: var(--green);
        flex-shrink: 0;
    }

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 100px 24px;
    background: var(--bg2);
}

.testimonials-outer {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.testi-card {
    flex: 0 0 calc(33.333% - 12px);
    margin: 0 6px;
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
    transition: all .3s;
    min-width: 0;
}

    .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.tc-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    margin-bottom: 14px;
}

.testi-card blockquote {
    font-size: 14.5px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
}

.tc-role {
    font-size: 12px;
    color: var(--text3);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.tc-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    font-size: 16px;
    color: var(--text2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}

    .tc-btn:hover {
        border-color: var(--green);
        color: var(--green);
    }

.tc-dots {
    display: flex;
    gap: 8px;
}

.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all .2s;
    cursor: pointer;
}

    .tc-dot.active {
        background: var(--green);
        width: 24px;
        border-radius: 4px;
    }

/* ── CASE STUDY ── */
.case-section {
    padding: 100px 24px;
    background: #fff;
}

.case-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: start;
}

.case-quote {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    padding-left: 24px;
    border-left: 4px solid var(--green);
}

.case-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.ca-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ca-name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.ca-role {
    font-size: 13px;
    color: var(--text2);
}

.ca-meta {
    font-size: 12px;
    color: var(--text3);
    margin-top: 2px;
}

.case-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text2);
}

.cti-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cm-card {
    background: var(--bg2);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    text-align: center;
}

.cmc-num {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.cmc-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.cmc-before-after {
    display: flex;
    justify-content: space-around;
    font-size: 11px;
    color: var(--text3);
    flex-wrap: wrap;
    gap: 4px;
}

/* ── INTEGRATIONS ── */
.integrations-section {
    padding: 100px 24px;
    background: var(--bg2);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.int-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .3s;
}

    .int-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.int-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.int-name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.int-type {
    font-size: 11px;
    color: var(--text3);
    background: var(--bg2);
    padding: 3px 10px;
    border-radius: 8px;
    display: inline-block;
}

.int-note {
    text-align: center;
    font-size: 14px;
    color: var(--text2);
}

    .int-note i {
        color: var(--green);
        margin-right: 6px;
    }

    .int-note a {
        color: var(--green);
        font-weight: 700;
    }

/* ── FAQ ── */
.faq-section {
    padding: 100px 24px;
    background: #fff;
}

.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-left {
    position: sticky;
    top: 100px;
}

    .faq-left h2 {
        font-family: var(--font-head);
        font-size: 38px;
        font-weight: 900;
        color: var(--text);
        margin: 16px 0 14px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .faq-left p {
        font-size: 15px;
        color: var(--text2);
        margin-bottom: 24px;
    }

.faq-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    border: 2px solid var(--border);
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    transition: all .2s;
}

    .faq-contact-btn i {
        color: var(--green);
    }

    .faq-contact-btn:hover {
        border-color: var(--green);
        color: var(--green);
    }

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .2s;
}

    .faq-item.open {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(5,150,105,.08);
    }

.faq-q {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 15.5px;
    font-weight: 800;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: background .2s;
}

    .faq-q:hover {
        background: var(--bg2);
    }

    .faq-q i {
        color: var(--text3);
        font-size: 14px;
        transition: transform .3s;
        flex-shrink: 0;
    }

.faq-item.open .faq-q i {
    transform: rotate(45deg);
    color: var(--green);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 22px 18px;
    font-size: 14.5px;
    color: var(--text2);
    line-height: 1.7;
}

/* ── BLOG ── */
.blog-section {
    padding: 100px 24px;
    background: var(--bg2);
}

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

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s;
}

    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.blog-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,.5);
}

.blog-content {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-card h4 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

    .blog-link:hover {
        gap: 10px;
    }

/* ── CTA ── */
.cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 50%, rgba(5,150,105,.2) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(14,165,233,.15) 0%, transparent 60%);
    }

.cta-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-block;
    background: rgba(5,150,105,.2);
    color: var(--green-mid);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-white-solid {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--green);
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

    .btn-white-solid:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,255,255,.2);
    }

.btn-white-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,.8);
    padding: 14px 28px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,.2);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

    .btn-white-outline:hover {
        border-color: rgba(255,255,255,.6);
        color: #fff;
    }

.cta-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .cta-trust span {
        font-size: 13px;
        color: rgba(255,255,255,.6);
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .cta-trust i {
        color: var(--green-mid);
    }

.cta-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .3s;
}

    .cta-card:hover {
        background: rgba(255,255,255,.12);
    }

.cc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cc1 .cc-icon {
    background: rgba(5,150,105,.2);
    color: var(--green-mid);
}

.cc2 .cc-icon {
    background: rgba(14,165,233,.2);
    color: #7dd3fc;
}

.cc3 .cc-icon {
    background: rgba(167,139,250,.2);
    color: #c4b5fd;
}

.cc-text {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 1.4;
}

    .cc-text b {
        color: #fff;
        font-weight: 700;
    }

/* ── FOOTER ── */
.site-footer {
    background: #0f172a;
    padding: 64px 24px 0;
    max-width: 100%;
    overflow: hidden;
}

.footer-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

    .footer-logo strong {
        color: var(--green-mid);
    }

.fl-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: rgba(255,255,255,.08);
        color: rgba(255,255,255,.5);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        transition: all .2s;
    }

        .footer-socials a:hover {
            background: var(--green);
            color: #fff;
        }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul li a {
        font-size: 13.5px;
        color: rgba(255,255,255,.45);
        transition: color .2s;
    }

        .footer-col ul li a:hover {
            color: rgba(255,255,255,.9);
        }

.footer-contact {
    gap: 12px !important;
}

    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13.5px;
        color: rgba(255,255,255,.45);
    }

        .footer-contact li i {
            color: var(--green-mid);
            width: 14px;
            flex-shrink: 0;
        }

        .footer-contact li a {
            color: rgba(255,255,255,.45);
        }

            .footer-contact li a:hover {
                color: rgba(255,255,255,.9);
            }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.3);
}

.fb-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .fb-links a {
        color: rgba(255,255,255,.3);
        transition: color .2s;
    }

        .fb-links a:hover {
            color: rgba(255,255,255,.7);
        }

/* ── MOBILE CTA ── */
.mob-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(5,150,105,.4);
    display: none;
    align-items: center;
    gap: 8px;
    animation: pulse-shadow 2s ease infinite;
    white-space: nowrap;
    max-width: calc(100% - 32px);
}

@keyframes pulse-shadow {
    0%,100% {
        box-shadow: 0 8px 28px rgba(5,150,105,.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(5,150,105,.7);
    }
}

/* ── SCROLL TOP ── */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 80;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(5,150,105,.35);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    cursor: pointer;
}

    .scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-3px);
    }

/* ── CHAT WIDGET ── */
.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 88px;
    z-index: 95;
}

.chat-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    border: none;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(5,150,105,.4);
    cursor: pointer;
    transition: all .3s;
    position: relative;
}

    .chat-btn:hover {
        transform: translateY(-2px);
    }

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,.15);
    border: 1px solid var(--border);
    overflow: hidden;
    display: none;
    animation: fadeUp .25s ease;
}

    .chat-window.open {
        display: flex;
        flex-direction: column;
    }

.cw-header {
    background: linear-gradient(135deg, #059669, #0ea5e9);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cw-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.cw-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.cw-status {
    font-size: 11px;
    color: rgba(255,255,255,.75);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cw-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,.75);
    font-size: 18px;
    cursor: pointer;
}

.cw-messages {
    flex: 1;
    max-height: 260px;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg2);
}

.cw-msg.bot .cw-bubble {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px 14px 14px 4px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: var(--text2);
    max-width: 85%;
}

.cw-msg.user .cw-bubble {
    background: var(--green);
    color: #fff;
    border-radius: 14px 14px 4px 14px;
    padding: 10px 14px;
    font-size: 13.5px;
    max-width: 85%;
    margin-left: auto;
}

.cw-time {
    font-size: 10px;
    color: var(--text3);
    margin-top: 4px;
}

.cw-msg.user .cw-time {
    text-align: right;
}

.cw-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

    .cw-quick-replies button {
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 20px;
        padding: 5px 12px;
        font-size: 11.5px;
        font-weight: 600;
        color: var(--text2);
        cursor: pointer;
        transition: all .2s;
        font-family: var(--font-body);
    }

        .cw-quick-replies button:hover {
            border-color: var(--green);
            color: var(--green);
            background: var(--green-light);
        }

.cw-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--border);
}

    .cw-input-row input {
        flex: 1;
        border: 1.5px solid var(--border);
        border-radius: 20px;
        padding: 8px 14px;
        font-size: 13px;
        color: var(--text);
        outline: none;
        font-family: var(--font-body);
        min-width: 0;
    }

        .cw-input-row input:focus {
            border-color: var(--green);
        }

    .cw-input-row button {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--green);
        color: #fff;
        border: none;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
    }

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s, transform .6s;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── POPUP ── */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

    .popup-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -48%) scale(.94);
    background: #fff;
    border-radius: 24px;
    padding-inline: 30px;
    padding-block: 20px;
    width: 92%;
    max-width: 480px;
    box-shadow: 0 24px 64px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .popup::-webkit-scrollbar {
        display: none;
    }

    .popup.show {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%,-50%) scale(1);
    }

.popup-x {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg2);
    color: var(--text2);
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
}

    .popup-x:hover {
        background: var(--border);
    }

.popup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.pl-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}

.popup h3 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.popup > div > p {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 24px;
}

.popup-steps {
    display: none;
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.fg {
    margin-bottom: 16px;
}

    .fg label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 7px;
    }

.fi-wrap {
    position: relative;
}

    .fi-wrap i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text3);
        font-size: 14px;
        pointer-events: none;
    }

    .fi-wrap input, .fi-wrap select {
        width: 100%;
        padding: 11px 14px 11px 40px;
        border: 2px solid var(--border);
        border-radius: 10px;
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--text);
        outline: none;
        transition: border-color .2s;
        background: #fff;
    }

        .fi-wrap input:focus, .fi-wrap select:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 4px rgba(5,150,105,.1);
        }

.ferr {
    font-size: 12px;
    color: #ef4444;
    margin-top: 5px;
    display: none;
}

    .ferr.show {
        display: block;
    }

.popup-next, .popup-submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    margin-top: 8px;
    white-space: nowrap;
}

    .popup-next:hover, .popup-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(5,150,105,.35);
    }

.popup-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.popup-back {
    flex: 0 0 auto;
    padding: 13px 20px;
    background: var(--bg2);
    color: var(--text2);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
    white-space: nowrap;
}

    .popup-back:hover {
        border-color: var(--text2);
    }

.popup-submit {
    flex: 1;
    margin-top: 0;
}

.popup-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

    .popup-success.show {
        display: block;
    }

.ps-anim {
    font-size: 60px;
    color: var(--green);
    margin-bottom: 16px;
    animation: pop-in .5s cubic-bezier(.34,1.56,.64,1);
}

@keyframes pop-in {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-success h4 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
}

.popup-success p {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 16px;
}

.ps-contact {
    background: var(--green-light);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── ACTIVE NAV ── */
.nav-link.active-nav {
    color: var(--green);
    background: var(--green-light);
}

/* ── MARQUEE FIX ── */
marquee {
    max-width: 100%;
    overflow: hidden;
}

    marquee .ls-track {
        display: flex;
        gap: 0;
        width: max-content;
    }

    marquee .ls-school img {
        max-height: 60px;
        width: auto;
        object-fit: contain;
    }

/* ================================================================ */
/*                    RESPONSIVE BREAKPOINTS                        */
/* ================================================================ */

/* ── 1200px and below ── */
@media (max-width: 1200px) {
    .stats-wrap {
        grid-template-columns: repeat(3,1fr);
    }

    .footer-wrap {
        grid-template-columns: 1fr 1fr 1fr;
    }

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

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

    .step-connector {
        display: none;
    }
}

/* ── 1024px and below ── */
@media (max-width: 1024px) {
    .hero-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .fn-1, .fn-2, .fn-3 {
        display: none;
    }

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

    .dashboard-card {
        max-width: 600px;
        width: 100%;
    }

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

    .tab-panel.active {
        grid-template-columns: 1fr;
    }

    .tp-mockup {
        max-width: 100%;
        overflow-x: auto;
    }

    .cta-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-btns {
        justify-content: center;
    }

    .cta-trust {
        justify-content: center;
    }

    .cta-visual {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 200px;
    }

    .faq-wrap {
        grid-template-columns: 1fr;
    }

    .faq-left {
        position: static;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 28px;
    }

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

    .roi-wrap {
        grid-template-columns: 1fr;
    }

    .case-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-quote {
        font-size: 20px;
    }
}

/* ── 768px and below ── */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 200;
        background: #fff;
        flex-direction: column;
        padding: 80px 24px 40px;
        gap: 6px;
        transform: translateX(100%);
        transition: transform .35s;
        overflow-y: auto;
    }

        .main-nav.open {
            transform: translateX(0);
        }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-link {
        font-size: 18px;
        font-weight: 700;
        padding: 14px 16px;
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    .header-call {
        display: none;
    }

    .btn-demo {
        padding: 10px 16px;
        font-size: 13px;
    }

        .btn-demo i {
            display: none;
        }

    .hero {
        padding: 60px 20px 80px;
        min-height: auto;
    }

    .hero-h1 {
        font-size: clamp(28px, 7vw, 44px);
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-right {
        display: none;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .testi-card {
        flex: 0 0 calc(100% - 12px);
    }

    .footer-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .mob-cta {
        display: flex !important;
    }

    .dc-sidebar {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-visual {
        flex-direction: column;
    }

    .announcement-bar {
        font-size: 12px;
        padding: 8px 16px;
    }

    .ab-inner {
        font-size: 12px;
    }

    .compare-table {
        font-size: 12px;
    }

        .compare-table th, .compare-table td {
            padding: 10px 12px;
        }

    .chat-widget {
        display: none;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

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

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

    .section-head h2 {
        font-size: clamp(24px, 5vw, 36px);
    }

    .section-head p {
        font-size: 15px;
    }

    .tp-info h3 {
        font-size: 24px;
    }

    .tp-list li {
        font-size: 13.5px;
    }

    .fm-summary {
        grid-template-columns: 1fr;
    }

    .am-grid {
        grid-template-columns: 1fr;
    }

    .roi-inputs {
        padding: 24px;
    }

    .roi-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .roi-card-icon {
        margin: 0 auto;
    }

    .roi-slider-wrap {
        flex-wrap: wrap;
    }

        .roi-slider-wrap span {
            min-width: auto;
        }

    .case-metrics {
        grid-template-columns: 1fr;
    }

    .pc-num {
        font-size: 42px;
    }

    .pc-currency {
        font-size: 20px;
    }

    .popup {
        width: 95%;
        padding-inline: 20px;
        padding-block: 16px;
    }

    .faq-left h2 {
        font-size: 28px;
    }

    .logo img {
        width: 40px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .scroll-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Timetable scroll fix */
    .timetable-mock {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tt-grid {
        min-width: 460px;
    }

    /* Fee table scroll fix */
    .fee-mock {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Phone mockup scale */
    .phone {
        width: 220px;
    }

    .phone-screen {
        min-height: 360px;
    }
}

/* ── 480px and below ── */
@media (max-width: 480px) {
    .why-section, .tabs-section, .modules-section, .testimonials-section,
    .faq-section, .stats-section, .pricing-section, .cta-section,
    .how-section, .roi-section, .compare-section, .case-section,
    .integrations-section, .blog-section {
        padding: 56px 16px;
    }

    .section-wrap {
        padding: 0 16px;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .hero {
        padding: 48px 16px 60px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-h1 {
        font-size: clamp(26px, 8vw, 36px);
        letter-spacing: -1px;
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-ctas {
        gap: 10px;
    }

        .hero-ctas .btn-primary, .hero-ctas .btn-ghost {
            width: 100%;
            justify-content: center;
            padding: 12px 20px;
            font-size: 14px;
        }

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

        .btn-primary.sm {
            padding: 10px 18px;
            font-size: 13px;
        }

    .btn-ghost {
        padding: 12px 24px;
        font-size: 14px;
    }

    .announcement-bar {
        padding: 8px 12px;
        gap: 6px;
        font-size: 11px;
    }

    .ab-tag {
        font-size: 10px;
        padding: 2px 8px;
    }

    .ab-close {
        right: 8px;
        font-size: 16px;
    }

    .header-wrap {
        padding: 12px 16px;
        gap: 12px;
    }

    .logo {
        font-size: 18px;
        gap: 6px;
    }

        .logo img {
            width: 34px;
        }

    .stats-section {
        padding: 40px 16px;
    }

    .stats-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 16px 12px;
    }

    .sc-num {
        font-size: clamp(24px, 6vw, 36px);
    }

    .sc-label {
        font-size: 11px;
    }

    .why-grid {
        gap: 16px;
    }

    .why-card {
        padding: 24px 20px;
    }

        .why-card h3 {
            font-size: 17px;
        }

        .why-card p {
            font-size: 13.5px;
        }

    .tabs-nav {
        padding: 4px;
        gap: 4px;
        margin-bottom: 28px;
    }

    .tab-btn {
        padding: 8px 14px;
        font-size: 12px;
        gap: 4px;
    }

        .tab-btn i {
            font-size: 11px;
        }

    .tab-panel.active {
        gap: 28px;
    }

    .tp-info h3 {
        font-size: 22px;
    }

    .tp-info p {
        font-size: 14px;
    }

    .tp-list li {
        font-size: 13px;
    }

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

    .mod-card {
        padding: 16px 12px;
    }

    .mod-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .mod-card h4 {
        font-size: 12px;
    }

    .mod-card p {
        font-size: 10px;
    }

    .step-card {
        padding: 24px 18px;
    }

    .step-num {
        font-size: 44px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 13px;
    }

    .roi-inputs {
        padding: 20px;
    }

        .roi-inputs h3 {
            font-size: 18px;
        }

    .roi-field label {
        font-size: 13px;
    }

    .roi-results h3 {
        font-size: 18px;
    }

    .roi-card {
        padding: 16px;
    }

    .roi-card-val {
        font-size: 22px;
    }

    .roi-card-label {
        font-size: 13px;
    }

    .roi-cta-bar {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

        .roi-cta-bar p {
            font-size: 13px;
        }

    .price-card {
        padding: 28px 20px;
    }

    .pc-num {
        font-size: 36px;
    }

    .pc-currency {
        font-size: 18px;
    }

    .pc-desc {
        font-size: 13px;
    }

    .pc-list li {
        font-size: 13px;
    }

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

    .pf-item {
        font-size: 12px;
    }

    .testi-card {
        padding: 20px;
    }

        .testi-card blockquote {
            font-size: 13.5px;
        }

    .case-quote {
        font-size: 17px;
        padding-left: 18px;
    }

    .case-author {
        flex-wrap: wrap;
    }

    .ca-av {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .faq-q {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-a p {
        padding: 0 16px 14px;
        font-size: 13.5px;
    }

    .blog-img {
        height: 130px;
        font-size: 36px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-card h4 {
        font-size: 15px;
    }

    .cta-wrap {
        gap: 32px;
    }

    .cta-content h2 {
        font-size: clamp(26px, 7vw, 36px);
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cta-card {
        padding: 16px;
        gap: 12px;
    }

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

    .int-card {
        padding: 16px;
    }

    .int-icon {
        width: 48px;
        height: 48px;
    }

        .int-icon i {
            font-size: 22px !important;
        }

        .int-icon img {
            height: 24px !important;
        }

    .int-name {
        font-size: 12px;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand p {
        font-size: 13px;
    }

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

    .popup > div > p {
        font-size: 13px;
    }

    .fi-wrap input, .fi-wrap select {
        font-size: 13px;
        padding: 10px 12px 10px 36px;
    }

    .fg label {
        font-size: 12px;
    }

    .popup-next, .popup-submit {
        font-size: 14px;
        padding: 12px;
    }

    .popup-back {
        padding: 12px 16px;
        font-size: 13px;
    }

    .mob-cta {
        font-size: 13px;
        padding: 12px 24px;
        bottom: 16px;
    }

    .scroll-top {
        bottom: 72px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .phone {
        width: 200px;
        border-radius: 32px;
        padding: 10px;
    }

    .phone-screen {
        min-height: 320px;
        border-radius: 22px;
    }

    .phone-notch {
        width: 80px;
        height: 18px;
    }

    .fm-summary {
        grid-template-columns: 1fr;
    }

    .fee-table {
        min-width: 420px;
    }

    .am-grid {
        grid-template-columns: 1fr;
    }

    .dc-kpis {
        grid-template-columns: repeat(3,1fr);
        gap: 4px;
    }

    .kpi-val {
        font-size: 14px;
    }

    .dc-chart-row {
        grid-template-columns: 1fr;
    }

    marquee .ls-school img {
        max-height: 44px;
    }

    .ls-school {
        padding: 0 20px;
        font-size: 12px;
    }
}

/* ── 360px and below (very small phones) ── */
@media (max-width: 360px) {
    .hero-h1 {
        font-size: 24px;
    }

    .hero-sub {
        font-size: 13px;
    }

    .btn-primary, .btn-ghost {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

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

    .mod-card {
        padding: 12px 8px;
    }

    .mod-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .mod-card h4 {
        font-size: 11px;
    }

    .mod-card p {
        font-size: 9px;
    }

    .stats-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .tab-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .pricing-toggle {
        gap: 8px;
    }

    .pt-label {
        font-size: 13px;
    }

    .popup {
        width: 96%;
        padding-inline: 16px;
        padding-block: 14px;
        border-radius: 16px;
    }

    .mob-cta {
        font-size: 12px;
        padding: 10px 20px;
    }

    .cta-btns {
        flex-direction: column;
    }

    .btn-white-solid, .btn-white-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ── Landscape phone fix ── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 24px;
    }

    .popup {
        max-height: 95vh;
    }
}
