/* =============================================
   DR. DAYA SHANKAR - FINAL PERFECT VERSION
   Fixed: Badge spacing + Added graphics
   Version 7.0 - PRODUCTION READY
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-darkest: #0B0B1F;
    --bg-deep: #13132B;
    --bg-dark: #1A1A3E;
    --bg-medium: #252550;
    --purple-bright: #A855F7;
    --purple-deep: #7C3AED;
    --blue-bright: #3B82F6;
    --blue-electric: #0EA5E9;
    --cyan-bright: #06B6D4;
    --cyan-neon: #00F5FF;
    --pink-bright: #EC4899;
    --pink-hot: #F472B6;
    --orange-bright: #F97316;
    --yellow-bright: #FBBF24;
    --green-bright: #10B981;
    --red-bright: #EF4444;
    --white: #FFFFFF;
    --text-bright: #F9FAFB;
    --text-light: #E5E7EB;
    --text-muted: #9CA3AF;
    --transition: all 0.3s ease;
    --glow-purple: 0 0 60px rgba(168, 85, 247, 0.6);
    --glow-blue: 0 0 60px rgba(59, 130, 246, 0.6);
    --glow-cyan: 0 0 60px rgba(6, 182, 212, 0.6);
    --font-main: 'Inter', system-ui, sans-serif;
    --nav-height: 80px;
    --section-padding: 120px;
    --container-width: 1400px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-bright);
    background: var(--bg-darkest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: var(--section-padding) 0;
    position: relative
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(11, 11, 31, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5)
}

.navbar-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.navbar-logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em
}

.logo-text {
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright), var(--cyan-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.6))
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 36px
}

.navbar-menu-link {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 10px 0
}

.navbar-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-bright), var(--blue-bright));
    box-shadow: var(--glow-purple);
    transition: var(--transition);
    transform: translateX(-50%)
}

.navbar-menu-link:hover,
.navbar-menu-link.active {
    color: var(--purple-bright)
}

.navbar-menu-link:hover::after,
.navbar-menu-link.active::after {
    width: 100%
}

.navbar-contact-btn {
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    color: var(--white);
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
    transition: var(--transition)
}

.navbar-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.7)
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    padding: 8px
}

.navbar-toggle-bar {
    width: 30px;
    height: 3px;
    background: var(--purple-bright);
    border-radius: 3px;
    box-shadow: 0 0 15px var(--purple-bright)
}

/* Hero - FIXED BADGE SPACING */
.hero {
    min-height: 100vh;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.12) 0%, transparent 60%), linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-deep) 100%);
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 80px);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-content {
    color: var(--white)
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--pink-bright), var(--orange-bright));
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 36px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.6);
    animation: float 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.04em
}

.hero-title span {
    display: block
}

.text-gradient {
    background: linear-gradient(135deg, var(--purple-bright) 0%, var(--blue-bright) 50%, var(--cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.8))
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--yellow-bright) 0%, var(--orange-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.8))
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--cyan-neon);
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.6)
}

.typing-text::after {
    content: '|';
    margin-left: 8px;
    animation: blink 1s infinite;
    color: var(--cyan-neon)
}

@keyframes blink {

    0%,
    49% {
        opacity: 1
    }

    50%,
    100% {
        opacity: 0
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 48px;
    max-width: 650px;
    font-weight: 500
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.profile-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto
}

.hero-photo {
    width: 100%;
    border-radius: 28px;
    border: 5px solid var(--purple-bright);
    box-shadow: 0 25px 80px rgba(168, 85, 247, 0.6), var(--glow-purple)
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 16px 28px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    font-size: 1rem;
    font-weight: 800;
    color: var(--bg-darkest);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    border: 3px solid var(--purple-bright)
}

.floating-badge-1 {
    top: 8%;
    left: -12%;
    animation-delay: 0s
}

.floating-badge-2 {
    top: 48%;
    right: -18%;
    animation-delay: 1s
}

.floating-badge-3 {
    bottom: 8%;
    left: -8%;
    animation-delay: 2s
}

.floating-badge i {
    color: var(--purple-bright);
    font-size: 1.75rem
}

.text-gold {
    color: var(--yellow-bright);
    font-weight: 900
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6)
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.8)
}

.btn-secondary {
    background: linear-gradient(135deg, var(--pink-bright), var(--orange-bright));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.6)
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.8)
}

.btn-outline {
    background: transparent;
    border: 3px solid var(--purple-bright);
    color: var(--purple-bright);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3)
}

.btn-outline:hover {
    background: var(--purple-bright);
    color: var(--white);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.6)
}

/* Stats */
.stats-section {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%), linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
    padding: 120px 0;
    position: relative
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 50px 50px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2
}

.stat-card {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition)
}

.stat-card:hover {
    transform: translateY(-15px);
    border-color: var(--purple-bright);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.5)
}

.stat-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    transition: var(--transition)
}

.card-icon-gradient-blue {
    background: linear-gradient(135deg, var(--blue-bright), var(--cyan-bright));
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.6)
}

.card-icon-gradient-coral {
    background: linear-gradient(135deg, var(--pink-bright), var(--orange-bright));
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.6)
}

.card-icon-gradient-gold {
    background: linear-gradient(135deg, var(--yellow-bright), var(--orange-bright));
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.6)
}

.card-icon-gradient-lavender {
    background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.6)
}

.stat-card:hover .stat-icon-circle {
    transform: scale(1.15) rotate(10deg)
}

.stat-number {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 8px 20px rgba(168, 85, 247, 0.5)
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800
}

.text-lavender {
    color: var(--purple-bright);
    font-weight: 900
}

/* About - WITH ANIMATED GRAPHIC */
.about-preview {
    background: radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 60%), radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 60%), linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    text-align: center
}

.about-preview .hero-badge {
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5)
}

.about-preview h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 80px
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: left
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: var(--transition)
}

.highlight-item:hover {
    border-color: var(--purple-bright);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
    transform: translateX(15px)
}

.highlight-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.6)
}

.highlight-content h4 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px
}

.highlight-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 500
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 32px;
    padding: 16px 32px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
    transition: var(--transition)
}

.link-arrow:hover {
    gap: 20px;
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.7);
    transform: translateX(5px)
}

/* ANIMATED GRAPHIC BOX */
.gradient-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(6, 182, 212, 0.2) 100%);
    border: 4px solid var(--purple-bright);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden
}

.gradient-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--purple-bright), transparent);
    animation: rotate 4s linear infinite
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

.gradient-placeholder i {
    color: var(--purple-bright);
    opacity: 0.5;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.8));
    font-size: 8rem;
    position: relative;
    z-index: 2;
    animation: pulse-icon 3s ease-in-out infinite
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8
    }
}

/* Three Pillars */
.pillars-section {
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 70%), linear-gradient(180deg, var(--bg-medium) 0%, var(--bg-dark) 100%);
    text-align: center
}

.pillars-section .hero-badge {
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5)
}

.pillars-section h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 80px
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: left
}

.card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
    backdrop-filter: blur(10px);
    padding: 48px 40px;
    border-radius: 24px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 650px
}

.card:hover {
    transform: translateY(-15px);
    border-color: var(--purple-bright);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.5)
}

.card-featured {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(249, 115, 22, 0.12));
    border: 3px solid var(--pink-bright);
    transform: scale(1.08);
    box-shadow: 0 15px 60px rgba(236, 72, 153, 0.6);
    position: relative
}

.card-featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 25px 80px rgba(236, 72, 153, 0.8)
}

.badge-featured {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--pink-bright), var(--orange-bright));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6)
}

.card-icon-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 32px;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition)
}

.card:hover .card-icon-container {
    transform: scale(1.15) rotate(10deg)
}

.card-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px
}

.card-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 500
}

.feature-list {
    margin: 32px 0;
    flex-grow: 1
}

.feature-list li {
    padding: 16px 0;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-weight: 600
}

.feature-list i {
    color: var(--cyan-bright);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px
}

/* Featured Section - LAPTOP MOCKUP */
.featured-section {
    background: radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 60%), radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 60%), linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-deep) 100%)
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.mockup-device {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 60px;
    border: 4px solid var(--purple-bright);
    box-shadow: 0 25px 80px rgba(168, 85, 247, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative
}

.mockup-device::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 16px;
    animation: pulse-glow 3s ease-in-out infinite
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1)
    }

    50% {
        opacity: 0.6;
        transform: scale(1.02)
    }
}

.mockup-device i {
    color: var(--cyan-neon);
    filter: drop-shadow(0 0 50px rgba(0, 245, 255, 0.9));
    font-size: 8rem;
    position: relative;
    z-index: 2
}

.featured-content {
    color: var(--white)
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid var(--green-bright);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4)
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 20px var(--green-bright);
    animation: pulse 1.5s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.9)
    }

    50% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0)
    }
}

.featured-content h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 28px
}

.featured-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
    font-weight: 500
}

.mega-stat-container {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 24px;
    border: 3px solid var(--yellow-bright)
}

.mega-stat {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--yellow-bright) 0%, var(--orange-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(251, 191, 36, 0.9))
}

@keyframes glow-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 50px rgba(251, 191, 36, 0.9))
    }

    50% {
        filter: drop-shadow(0 0 70px rgba(251, 191, 36, 1))
    }
}

.mega-stat-label {
    font-size: 1.4rem;
    color: var(--yellow-bright);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 12px;
    font-weight: 800
}

.checklist {
    list-style: none;
    margin: 40px 0
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600
}

.checklist i {
    color: var(--green-bright);
    font-size: 1.75rem
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

/* Timeline */
.timeline-section {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%), linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
    text-align: center
}

.timeline-section h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 100px
}

.timeline {
    position: relative;
    padding: 50px 0
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--purple-bright) 0%, var(--blue-bright) 33%, var(--cyan-bright) 66%, var(--green-bright) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6)
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: center
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end
}

.timeline-item:nth-child(even) {
    justify-content: flex-start
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple-bright);
    border: 5px solid var(--bg-deep);
    box-shadow: 0 0 0 5px rgba(168, 85, 247, 0.4), 0 0 30px rgba(168, 85, 247, 0.7);
    z-index: 10
}

.timeline-marker.active {
    width: 40px;
    height: 40px;
    background: var(--yellow-bright);
    box-shadow: 0 0 0 8px var(--bg-deep), 0 0 0 13px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.8);
    animation: pulse-marker 2s ease-in-out infinite
}

@keyframes pulse-marker {

    0%,
    100% {
        transform: translateX(-50%) scale(1)
    }

    50% {
        transform: translateX(-50%) scale(1.15)
    }
}

.timeline-content {
    width: 45%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    text-align: center
}

.timeline-content:hover {
    transform: translateY(-12px);
    border-color: var(--purple-bright);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.5)
}

.timeline-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.6)
}

.timeline-content h4 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.5)
}

.timeline-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 500
}

/* CTA */
.cta-section {
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 70%), linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-deep) 100%);
    text-align: center;
    color: var(--white)
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto
}

.cta-content .hero-badge {
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5)
}

.cta-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 32px
}

.cta-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 60px;
    font-weight: 500
}

.text-electric {
    color: var(--cyan-neon);
    font-weight: 800
}

.text-coral {
    color: var(--pink-bright);
    font-weight: 800
}

.button-group-centered {
    justify-content: center
}

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 56px
}

.tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(168, 85, 247, 0.4);
    padding: 12px 28px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3)
}

/* Footer */
.footer {
    background: var(--bg-darkest);
    color: var(--white);
    padding: 100px 0 50px;
    border-top: 2px solid rgba(168, 85, 247, 0.2)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 70px;
    margin-bottom: 70px
}

.footer-logo {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright), var(--cyan-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6))
}

.footer-column h4 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 32px
}

.footer-tagline {
    color: var(--purple-bright);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 20px
}

.footer-column p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 36px;
    font-weight: 500
}

.social-links {
    display: flex;
    gap: 24px;
    margin-top: 28px
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--purple-bright);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-bright);
    font-size: 1.6rem;
    transition: var(--transition)
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 18px
}

.footer-links a,
.footer-links li {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 14px
}

.footer-links a:hover {
    color: var(--purple-bright);
    padding-left: 10px
}

.footer-links i {
    color: var(--purple-bright);
    font-size: 1.2rem;
    width: 28px
}

.newsletter-form {
    display: flex;
    gap: 14px;
    margin-bottom: 48px
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 14px;
    border: 3px solid rgba(168, 85, 247, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
    font-weight: 500
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--purple-bright);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4)
}

.btn-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5)
}

.btn-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(168, 85, 247, 0.7)
}

.achievement-badge {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.15));
    backdrop-filter: blur(10px);
    border: 3px solid var(--yellow-bright);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4)
}

.achievement-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow-bright), var(--orange-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.7))
}

.achievement-badge p {
    color: var(--yellow-bright);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0
}

.footer-bottom {
    border-top: 2px solid rgba(168, 85, 247, 0.2);
    padding-top: 48px;
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    margin: 0
}

.footer-bottom-links {
    display: flex;
    gap: 28px
}

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition)
}

.footer-bottom-links a:hover {
    color: var(--purple-bright)
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-bright), var(--blue-bright));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
    font-weight: 900
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.8)
}

/* Responsive */
@media(max-width:968px) {
    .navbar-menu {
        display: none
    }

    .navbar-toggle {
        display: flex
    }

    .hero {
        padding-top: calc(var(--nav-height) + 40px)
    }

    .hero-container,
    .featured-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .hero-title {
        font-size: 3rem
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .floating-badge {
        display: none
    }

    .timeline::before {
        left: 30px
    }

    .timeline-marker {
        left: 30px
    }

    .timeline-item {
        justify-content: flex-start !important
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 90px !important
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .card-featured {
        transform: scale(1)
    }
}

@media(max-width:640px) {
    :root {
        --section-padding: 80px
    }

    .hero-title {
        font-size: 2.5rem
    }

    .stat-number {
        font-size: 3.5rem
    }

    .mega-stat {
        font-size: 5rem
    }

    .cta-title {
        font-size: 2.5rem
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .button-group {
        flex-direction: column
    }

    .btn {
        width: 100%;
        justify-content: center
    }
}