/* ============================================================
   ABACUS ACADEMY — PUBLIC DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS TOKENS ──────────────────────────────────────────── */
:root {
    --primary:        #6c5bd9;
    --primary-dark:   #4d3dbf;
    --primary-light:  #8a77e8;
    --secondary:      #20c997;
    --secondary-dark: #17a07a;
    --accent:         #f72585;
    --gold:           #ffd166;
    --dark:           #0f172a;
    --dark2:          #1e293b;
    --dark3:          #334155;
    --muted:          #64748b;
    --light:          #f8fafc;
    --border:         #e2e8f0;
    --white:          #ffffff;

    --gradient-primary:  linear-gradient(135deg, #6c5bd9 0%, #8755c3 100%);
    --gradient-hero:     linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    --gradient-card:     linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    --gradient-green:    linear-gradient(135deg, #198754 0%, #20c997 100%);
    --gradient-accent:   linear-gradient(135deg, #f72585 0%, #b5179e 100%);
    --gradient-gold:     linear-gradient(135deg, #ffd166 0%, #ef9b20 100%);

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:  0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
    --shadow-xl:  0 30px 80px rgba(0,0,0,0.20);
    --shadow-primary: 0 8px 30px rgba(108,91,217,0.35);
    --shadow-green:   0 8px 30px rgba(32,201,151,0.35);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }

/* ── UTILITY CLASSES ─────────────────────────────────────── */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,91,217,0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(108,91,217,0.2);
    margin-bottom: 1rem;
}

.section-label.green {
    background: rgba(32,201,151,0.08);
    color: var(--secondary-dark);
    border-color: rgba(32,201,151,0.25);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.pub-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.pub-navbar.scrolled,
.pub-navbar.dark-hero {
    background: rgba(15,23,42,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.65rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-brand-icon img { max-width: none; }
.nav-mobile-brand-icon img { max-width: none; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-nav-verify {
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
}

.btn-nav-verify:hover {
    background: rgba(255,255,255,0.18);
    color: white;
    border-color: rgba(255,255,255,0.6);
}

.btn-nav-login {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.5rem 1.4rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    border: none;
}

.btn-nav-login:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 10px 40px rgba(108,91,217,0.45);
    color: white;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE MENU ──────────────────────────────────────────── */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 92vw);
    z-index: 1001;
    flex-direction: column;
    background: #0f172a;
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop overlay */
.nav-mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-mobile-backdrop.open {
    display: block;
    opacity: 1;
}

.nav-mobile.open {
    display: flex;
    transform: translateX(0);
}

/* Mobile menu header */
.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    flex-shrink: 0;
}

.nav-mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.nav-mobile-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
}

.nav-mobile-close {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-mobile-close:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    transform: rotate(90deg);
}

/* Nav links section */
.nav-mobile-links {
    flex: 1;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.nav-mobile-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    padding: 0.5rem 0.75rem 0.25rem;
    font-family: var(--font-heading);
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.08);
    color: white;
    transform: translateX(4px);
}

.nav-mobile-link.active {
    background: rgba(108,91,217,0.15);
    border-color: rgba(108,91,217,0.3);
    color: #a78bfa;
}

.nav-mobile-link .mob-link-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    transition: var(--transition);
}

.nav-mobile-link:hover .mob-link-icon,
.nav-mobile-link.active .mob-link-icon {
    background: rgba(108,91,217,0.2);
}

.nav-mobile-link .mob-link-arrow {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0.35;
    transition: var(--transition);
}

.nav-mobile-link:hover .mob-link-arrow { opacity: 0.7; transform: translateX(3px); }

.nav-mobile-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.5rem 0.75rem;
}

/* Mobile footer CTA area */
.nav-mobile-footer {
    padding: 1.25rem 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-shrink: 0;
}

.nav-mobile-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.nav-mobile-cta-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: white;
}

.nav-mobile-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(32,201,151,0.1);
    color: #6ee7b7;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: 1px solid rgba(32,201,151,0.25);
    text-decoration: none;
}

.nav-mobile-cta-secondary:hover {
    background: rgba(32,201,151,0.18);
    border-color: rgba(32,201,151,0.4);
    color: #6ee7b7;
    transform: translateY(-1px);
}


/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

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

.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #6c5bd9, transparent);
    top: -200px; left: -200px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #20c997, transparent);
    bottom: -150px; right: -100px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #f72585, transparent);
    top: 40%; left: 60%;
    animation: orbFloat1 10s ease-in-out infinite reverse;
    opacity: 0.2;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.05); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.08); }
}

/* Grid dots pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,91,217,0.25);
    border: 1px solid rgba(108,91,217,0.5);
    color: #a9a0ff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    animation: fadeSlideUp 0.6s ease both;
}

.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(2); opacity: 0; }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.7s ease 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #a78bfa, #60a5fa, #34d399);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.7s ease 0.3s both;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(108,91,217,0.5);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    color: white;
}

.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeSlideUp 0.9s ease 0.4s both;
}

/* Dashboard preview card */
.hero-preview-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-preview-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca41; }

.preview-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.preview-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.preview-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

.preview-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-progress-list { display: flex; flex-direction: column; gap: 0.6rem; }

.preview-progress-item { display: flex; flex-direction: column; gap: 4px; }

.preview-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.preview-progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
    overflow: hidden;
}

.preview-progress-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--gradient-primary);
    transition: width 1.5s ease;
}

.preview-progress-fill.green { background: var(--gradient-green); }
.preview-progress-fill.gold { background: var(--gradient-gold); }

/* Floating badges */
.hero-float-badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.hero-float-badge.b1 {
    top: -30px; left: -20px;
    z-index: 10;
    animation: floatBadge1 3s ease-in-out infinite;
}

.hero-float-badge.b2 {
    bottom: -20px; right: -20px;
    animation: floatBadge2 4s ease-in-out infinite;
}

@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0); }
    50%  { transform: translateY(-8px); }
}
@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0); }
    50%  { transform: translateY(8px); }
}

.badge-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ── HERO EDUCATIONAL CARD ───────────────────────────────── */
.edu-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 1.8rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.edu-card-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(108,91,217,0.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Level progression path */
.edu-level-path {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1.8rem;
    padding: 0.5rem 0;
}

.edu-level-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.edu-level-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
    transition: var(--transition);
}

.edu-level-step.active .edu-level-circle {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3), 0 0 30px rgba(108,91,217,0.4);
    transform: scale(1.1);
}

.edu-level-step:hover .edu-level-circle {
    transform: scale(1.15);
}

.edu-level-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.edu-level-step.active .edu-level-name {
    color: white;
}

.edu-level-connector {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
    margin: 0 4px;
    margin-top: 29px;
    flex-shrink: 0;
    border-radius: 2px;
}

/* Stats circles row */
.edu-stats-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.edu-stat-circle {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 0.9rem 0.5rem;
    text-align: center;
    transition: var(--transition);
}

.edu-stat-circle:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.edu-stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.edu-stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
    background: var(--dark);
    padding: 3.5rem 0;
    position: relative;
    z-index: 3;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.stats-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-heading);
    margin-bottom: 0.4rem;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 900;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ── FEATURES ────────────────────────────────────────────── */
.features-section {
    padding: 7rem 0;
    background: var(--light);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.hiw-section {
    padding: 7rem 0;
    background: white;
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connector line */
.hiw-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 40px);
    right: calc(16.66% + 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}

.hiw-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hiw-step-num {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.hiw-step:hover .hiw-step-num { transform: scale(1.1); }

.hiw-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.hiw-step-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 0.5rem;
    opacity: 0.3;
    font-family: var(--font-heading);
    font-weight: 900;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--dark3);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

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

.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    font-family: var(--font-heading);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(108,91,217,0.4), transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(32,201,151,0.3), transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── CONTACT PREVIEW ─────────────────────────────────────── */
.contact-preview-section {
    padding: 7rem 0;
    background: var(--light);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.contact-card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-card-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
}

.contact-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.contact-card-value {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.pub-footer {
    background: var(--dark);
    padding: 4rem 0 2rem;
    position: relative;
}

.pub-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.footer-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: white; padding-left: 4px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.footer-contact-icon {
    width: 32px; height: 32px;
    background: rgba(108,91,217,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

/* ── CONTAINER ───────────────────────────────────────────── */
.pub-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── SHARED BUTTONS ──────────────────────────────────────── */
.btn-primary-pub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    border: none;
    cursor: pointer;
}

.btn-primary-pub:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(108,91,217,0.45);
    color: white;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

.btn-green-pub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-green);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    border: none;
    cursor: pointer;
}

.btn-green-pub:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-page { padding-top: 80px; min-height: 100vh; }

.contact-hero-band {
    background: var(--gradient-hero);
    padding: 5rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 35px 35px;
}

.contact-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.contact-hero-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #6c5bd9, transparent);
    top: -100px; right: -100px;
}

.contact-hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #20c997, transparent);
    bottom: -50px; left: 5%;
}

.contact-hero-text { position: relative; z-index: 2; text-align: center; }

.contact-main-area {
    max-width: 1100px;
    margin: -5rem auto 0;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 5;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info-panel {
    background: var(--gradient-primary);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
    border-radius: 50%;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.contact-info-inner { position: relative; z-index: 2; }

.contact-info-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.contact-info-sub {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon-wrap {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-info-text span {
    font-size: 0.85rem;
    opacity: 0.75;
}

.contact-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-hours-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.contact-hours p {
    font-size: 0.88rem;
    opacity: 0.8;
    margin: 0;
}

.contact-form-panel {
    background: white;
    padding: 3rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.contact-form-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* Floating label inputs */
.float-group {
    position: relative;
    margin-bottom: 1.4rem;
}

.float-group input,
.float-group textarea,
.float-group select {
    width: 100%;
    padding: 1rem 1rem 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    color: var(--dark);
    background: white;
}

.float-group textarea { min-height: 120px; resize: vertical; }

.float-group input:focus,
.float-group textarea:focus,
.float-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,91,217,0.12);
}

.float-group label {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 4px;
}

.float-group input:focus + label,
.float-group input:not(:placeholder-shown) + label,
.float-group textarea:focus + label,
.float-group textarea:not(:placeholder-shown) + label,
.float-group select:focus + label {
    top: -0.55rem;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.form-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ── VERIFY PAGE ─────────────────────────────────────────── */
.verify-page {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    display: flex;
    flex-direction: column;
}

.verify-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.verify-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.verify-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.3;
}

.verify-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #198754, transparent);
    top: -100px; right: 0;
}

.verify-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #6c5bd9, transparent);
    bottom: 0; left: 0;
}

.verify-card-outer {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
}

.verify-super-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.verify-card-header {
    background: linear-gradient(135deg, rgba(25,135,84,0.8), rgba(32,201,151,0.8));
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.verify-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 25px 25px;
}

.verify-shield-icon {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50%       { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
}

.verify-card-body { padding: 2.5rem; }

.verify-input {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
    background: rgba(255,255,255,0.07);
    color: white;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.verify-input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 1px; }

.verify-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(32,201,151,0.2);
    background: rgba(255,255,255,0.1);
}

/* Valid result */
.verify-result-success {
    background: rgba(25,135,84,0.1);
    border: 1.5px solid rgba(32,201,151,0.4);
    border-radius: var(--radius-lg);
    padding: 2rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0%   { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.verify-check-icon {
    width: 70px; height: 70px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-green);
}

.verify-result-table { width: 100%; }

.verify-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.verify-result-row:last-child { border-bottom: none; }

.verify-result-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.verify-result-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-align: right;
}

.verify-result-value.cert-id { color: var(--secondary); font-size: 1rem; }

/* Error state */
.verify-result-error {
    background: rgba(220,38,38,0.1);
    border: 1.5px solid rgba(248,113,113,0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    animation: popIn 0.4s ease;
}

.verify-x-icon {
    width: 56px; height: 56px;
    background: rgba(248,113,113,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fca5a5;
    margin: 0 auto 1rem;
}

/* ── WHY ABACUS (BENEFITS) ────────────────────────────────── */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--light);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.benefit-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon { transform: scale(1.1); }

.benefit-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.benefit-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── PROGRAMS / COURSES ──────────────────────────────────── */
.programs-section {
    padding: 6rem 0;
    background: var(--light);
    position: relative;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.program-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.program-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.program-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    font-size: 0.85rem;
    color: var(--dark3);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.program-features li:last-child { border-bottom: none; }

.program-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

/* ── FLOATING TESTIMONIAL BUTTON ─────────────────────────── */
.testimonial-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(108,91,217,0.45);
    transition: var(--transition);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(108,91,217,0.55);
}

.fab-icon { font-size: 1.3rem; }

/* ── TESTIMONIAL MODAL ───────────────────────────────────── */
.testimonial-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-modal-backdrop.open {
    display: block;
    opacity: 1;
}

.testimonial-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    background: white;
    border-radius: 20px;
    width: min(500px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.testimonial-modal.open {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.testimonial-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.testimonial-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.testimonial-modal-header {
    background: var(--gradient-primary);
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.testimonial-modal-header::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent);
    border-radius: 50%;
}

.tmodal-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.tmodal-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}

.tmodal-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

.tmodal-body {
    padding: 1.5rem 2rem 2rem;
}

.tmodal-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #16a34a;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.tmodal-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.tmodal-field {
    margin-bottom: 1.2rem;
}

.tmodal-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.tmodal-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    color: var(--dark);
    background: white;
}

.tmodal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,91,217,0.12);
}

.tmodal-textarea {
    min-height: 110px;
    resize: vertical;
}

.tmodal-stars {
    display: flex;
    gap: 4px;
    margin: 0.3rem 0;
}

.tmodal-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    margin-top: 0.5rem;
}

.tmodal-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(108,91,217,0.4);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid,
    .testimonials-grid,
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-split { grid-template-columns: 1fr; }
    .contact-info-panel { padding: 2.5rem 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-hamburger { display: flex; }
    .hero-title { letter-spacing: -1px; }
    .hero-content > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .edu-level-connector { width: 20px; }
    .edu-level-circle { width: 50px; height: 50px; font-size: 1.3rem; }
    .edu-level-connector { margin-top: 24px; }
    .features-grid,
    .testimonials-grid,
    .contact-cards-grid,
    .hiw-steps,
    .programs-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .hiw-steps::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row2 { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 2rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .pub-container { padding: 0 1.25rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; align-items: center; }
}
