/* ============================================
   MODERN DESIGN SYSTEM
   ============================================ */

:root {
    /* Premium Palette - Indigo & Violet */
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #eff6ff;
    --secondary: #7c3aed;
    --secondary-dark: #6d28d9;
    --accent: #06b6d4;

    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --light: #f8fafc;
    --dark: #0f172a;

    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Borders & Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;

    /* Improved Premium Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    --shadow-indigo: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: var(--gray-800);
    line-height: 1.6;
    letter-spacing: -0.3px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes bounceSubtle {

    0%,
    100% {
        transform: translateY(0);
    }

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

.animate-bounce-subtle {
    animation: bounceSubtle 3s infinite ease-in-out;
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl) !important;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rounded-24 {
    border-radius: 24px !important;
}

/* Base Styles */
.transition-all {
    transition: all 0.3s ease;
}

.grayscale-filter {
    filter: grayscale(1);
    opacity: 0.6;
}

.grayscale-filter:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.85rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.6rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--gray-600) !important;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    border: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: #f8fafc;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Viral Hero Components */
.status-bar {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    gap: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.hero-viral-text {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(to right, #0f172a, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-viral {
    background: #4f46e5;
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.btn-viral:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.6);
    color: white;
}

.notification-feed {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.notif-card {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.5s ease-out backwards;
    border-left: 4px solid #10b981;
    min-width: 200px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

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

section {
    padding: 60px 0;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), #E0E7FF);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ============================================
   HERO IMAGES (REVERTED)
   ============================================ */

.hero-image-wrapper {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.floating-card {
    position: absolute;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.6s ease;
    background: white;
    /* Ensure background is white */
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Ensure no gaps */
}

/* Hero Infographic Styles */
.infographic-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
}

.central-metric {
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    text-align: center;
    z-index: 10;
    width: 220px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.growth-pips {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}

.pip {
    width: 12px;
    background: #e2e8f0;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.pip.active {
    background: linear-gradient(to top, #4f46e5, #818cf8);
}

.orbit-item {
    position: absolute;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 15;
    animation: orbit-float 4s ease-in-out infinite;
}

.orbit-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.orbit-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.orbit-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.orbit-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes orbit-float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.metric-pill {
    position: absolute;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
}

.pill-1 {
    top: 40%;
    left: 0%;
    border-left: 4px solid #10b981;
}

.pill-2 {
    bottom: 35%;
    right: 0%;
    border-left: 4px solid #f59e0b;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

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

@keyframes float-mobile {

    0%,
    100% {
        transform: translateY(0) rotateY(5deg);
    }

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

@keyframes float-widget {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
}

.school-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.school-logo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 80px 0;
    background: #fff;
}

.process-card {
    position: relative;
    padding: 2rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.process-card h4 {
    margin-top: 1rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 80px 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), #E0E7FF);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: 80px 0;
    background: #fff;
}

.pricing-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card-popular {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.period {
    color: var(--gray-600);
    font-weight: 500;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

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

.pricing-features i.fa-check {
    font-size: 1.125rem;
}

.pricing-features i.fa-times {
    opacity: 0.3;
}

.pricing-comparison {
    border: 2px dashed var(--gray-300);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.schools {
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stars {
    color: #FCD34D;
    font-size: 0.875rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-3xl);
    margin: 40px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '\f1d8';
    /* FontAwesome paper-plane */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.08);
    transform: rotate(-15deg);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 30px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0f172a;
    background-image: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 20%);
    color: #94a3b8;
    padding-top: 5rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '\f19d';
    /* FontAwesome graduation cap */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-size: 400px;
    opacity: 0.03;
    color: white;
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer h5,
.footer h6 {
    color: white;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.footer .border-bottom {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-secondary {
    color: var(--gray-800);
    border: 2px solid var(--gray-300);
}

.btn-outline-secondary:hover {
    border-color: var(--gray-800);
    background: var(--gray-800);
    color: white;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-image-wrapper {
        height: 350px;
    }

    .card-1 {
        height: 350px;
    }

    .card-2 {
        width: 200px;
        height: 130px;
    }

    .card-3 {
        width: 170px;
        height: 120px;
    }

    .trust-badges {
        gap: 1rem;
    }

    .process-card,
    .feature-item {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .school-logos {
        gap: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(128 133 139 / 75%) !important;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
    position: relative;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    height: 100%;
    transition: all 0.3s ease;
}

.comparison-old {
    background: #f8fafc;
    border: 2px dashed var(--gray-300);
}

.comparison-new {
    background: #fff;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .comparison-new {
        margin-left: -20px;
    }
}

.comparison-list li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
}

.comparison-list.old li {
    color: var(--gray-500);
}

.comparison-list.new li {
    color: var(--gray-800);
    font-weight: 500;
}

.vs-badge {
    width: 60px;
    height: 60px;
    background: var(--dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-style: italic;
    font-size: 1.25rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .vs-badge {
        position: static;
        margin: -20px auto;
        transform: none;
    }
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
    overflow: hidden;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    height: 100%;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: var(--shadow-xl);
}

.philosophy-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   NEW HERO DESIGN SYSTEM
   ============================================ */

.glass-badge {
    background: rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

.text-primary-gradient {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fomo-banner {
    background: #fff5f5;
    padding: 10px 15px;
    border-radius: 10px;
    color: #c53030;
    font-size: 0.95rem;
}

.btn-viral-new {
    background: #059669;
    color: white !important;
    padding: 18px 30px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-viral-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(5, 150, 105, 0.5);
}

.btn-whatsapp-demo {
    background: #fff;
    border: 2px solid #000;
    color: #000 !important;
    padding: 18px 30px;
    border-radius: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-whatsapp-demo:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

/* Glass Phone Mockup */
.glass-phone-mockup {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 30px;
    box-shadow: 0 50px 100px rgba(15, 23, 42, 0.12);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    animation: float-mockup 6s ease-in-out infinite;
}

@keyframes float-mockup {

    0%,
    100% {
        transform: translateY(0);
    }

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

.mockup-header {
    text-align: center;
    margin-bottom: 25px;
}

.mockup-status {
    background: #e0e7ff;
    color: #4338ca;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 10px;
}

.mockup-title {
    font-weight: 800;
    font-size: 1.1rem;
}

.admission-ticker {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticker-item {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-tag {
    position: absolute;
    background: #0f172a;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.tag-1 {
    top: 10%;
    right: -20px;
}

.tag-2 {
    bottom: 20%;
    left: -40px;
}

.tag-3 {
    bottom: 35%;
    right: -30px;
}

/* Problem/Solution Trigger */
.problem-trigger-box {
    border-left: 5px solid var(--danger);
}

.solution-trigger-box {
    border-left: 5px solid var(--accent);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    border: 2px solid var(--primary);
}

@media (max-width: 991px) {
    .glass-phone-mockup {
        margin-top: 40px;
    }
}