/* ==========================================================================
   SCHOOL CENTER - 3D NEXT-GEN LANDING PAGE STYLESHEET
   ========================================================================== */

:root {
    --bg-primary: #0b0e17;
    --bg-secondary: #121724;
    --bg-elevated: #1a2133;
    --bg-glass: rgba(18, 24, 38, 0.76);
    --bg-glass-card: rgba(22, 29, 46, 0.68);
    --bg-glass-card-hover: rgba(30, 40, 64, 0.88);
    --bg-glass-input: rgba(15, 20, 34, 0.85);
    
    --border-glass: rgba(255, 255, 255, 0.09);
    --border-glass-hover: rgba(245, 158, 11, 0.38);
    --border-accent: rgba(245, 158, 11, 0.55);
    
    --accent-amber: #f59e0b;
    --accent-amber-light: #fbbf24;
    --accent-amber-dark: #d97706;
    --accent-amber-glow: rgba(245, 158, 11, 0.38);
    --accent-amber-subtle: rgba(245, 158, 11, 0.08);
    --accent-warm-gold: #f59e0b;
    
    --accent-emerald: #10b981;
    --accent-emerald-light: #34d399;
    --accent-cyan: #06b6d4;
    --accent-blue: #3b82f6;
    
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-inverse: #0b0e17;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-3d: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px -5px rgba(245, 158, 11, 0.16);
    --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(251, 191, 36, 0.15);
    --shadow-card-hover: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 32px rgba(245, 158, 11, 0.22), inset 0 1px 0 rgba(251, 191, 36, 0.3);
    --shadow-glow: 0 0 35px rgba(245, 158, 11, 0.4);
    --shadow-glow-amber: 0 0 35px rgba(245, 158, 11, 0.4);
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* Reset & Global Base */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
    color-scheme: dark;
}

#home,
#features,
#experience,
#pricing,
#about-us,
#faq,
#contact-us,
section[id] {
    scroll-margin-top: 85px;
}

body.sidebar-fixed {
    font-family: var(--font-body) !important;
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container-scroller {
    background: var(--bg-primary) !important;
    overflow-x: hidden;
    position: relative;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #fffbeb 0%, #fde68a 35%, #fbbf24 70%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    font-weight: 900;
    filter: drop-shadow(0 2px 20px rgba(245, 158, 11, 0.4));
}

.gradient-text-emerald {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ambient Lighting & Background Grid */
.bg-ambient-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(217, 119, 6, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 55%),
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 64px 64px, 64px 64px;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.sc-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
    background: rgba(11, 14, 23, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.sc-navbar.scrolled {
    padding: 10px 0;
    background: rgba(11, 14, 23, 0.92);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(245, 158, 11, 0.25);
}

.sc-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sc-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.sc-brand-logo:hover {
    transform: translateY(-1px);
}

.sc-brand-logo img.sc-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(16, 185, 129, 0.35));
}

.sc-brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sc-brand-text span {
    color: var(--accent-emerald);
}

.sc-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-nav-link {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    position: relative;
    padding: 7px 13px;
    border-radius: var(--radius-full);
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sc-nav-link:hover {
    color: #fbbf24 !important;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(245, 158, 11, 0.22);
    transform: translateY(-1px);
}

.sc-nav-link.active {
    color: #fde68a !important;
    background: rgba(245, 158, 11, 0.18) !important;
    border: 1px solid rgba(245, 158, 11, 0.5) !important;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.25) !important;
}

.sc-nav-link::after {
    display: none;
}

.sc-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Warm Amber School Button Styles */
.btn-3d-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #0b0e17 !important;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 55%, #d97706 100%);
    border: 1px solid rgba(254, 243, 199, 0.5);
    border-radius: 12px;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 6px 20px -3px rgba(245, 158, 11, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-3d-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

.btn-3d-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(245, 158, 11, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    border-color: #ffffff;
    color: #000000 !important;
}

.btn-3d-primary:hover::before {
    left: 100%;
}

.btn-3d-primary:active {
    transform: translateY(1px) scale(0.99);
}

/* Dedicated Navbar Trial CTA Button - Sleek & Refined */
.sc-nav-trial-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    color: #0b0e17 !important;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 55%, #d97706 100%);
    border: 1px solid rgba(254, 243, 199, 0.5);
    border-radius: 10px;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.sc-nav-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: #ffffff;
    color: #000000 !important;
}

.btn-3d-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    text-decoration: none !important;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-3d-secondary:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
    color: #fbbf24 !important;
}

.btn-3d-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-decoration: none !important;
}

.btn-3d-ghost:hover {
    color: #fbbf24 !important;
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.sc-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1.25rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION WITH 3D CANVAS
   ========================================================================== */
.hero-3d-section {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    padding: 105px 0 40px;
    overflow: hidden;
    z-index: 1;
}

#three-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 1;
    opacity: 0.92;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
}

.hero-content-shield {
    position: absolute;
    inset: -30px -40px -30px -30px;
    background: radial-gradient(ellipse at 40% 50%, rgba(7, 9, 19, 0.88) 0%, rgba(7, 9, 19, 0.6) 65%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    border-radius: 36px;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(251, 191, 36, 0.45);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fde68a;
    margin-bottom: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    box-shadow: 0 0 10px #f59e0b;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    font-weight: 450;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 580px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 42px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    max-width: 500px;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -10px;
    background-size: cover;
    background-position: center;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.92rem;
    color: #cbd5e1;
}

.proof-text strong {
    color: #ffffff;
    font-weight: 700;
}

.proof-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

/* ==========================================================================
   3D HERO INTERACTIVE DEVICE SHOWCASE
   ========================================================================== */
.hero-3d-stage {
    position: relative;
    perspective: 1400px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-3d-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: var(--bg-glass-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    padding: 22px;
    transform-style: preserve-3d;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 20;
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.window-dots {
    display: flex;
    gap: 7px;
}

.window-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.showcase-title-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.showcase-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.metric-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.metric-pill:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(52, 211, 153, 0.3);
}

.metric-pill .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-pill .val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.metric-pill .trend {
    font-size: 0.72rem;
    color: var(--accent-emerald-light);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

/* Dashboard Mock Visual */
.showcase-chart-preview {
    background: rgba(7, 9, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 18px;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.chart-header span {
    font-size: 0.85rem;
    font-weight: 600;
}

.chart-bars-mock {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    padding-top: 10px;
}

.chart-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar-fill {
    width: 100%;
    background: linear-gradient(180deg, #10b981 0%, #064e3b 100%);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.chart-bar-fill.accent-cyan {
    background: linear-gradient(180deg, #06b6d4 0%, #0e7490 100%);
}

.chart-bar-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Floating 3D Mobile Showcase */
.floating-mobile-frame {
    position: absolute;
    right: -24px;
    bottom: -35px;
    width: 185px;
    background: #000000;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(6, 182, 212, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(60px) rotateY(-8deg) rotateX(6deg);
    transition: var(--transition-smooth);
    z-index: 15;
    animation: floatPhone 6s ease-in-out infinite alternate;
}

@keyframes floatPhone {
    0% { transform: translateZ(60px) rotateY(-8deg) rotateX(6deg) translateY(0px); }
    100% { transform: translateZ(80px) rotateY(-4deg) rotateX(2deg) translateY(-14px); }
}

.mobile-notch {
    width: 60px;
    height: 12px;
    background: #000000;
    border-radius: var(--radius-full);
    margin: 4px auto 8px;
}

.mobile-screen-img {
    width: 100%;
    height: auto;
    border-radius: 26px;
    display: block;
}

/* Floating 3D Badges */
.floating-3d-badge {
    position: absolute;
    padding: 10px 18px;
    background: rgba(14, 20, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass-hover);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 25;
    transition: var(--transition-smooth);
}

.floating-badge-1 {
    top: -20px;
    right: 20px;
    transform: translateZ(90px);
    animation: floatBadge1 5s ease-in-out infinite alternate;
}

.floating-badge-2 {
    bottom: 20px;
    left: -30px;
    transform: translateZ(70px);
    animation: floatBadge2 5.5s ease-in-out infinite alternate;
}

@keyframes floatBadge1 {
    0% { transform: translateZ(90px) translateY(0); }
    100% { transform: translateZ(90px) translateY(-10px); }
}

@keyframes floatBadge2 {
    0% { transform: translateZ(70px) translateY(0); }
    100% { transform: translateZ(70px) translateY(12px); }
}

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

.badge-icon-box.emerald {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
}

.badge-icon-box.cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
}

.badge-meta .title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.badge-meta .sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ==========================================================================
   LIVE IMPACT COUNTER RIBBON
   ========================================================================== */
.stats-ribbon-section {
    position: relative;
    z-index: 10;
    margin-top: -15px;
    margin-bottom: 45px;
}

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

.stat-card-3d {
    background: var(--bg-glass-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.stat-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-emerald), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-card-3d:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-card-hover);
}

.stat-card-3d:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.text-center .stat-number,
.stat-number.justify-content-center {
    justify-content: center;
}

.stat-number .plus {
    color: var(--accent-emerald);
    font-size: 1.8rem;
}

.stat-label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==========================================================================
   SECTION COMMON HEADER - CONSISTENT SPACING & HARMONIOUS HIERARCHY
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.section-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-emerald);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   INTERACTIVE PRODUCT TOUR (ROLES) - COMPACT & STANDARD VIEWPORT ADAPTIVE
   ========================================================================== */
.tour-section {
    position: relative;
    padding: 45px 0;
    z-index: 10;
}

.tour-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tour-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tour-tab-btn:hover {
    color: #fff;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.35);
    transform: translateY(-2px);
}

.tour-tab-btn.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.25) 100%);
    border-color: var(--accent-amber);
    color: #fbbf24;
    box-shadow: 0 6px 20px -3px rgba(245, 158, 11, 0.4);
}

.tour-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.tour-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tour-card {
    background: linear-gradient(135deg, rgba(20, 26, 42, 0.9) 0%, rgba(13, 17, 28, 0.96) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 20px;
    padding: 32px 38px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.1);
}

.tour-card-title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #ffffff;
}

.tour-card-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #94a3b8;
    margin-bottom: 16px;
}

.tour-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.45;
}

.tour-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Smartphone Showcase Frame - 100% Full Uncropped Device View */
.tour-preview-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.tour-preview-wrapper::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 1;
}

.tour-preview-frame {
    position: relative;
    z-index: 2;
    width: 205px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 34px;
    border: 6px solid #1a2233;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 158, 11, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    overflow: hidden;
    background: #000000;
    aspect-ratio: 1272 / 2772;
}

.tour-preview-frame::before {
    display: none;
}

.tour-preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.tour-preview-frame:hover img {
    transform: scale(1.02);
}

/* ==========================================================================
   CORE FEATURES MATRIX (3D CARDS)
   ========================================================================== */
.features-section {
    position: relative;
    padding: 45px 0;
    z-index: 10;
}

.features-filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-chip:hover, .filter-chip.active {
    background: rgba(245, 158, 11, 0.16);
    border-color: var(--accent-amber);
    color: #fde68a;
}

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

.feature-card-3d {
    background: var(--bg-glass-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-3d:hover {
    transform: translateY(-8px);
    background: var(--bg-glass-card-hover);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-card-hover);
}

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

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition-bounce);
}

.feature-icon-wrapper img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-card-3d:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.feature-card-title {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex-grow: 1;
}

.feature-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-emerald);
    margin-top: 18px;
}

/* ==========================================================================
   PARTNER SCHOOL LOGOS CAROUSEL
   ========================================================================== */
.partners-section {
    padding: 32px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(12, 16, 33, 0.4);
}

.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    text-align: center;
}

.partner-logo-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-3px);
}

.partner-logo-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.partner-logo-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ==========================================================================
   PRICING SECTION WITH 3D SPOTLIGHT - VIEWPORT FIT & COMPACT DESIGN
   ========================================================================== */
.pricing-section {
    position: relative;
    padding: 45px 0 35px;
    z-index: 10;
    scroll-margin-top: 85px;
}

.pricing-section .section-header {
    margin: 0 auto 20px;
}

.pricing-section .section-tagline {
    margin-bottom: 8px;
    padding: 4px 14px;
    font-size: 0.78rem;
}

.pricing-section .section-title {
    font-size: 2.1rem;
    margin-bottom: 6px;
}

.pricing-section .section-subtitle {
    font-size: 0.94rem;
    line-height: 1.45;
    max-width: 640px;
    margin: 0 auto;
}

.pricing-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    align-items: stretch;
}

.pricing-card-3d {
    background: linear-gradient(180deg, rgba(20, 26, 42, 0.85) 0%, rgba(13, 17, 28, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 24px 30px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    flex: 1 1 360px;
    max-width: 580px;
    width: 100%;
}

.pricing-card-3d:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
}

.pricing-card-3d.highlighted {
    background: linear-gradient(180deg, rgba(38, 27, 14, 0.92) 0%, rgba(16, 21, 35, 0.98) 100%);
    border: 2px solid #f59e0b;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(254, 243, 199, 0.2);
}

.pricing-card-3d.highlighted:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.45);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0b0e17;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.pricing-tier-type {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    align-self: flex-start;
}

.pricing-tier-type.postpaid {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.pricing-tier-type.prepaid {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.pricing-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.pricing-duration {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.pricing-limits {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    margin-bottom: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.limit-item {
    font-size: 0.86rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 18px;
}

.pricing-features-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.pricing-features-list li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.pricing-features-list li i {
    font-size: 0.82rem;
    flex-shrink: 0;
}

.pricing-features-list li i.fa-check {
    color: #fbbf24;
}

.pricing-features-list li i.fa-xmark {
    color: #ef4444;
}

.pricing-card-3d .btn-3d-primary {
    padding: 10px 24px;
    font-size: 0.94rem;
    border-radius: 12px;
}

@media (max-width: 580px) {
    .pricing-card-3d {
        padding: 22px 18px 18px;
    }
    .pricing-limits {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .pricing-features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .pricing-features-list li {
        white-space: normal;
    }
}

/* Custom Package Card - Warm Amber School Aesthetics */
.custom-package-card {
    background: linear-gradient(135deg, rgba(38, 28, 16, 0.85) 0%, rgba(18, 23, 36, 0.95) 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 20px;
    padding: 24px 30px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.15);
}

.custom-package-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.35);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Global Badge Overrides - Never Allow Solid Green Unreadable Blocks */
.badge.bg-success,
.badge-success {
    background-color: rgba(245, 158, 11, 0.14) !important;
    color: #fbbf24 !important;
    border: 1px solid rgba(245, 158, 11, 0.35) !important;
    font-weight: 600 !important;
}

.sc-badge-amber {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fbbf24 !important;
    background: rgba(245, 158, 11, 0.14) !important;
    border: 1px solid rgba(245, 158, 11, 0.35) !important;
    border-radius: 999px;
}

.sc-badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0 !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px;
}

/* ==========================================================================
   FAQ SECTION ACCORDION
   ========================================================================== */
.faq-section {
    position: relative;
    padding: 45px 0;
    z-index: 10;
}

.sc-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sc-accordion-item {
    background: var(--bg-glass-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.sc-accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.sc-accordion-item.active {
    border-color: var(--accent-emerald);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.sc-accordion-header {
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.08rem;
    color: #ffffff;
    user-select: none;
}

.sc-accordion-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--accent-emerald);
    transition: transform 0.3s ease;
}

.sc-accordion-item.active .sc-accordion-icon {
    transform: rotate(180deg);
    background: rgba(16, 185, 129, 0.2);
}

.sc-accordion-body {
    padding: 0 26px 24px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
    display: none;
}

.sc-accordion-item.active .sc-accordion-body {
    display: block;
}

/* ==========================================================================
   CONTACT & SUPPORT SECTION
   ========================================================================== */
.contact-section {
    position: relative;
    padding: 45px 0 55px;
    z-index: 10;
}

.contact-card-glass {
    background: var(--bg-glass-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 42px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.sc-form-group {
    margin-bottom: 20px;
}

.sc-form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.sc-form-control {
    width: 100%;
    background: var(--bg-glass-input) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-md) !important;
    padding: 14px 18px !important;
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    transition: var(--transition-smooth) !important;
}

.sc-form-control:focus {
    border-color: var(--accent-emerald) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2) !important;
    outline: none !important;
}

.sc-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sc-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.sc-info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}

.sc-info-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sc-info-meta .title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 4px;
}

.sc-info-meta .value,
.sc-info-meta a.value,
.contact-card-glass a.value,
.contact-card-glass .sc-info-card a {
    font-size: 1rem;
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none !important;
    display: block;
    transition: var(--transition-smooth);
}

.sc-info-meta .value:hover,
.sc-info-meta a.value:hover,
.contact-card-glass a.value:hover,
.contact-card-glass .sc-info-card a:hover {
    color: var(--accent-emerald-light, #34d399) !important;
}

/* ==========================================================================
   REGISTRATION MODAL - APPLE VISIONOS LIQUID GLASS
   ========================================================================== */
.modal.sc-glass-modal .modal-dialog,
.modal.formModal .modal-dialog {
    max-width: 820px !important;
    width: 92% !important;
    margin: 1.75rem auto !important;
}

.modal.sc-glass-modal .modal-content,
.modal.formModal .modal-content {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    background: rgba(10, 15, 34, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 28px !important;
    backdrop-filter: blur(40px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(190%) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.25) !important;
    overflow: hidden !important;
    padding: 0 !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    color: #ffffff !important;
}

.modal.sc-glass-modal .modal-header,
.modal.formModal .modal-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 24px 32px !important;
    width: 100% !important;
    border-radius: 28px 28px 0 0 !important;
}

.modal.sc-glass-modal .modal-title,
.modal.formModal .modal-title {
    font-family: var(--font-heading) !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.modal.sc-glass-modal .btn-close,
.modal.formModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%) !important;
    opacity: 0.8 !important;
    transition: opacity 0.2s ease !important;
}

.modal.sc-glass-modal .btn-close:hover,
.modal.formModal .btn-close:hover {
    opacity: 1 !important;
}

.modal.sc-glass-modal .modal-body,
.modal.formModal .modal-body {
    position: relative !important;
    width: 100% !important;
    background: transparent !important;
    padding: 28px 32px 32px !important;
    border-radius: 0 0 28px 28px !important;
}

.modal.sc-glass-modal .rightSide,
.modal.formModal .rightSide {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
}

.modal.sc-glass-modal .sc-form-label,
.modal.formModal .sc-form-label,
.modal.formModal .inputWrapper label,
.formModal label {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #e2e8f0 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.modal.sc-glass-modal .sc-form-control,
.modal.formModal input[type="text"],
.modal.formModal input[type="email"],
.modal.formModal input[type="number"],
.modal.formModal select,
.modal.formModal textarea,
.formModal .inputWrapper input {
    background: rgba(14, 21, 46, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    transition: var(--transition-smooth) !important;
}

.modal.sc-glass-modal .sc-form-control:focus,
.modal.formModal input:focus,
.modal.formModal select:focus,
.modal.formModal textarea:focus {
    border-color: #34d399 !important;
    background: rgba(18, 27, 58, 0.95) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25) !important;
    outline: none !important;
}

.formModal .commonBtn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(52, 211, 153, 0.5) !important;
    border-radius: var(--radius-full) !important;
    padding: 12px 36px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4) !important;
    transition: var(--transition-bounce) !important;
}

.formModal .commonBtn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.6) !important;
}

/* ==========================================================================
   FOOTER ENHANCEMENTS
   ========================================================================== */
footer.commonMT {
    background: #050711 !important;
    border-top: 1px solid var(--border-glass) !important;
    padding: 70px 0 30px !important;
    margin-top: 0 !important;
    position: relative;
    z-index: 10;
}

footer .companyInfoWrapper .commonDesc {
    color: var(--text-secondary) !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

footer .linksWrapper .title {
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    display: block !important;
}

footer .linksWrapper span a {
    color: var(--text-secondary) !important;
    font-size: 0.92rem !important;
    text-decoration: none !important;
    transition: var(--transition-smooth) !important;
    display: inline-block !important;
    padding: 4px 0 !important;
}

footer .linksWrapper span a:hover {
    color: var(--accent-emerald-light) !important;
    transform: translateX(4px) !important;
}

footer hr {
    border-color: var(--border-glass) !important;
    margin: 40px 0 24px !important;
}

footer .copyright {
    color: var(--text-muted) !important;
    font-size: 0.88rem !important;
    text-align: center !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid-3d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .sc-nav-menu, .sc-nav-actions .btn-3d-ghost {
        display: none;
    }
    .sc-mobile-toggle {
        display: block;
    }
    .hero-3d-section {
        padding: 120px 0 60px;
        text-align: center;
    }
    .hero-description {
        margin: 0 auto 36px;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-social-proof {
        margin: 0 auto;
        justify-content: center;
    }
    .hero-3d-stage {
        margin-top: 40px;
    }
    .floating-mobile-frame {
        display: none;
    }
    .floating-badge-1 {
        right: 10px;
    }
    .floating-badge-2 {
        left: 10px;
    }
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .custom-package-card {
        flex-direction: column;
        text-align: center;
    }
    .tour-section {
        padding: 38px 0;
    }
    .tour-preview-frame {
        width: 175px;
        max-width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .features-grid-3d {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.1rem;
    }
    .tour-nav-tabs {
        gap: 6px;
        margin-bottom: 18px;
    }
    .tour-tab-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
    .tour-card {
        padding: 20px 16px;
    }
    .tour-card-title {
        font-size: 1.35rem;
    }
    .tour-preview-frame {
        width: 165px;
        max-width: 100%;
    }
}

/* ==========================================================================
   APPLE VISIONOS LIQUID GLASSMORPHISM & MOTION GRAPHICS SYSTEM
   ========================================================================== */

/* Ambient Motion Graphics Mesh Orbs */
.motion-ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.motion-mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.32;
    mix-blend-mode: screen;
    will-change: transform;
    pointer-events: none;
}

.motion-mesh-orb-1 {
    width: 580px;
    height: 580px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, #f59e0b 0%, #d97706 45%, transparent 70%);
    opacity: 0.28;
    animation: orbMotionOne 22s ease-in-out infinite alternate;
}

.motion-mesh-orb-2 {
    width: 680px;
    height: 680px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, #fbbf24 0%, #b45309 45%, transparent 70%);
    opacity: 0.22;
    animation: orbMotionTwo 26s ease-in-out infinite alternate;
}

.motion-mesh-orb-3 {
    width: 500px;
    height: 500px;
    top: 40%;
    left: 35%;
    background: radial-gradient(circle, #f59e0b 0%, #10b981 50%, transparent 75%);
    opacity: 0.18;
    animation: orbMotionThree 24s ease-in-out infinite alternate;
}

@keyframes orbMotionOne {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-80px, 90px) scale(1.15) rotate(90deg); }
    100% { transform: translate(60px, -40px) scale(0.92) rotate(180deg); }
}

@keyframes orbMotionTwo {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(110px, -70px) scale(1.22); }
    100% { transform: translate(-60px, 50px) scale(0.88); }
}

@keyframes orbMotionThree {
    0% { transform: translate(0, 0) scale(0.95); opacity: 0.18; }
    50% { transform: translate(-60px, -80px) scale(1.18); opacity: 0.32; }
    100% { transform: translate(90px, 40px) scale(1.02); opacity: 0.20; }
}

/* Apple VisionOS Ultra-Frosted Liquid Glass Containers */
.apple-glass-card {
    background: rgba(18, 25, 40, 0.65) !important;
    backdrop-filter: blur(36px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(36px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-radius: 24px !important;
    box-shadow: 
        0 24px 48px -12px rgba(0, 0, 0, 0.55),
        inset 0 1px 1px 0 rgba(251, 191, 36, 0.18),
        inset 0 -1px 1px 0 rgba(0, 0, 0, 0.4) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.apple-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

.apple-glass-card:hover::before {
    left: 100%;
}

.apple-glass-card:hover {
    border-color: rgba(245, 158, 11, 0.45) !important;
    box-shadow: 
        0 30px 60px -10px rgba(0, 0, 0, 0.7),
        0 0 35px rgba(245, 158, 11, 0.22),
        inset 0 1px 1px 0 rgba(251, 191, 36, 0.35) !important;
    transform: translateY(-4px);
}

.apple-glass-panel {
    background: rgba(11, 16, 36, 0.75) !important;
    backdrop-filter: blur(40px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 28px !important;
    box-shadow: 
        0 32px 64px -16px rgba(0, 0, 0, 0.65),
        inset 0 1px 2px 0 rgba(255, 255, 255, 0.25) !important;
}

.apple-glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* Glass Status & Confirmation Cards (Inquiry Form Feedback) */
.apple-glass-success-card {
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.32) 0%, rgba(15, 23, 42, 0.82) 100%) !important;
    border: 1px solid rgba(52, 211, 153, 0.55) !important;
    border-radius: 20px !important;
    padding: 24px 28px !important;
    box-shadow: 
        0 20px 40px rgba(6, 95, 70, 0.25),
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(30px) !important;
    margin-bottom: 24px;
    animation: scaleInSmooth 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.apple-glass-error-card {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.32) 0%, rgba(15, 23, 42, 0.82) 100%) !important;
    border: 1px solid rgba(248, 113, 113, 0.55) !important;
    border-radius: 20px !important;
    padding: 24px 28px !important;
    box-shadow: 0 20px 40px rgba(127, 29, 29, 0.25) !important;
    backdrop-filter: blur(30px) !important;
    margin-bottom: 24px;
    animation: scaleInSmooth 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleInSmooth {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(52, 211, 153, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #34d399;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
    flex-shrink: 0;
}

/* Motion Shimmer Effect for Accent Highlights */
.motion-shimmer {
    background: linear-gradient(90deg, #10b981, #06b6d4, #3b82f6, #10b981);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerMove 6s linear infinite;
}

@keyframes shimmerMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

