/* ─────────────────────────────────────────────
   TOKENS & RESET
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Crimson+Pro:wght@400;500;600&display=swap');

:root {
    --bg: #808080;
    --bg2: #808080;
    --bg3: #1c1c1c;
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(255, 255, 255, 0.12);
    --orange: #f5b027;
    --orange2: #fb923c;
    --gold: #f5b027;
    --gold2: #f0cc7a;
    --light: #FAFAFA;
    --grey: #898989;
    --mid: rgba(250, 250, 250, 0.55);
    --dim: rgba(250, 250, 250, 0.28);
    --rust: #c2440a;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --f-head: 'Poppins', sans-serif;
    --f-body: 'Crimson Pro', Georgia, serif;
    --font-inter: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-body);
    background: var(--light);
    color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 4px;
}

/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
}

.overline {
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f5b027;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.overline::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--orange);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.in {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.in {
    opacity: 1;
    transform: none;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
    }

    50% {
        transform: translateY(-10px) rotate(var(--rot, 0deg));
    }
}

@keyframes halo {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.08);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes shimmer {
    0% {
        background-position: -400% 0;
    }

    100% {
        background-position: 400% 0;
    }
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
nav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.35s;
}

nav.stuck {
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(16px) saturate(140%);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    width: 40px;
    object-fit: contain;
}

.nav-logo {
    font-family: math;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bg);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--orange), var(--rust));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: color 0.2s, background 0.2s;
}

/* .nav-links a:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.05);
} */

.nav-btn {
    font-family: var(--f-head);
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--orange);
    color: white;
    padding: 10px 22px;
    border-radius: var(--r-md);
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    background: var(--orange2);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--light);
    transition: all 0.3s;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
    min-height: 70svh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Grain overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

/* Radial glow */
.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 65%);
    top: -100px;
    left: -200px;
    pointer-events: none;
    animation: halo 8s ease-in-out infinite;
}

.hero-glow2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 65%);
    bottom: 0;
    right: -100px;
    pointer-events: none;
    animation: halo 10s 2s ease-in-out infinite;
}

/* Grid lines */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 60% 40%, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--f-head);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--bg);
    margin-bottom: 26px;
}

.hero h1 em {
    font-style: normal;
    background: #f5b027;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--bg);
    max-width: 440px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-primary {
    font-family: var(--f-head);
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--orange);
    color: white;
    padding: 14px 28px;
    border-radius: var(--r-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--orange2);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    font-family: var(--f-head);
    font-size: 0.9rem;
    font-weight: 500;
    background: transparent;
    color: var(--light);
    padding: 14px 28px;
    border-radius: var(--r-md);
    text-decoration: none;
    border: 1px solid var(--border2);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-family: var(--f-head);
    font-weight: 700;
    color: var(--orange);
    margin-left: -8px;
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.8rem;
    color: var(--dim);
    font-family: var(--f-head);
}

.trust-text strong {
    color: var(--mid);
}

/* ── HERO VISUAL ── */
.hero-visual {
    position: relative;
}

.hero-cards-wrap {
    position: relative;
    height: 500px;
}

.hc {
    position: absolute;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.hc-main {
    width: 280px;
    top: 20px;
    left: 20px;
    animation-duration: 7s;
    --rot: -1deg;
}

.hc-admin {
    width: 200px;
    top: 160px;
    right: 0;
    animation-duration: 5.5s;
    animation-delay: 0.5s;
    --rot: 2deg;
}

.hc-teacher {
    width: 190px;
    bottom: 40px;
    left: 40px;
    animation-duration: 6.5s;
    animation-delay: 1s;
    --rot: -1.5deg;
}

.hc-notif {
    width: 220px;
    top: 0;
    right: 20px;
    animation-duration: 5s;
    animation-delay: 1.5s;
}

.hc-label {
    font-family: var(--f-head);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dim);
    margin-bottom: 10px;
}

.hc-title {
    font-family: var(--f-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
}

.hc-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hc-stat-val {
    font-family: var(--f-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--light);
}

.hc-stat-trend {
    font-family: var(--f-head);
    font-size: 0.7rem;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 3px 8px;
    border-radius: 100px;
}

.hc-bar-row {
    margin-bottom: 6px;
}

.hc-bar-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--f-head);
    font-size: 0.6rem;
    color: var(--dim);
    margin-bottom: 3px;
}

.hc-bar-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    overflow: hidden;
}

.hc-bar-fill {
    height: 100%;
    border-radius: 2px;
}

.hc-mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.hc-mini-row:last-child {
    border: none;
}

.hc-mini-name {
    font-family: var(--f-head);
    font-size: 0.68rem;
    color: var(--mid);
}

.hc-mini-val {
    font-family: var(--f-head);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--orange);
}

.hc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hc-notif-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.hc-notif-item:last-child {
    border: none;
    padding-bottom: 0;
}

.hc-notif-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.hc-notif-text {
    font-family: var(--f-head);
    font-size: 0.65rem;
    color: var(--mid);
    line-height: 1.4;
}

.hc-notif-text strong {
    color: var(--light);
    font-weight: 600;
}

.hc-notif-time {
    font-size: 0.58rem;
    color: var(--dim);
    margin-top: 2px;
}

.hc-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-family: var(--f-head);
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
}

/* ─────────────────────────────────────────────
   TICKER
───────────────────────────────────────────── */
.ticker-wrap {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.ticker-item {
    font-family: var(--f-head);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--dim);
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ticker-sep {
    color: var(--orange);
    opacity: 0.5;
    font-size: 0.6rem;
}

/* ─────────────────────────────────────────────
   DIGITAL PRESENCE SECTION
───────────────────────────────────────────── */
.dp-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.dp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.dp-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.dp-left {
    position: sticky;
    top: 120px;
}

.section-num {
    font-family: var(--f-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--border2);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.dp-left h2 {
    font-family: var(--f-head);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--light);
    margin: 14px 0 20px;
}

.dp-left p {
    font-size: 1.05rem;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 300;
    max-width: 340px;
}

.dp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    padding: 8px 16px;
    border-radius: var(--r-md);
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    font-family: var(--f-head);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange2);
}

.dp-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dp-right.home-sev {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 20px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg2);
    border: 1px solid var(--bg);
    border-radius: var(--r-lg);
    padding: 28px 30px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    transition: all 0.35s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

a.click-here {
    text-decoration: none;
    font-family: var(--f-head);
    color: var(--bg);
    width: 127px;
    background: #f5b027;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0px;
    border-radius: 5px;
    margin-top: 15px;
}

.right-img img {
    object-fit: contain;
    width: 100%;
}


.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.service-card.featured .service-icon {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.service-title {
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.65;
}

.service-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.stag {
    font-family: var(--f-head);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--dim);
    border: 1px solid var(--border);
}

/* ─────────────────────────────────────────────
   SMS SECTION (School Management System)
───────────────────────────────────────────── */
.sms-section {
    padding: 120px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.sms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sms-header {
    text-align: center;
    margin-bottom: 72px;
}

.sms-header h2 {
    font-family: var(--f-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--light);
    margin: 14px 0 18px;
}

.sms-header p {
    font-size: 1.05rem;
    color: var(--mid);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

/* Apps row */
.apps-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.app-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--f-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mid);
}

.app-tab-icon {
    font-size: 1.1rem;
}

.app-tab.active {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--light);
}

.app-tab:hover:not(.active) {
    border-color: var(--border2);
    color: var(--light);
}

.app-panels {
    position: relative;
}

.app-panel {
    display: none;
}

.app-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    animation: fadeUp 0.45s ease both;
}

.panel-text h3 {
    font-family: var(--f-head);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--light);
    margin: 12px 0 16px;
}

.panel-text p {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
}

.features-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--r-md);
    background: var(--bg3);
    border: 1px solid var(--border);
    font-family: var(--f-head);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mid);
    transition: all 0.25s;
}

.chip:hover {
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--light);
    background: rgba(249, 115, 22, 0.07);
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

/* Panel mock UI */
.panel-mock {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.panel-mock::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 0%, rgba(249, 115, 22, 0.07), transparent 60%);
    pointer-events: none;
}

.pm-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.pm-dots {
    display: flex;
    gap: 5px;
}

.pm-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.pm-tab-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.pm-tab {
    font-family: var(--f-head);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    cursor: default;
}

.pm-tab.on {
    background: var(--orange);
    color: white;
}

.pm-tab.off {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dim);
}

.pm-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.pm-metric {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--r-sm);
    padding: 10px;
    border: 1px solid var(--border);
}

.pm-metric-val {
    font-family: var(--f-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--light);
}

.pm-metric-lbl {
    font-family: var(--f-head);
    font-size: 0.58rem;
    color: var(--dim);
    margin-top: 2px;
}

.pm-metric-up {
    font-family: var(--f-head);
    font-size: 0.58rem;
    color: #4ade80;
    margin-top: 3px;
}

.pm-chart {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--r-sm);
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.pm-chart-title {
    font-family: var(--f-head);
    font-size: 0.6rem;
    color: var(--dim);
    margin-bottom: 10px;
}

.pm-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 48px;
}

.pm-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
}

.pm-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.pm-row:last-child {
    border: none;
}

.pm-row-name {
    font-family: var(--f-head);
    font-size: 0.65rem;
    color: var(--mid);
}

.pm-row-val {
    font-family: var(--f-head);
    font-size: 0.65rem;
    font-weight: 700;
}

.pm-row-badge {
    font-family: var(--f-head);
    font-size: 0.58rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   COMPANY SECTION
───────────────────────────────────────────── */
.about-section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

/* Large decorative letter */
.about-section::after {
    content: 'S';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--f-head);
    font-size: 28rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.018);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-left h2 {
    font-family: var(--f-head);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bg);
    margin: 14px 0 24px;
    line-height: 1.1;
}

.about-left h2 span {
    background: #f5b027;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-left>p {
    --f-head: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--bg);
    line-height: 1.9;
    font-weight: 300;
}

.about-left .about-quote {
    margin-top: 32px;
    padding: 20px 24px;
    border-left: 2px solid var(--orange);
    background: rgba(249, 115, 22, 0.04);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.about-quote p {
    font-family: var(--f-body);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--mid);
    line-height: 1.7;
    font-weight: 300;
}

.about-quote cite {
    font-family: var(--f-head);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: 8px;
    display: block;
}

/* Strength cards */
.strengths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.strength-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.strength-card:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
}

.strength-card:hover::before {
    transform: scaleX(1);
}

.strength-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.strength-title {
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}

.strength-desc {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
}

.strength-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--f-head);
    font-size: 2.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    -webkit-text-stroke: 2px #f5b0273a;
    color: transparent;
}

/* ─────────────────────────────────────────────
   NUMBERS STRIP
───────────────────────────────────────────── */
.numbers-strip {
    padding: 60px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.number-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--border);
}

.number-item:last-child {
    border: none;
}

.number-val {
    font-family: var(--f-head);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--light), var(--dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-val .accent {
    -webkit-text-fill-color: var(--orange);
}

.number-lbl {
    font-family: var(--f-head);
    font-size: 0.78rem;
    color: var(--dim);
    margin-top: 4px;
}


/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--dim);
    line-height: 1.75;
    margin: 14px 0 22px;
    max-width: 260px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.fsoc {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.fsoc:hover {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--orange);
}

.footer-col h5 {
    font-family: var(--f-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: var(--f-head);
    font-size: 0.83rem;
    color: rgba(250, 250, 250, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: var(--f-head);
    font-size: 0.75rem;
    color: var(--dim);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {

    .right-img img {
        object-fit: contain;
        width: 100%;
    }

    .hero-inner,
    .dp-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dp-left {
        position: static;
    }

    .hero-cards-wrap {
        height: 360px;
    }

    .hc-admin {
        right: 0;
        top: 120px;
    }

    .hc-teacher {
        bottom: 20px;
        left: 20px;
    }

    .app-panel.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .panel-mock {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-section::after {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .dp-right.home-sev {
        grid-template-columns: repeat(1, 1fr);
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 80px 0 !important;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-cards-wrap {
        height: 300px;
    }

    .hc-main {
        width: 220px;
    }

    .hc-admin {
        width: 160px;
    }

    .hc-teacher {
        width: 150px;
        bottom: 0;
        left: 10px;
    }

    .hc-notif {
        display: none;
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .number-item:nth-child(2) {
        border-right: none;
    }

    .number-item:nth-child(3) {
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border);
    }

    .number-item:nth-child(4) {
        border-top: 1px solid var(--border);
        border-right: none;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .apps-tabs {
        gap: 6px;
    }

    .app-tab {
        padding: 10px 14px;
        font-size: 0.75rem;
    }
}

/* Mobile menu */
.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mob-menu.open {
    display: flex;
    animation: fadeUp 0.3s ease;
}

.mob-menu a {
    font-family: var(--f-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    transition: color 0.2s;
}

.mob-menu a:hover {
    color: var(--orange);
}

.mob-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--mid);
    font-size: 1.4rem;
    cursor: pointer;
    font-family: var(--f-head);
}