/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --bg-dark: #0a0b1a;
    --bg-darker: #050614;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-green: #10B981;
    --accent-orange: #F97316;
    --accent-purple: #8B5CF6;
    --accent-pink: #F472B6;
    --text-primary: #E6EEF8;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0b1a;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scroll-behavior: smooth;
    max-width: 100%;
    position: relative;
}

/* Scroll Animations */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.animate {
    opacity: 0;
    transform: translateX(-60px);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.animate {
    opacity: 0;
    transform: translateX(60px);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animate {
    opacity: 0;
    transform: scale(0.8);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Container */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10, 11, 26, 0.98), rgba(10, 11, 26, 0.9));
    backdrop-filter: blur(12px);
    overflow-x: hidden;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.4));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    font-style: italic;
}

.brand-text .subtitle {
    font-size: 11px;
    color: var(--accent-cyan);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-btn {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #0a0b1a 0%, #0f1628 50%, #1a1040 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
}

.stars {
    background-image: 
        radial-gradient(3px 3px at 100px 50px, #fff, transparent),
        radial-gradient(2px 2px at 200px 150px, rgba(255,255,255,0.9), transparent),
        radial-gradient(3px 3px at 300px 100px, #fff, transparent),
        radial-gradient(2px 2px at 400px 200px, rgba(255,255,255,0.8), transparent),
        radial-gradient(3px 3px at 500px 80px, #fff, transparent),
        radial-gradient(2px 2px at 600px 250px, rgba(255,255,255,0.9), transparent),
        radial-gradient(3px 3px at 700px 120px, #fff, transparent),
        radial-gradient(2px 2px at 800px 300px, rgba(255,255,255,0.7), transparent),
        radial-gradient(3px 3px at 150px 250px, #fff, transparent),
        radial-gradient(2px 2px at 350px 350px, rgba(255,255,255,0.8), transparent),
        radial-gradient(3px 3px at 550px 400px, #fff, transparent),
        radial-gradient(2px 2px at 750px 450px, rgba(255,255,255,0.9), transparent);
    background-size: 1000px 600px;
    animation: starsMove 120s linear infinite, starsTwinkle 4s ease-in-out infinite;
}

.stars2 {
    background-image: 
        radial-gradient(2px 2px at 50px 100px, rgba(59,130,246,0.8), transparent),
        radial-gradient(3px 3px at 180px 200px, rgba(6,182,212,0.9), transparent),
        radial-gradient(2px 2px at 320px 80px, rgba(139,92,246,0.8), transparent),
        radial-gradient(3px 3px at 450px 280px, rgba(244,114,182,0.7), transparent),
        radial-gradient(2px 2px at 580px 150px, rgba(59,130,246,0.9), transparent),
        radial-gradient(3px 3px at 720px 320px, rgba(6,182,212,0.8), transparent),
        radial-gradient(2px 2px at 250px 380px, rgba(139,92,246,0.7), transparent),
        radial-gradient(3px 3px at 620px 420px, rgba(244,114,182,0.8), transparent);
    background-size: 900px 550px;
    animation: starsMove 90s linear infinite reverse, starsTwinkle 3s ease-in-out infinite 1s;
    opacity: 0.7;
}

.stars3 {
    background-image: 
        radial-gradient(4px 4px at 80px 180px, rgba(255,255,255,0.4), transparent),
        radial-gradient(5px 5px at 280px 90px, rgba(255,255,255,0.3), transparent),
        radial-gradient(4px 4px at 480px 220px, rgba(255,255,255,0.4), transparent),
        radial-gradient(5px 5px at 680px 130px, rgba(255,255,255,0.3), transparent),
        radial-gradient(4px 4px at 380px 380px, rgba(255,255,255,0.4), transparent);
    background-size: 850px 500px;
    animation: starsMove 150s linear infinite, starsShine 6s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes starsMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -25%); }
}

@keyframes starsTwinkle {
    0%, 100% { opacity: 0.6; }
    25% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 1; }
}

@keyframes starsShine {
    0%, 100% { opacity: 0.2; filter: blur(0px); }
    33% { opacity: 0.9; filter: blur(1.5px); }
    66% { opacity: 0.5; filter: blur(0.5px); }
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #0a0b1a, transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-bulb {
    margin-bottom: 25px;
}

.hero-logo-img {
    height: 260px;
    width: auto;
    filter: drop-shadow(0 0 60px rgba(251, 191, 36, 0.7)) drop-shadow(0 0 100px rgba(59, 130, 246, 0.5));
    animation: logoFloat 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes logoGlow {
    0% { 
        filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.6)) 
                drop-shadow(0 0 80px rgba(59, 130, 246, 0.4));
    }
    100% { 
        filter: drop-shadow(0 0 100px rgba(251, 191, 36, 1)) 
                drop-shadow(0 0 120px rgba(59, 130, 246, 0.6)) 
                drop-shadow(0 0 150px rgba(6, 182, 212, 0.4));
    }
}

.bulb-svg {
    width: 80px;
    height: 100px;
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.6));
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-tagline {
    color: var(--text-secondary);
    font-size: 18px;
    font-style: italic;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.floating-play {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s;
}

.floating-play:hover {
    transform: scale(1.1);
}

.floating-play.bottom {
    bottom: 30px;
    right: 30px;
}

.floating-play.bottom-right {
    bottom: 30px;
    right: 30px;
}

.play-icon-svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.4));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}

.btn.primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.btn.outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn.outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.btn.small {
    padding: 10px 20px;
    font-size: 13px;
}

.btn.small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-card {
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f, #1e3a5f);
    color: var(--text-primary);
    border: none;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-dark {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #334155, #475569);
}

.btn-green {
    background: linear-gradient(135deg, #059669, #10b981);
}

.btn-green:hover {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-platinum {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.btn-platinum:hover {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.btn-full {
    width: 100%;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #0a0b1a 0%, #0f1628 50%, #0a0b1a 100%);
    padding: 80px 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Steps Section */
.process-steps-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f1628 0%, #0a0b1a 50%, #0f1628 100%);
    position: relative;
    overflow: hidden;
}

.process-steps-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: all 0.4s ease;
}

.step-icon svg {
    width: 36px;
    height: 36px;
}

.step-icon.analyze {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.step-icon.create {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0.1));
    color: #F472B6;
    border: 1px solid rgba(244, 114, 182, 0.3);
}

.step-icon.publish {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
    color: #22D3EE;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.step-icon.grow {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-step:hover .step-icon.analyze {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.process-step:hover .step-icon.create {
    box-shadow: 0 10px 30px rgba(244, 114, 182, 0.3);
}

.process-step:hover .step-icon.publish {
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.process-step:hover .step-icon.grow {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.5), rgba(6, 182, 212, 0.5));
    margin-top: 100px;
    flex-shrink: 0;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(6, 182, 212, 0.5);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Process/Pricing Section */
.process-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0b1a 0%, #0f1628 100%);
}

.process-section .section-title {
    color: var(--text-primary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border: 2px solid var(--accent-cyan);
    transform: translateY(-12px);
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.12), rgba(15, 23, 42, 0.98));
    box-shadow: 
        0 0 0 1px rgba(6, 182, 212, 0.3),
        0 25px 50px rgba(6, 182, 212, 0.15),
        0 0 40px rgba(6, 182, 212, 0.1);
}

.pricing-card.popular::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent));
}

.pricing-card.popular:hover {
    transform: translateY(-16px);
    box-shadow: 
        0 0 0 1px rgba(6, 182, 212, 0.4),
        0 30px 60px rgba(6, 182, 212, 0.2),
        0 0 50px rgba(6, 182, 212, 0.15);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
    z-index: 10;
    letter-spacing: 0.3px;
}

.card-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #475569, #334155);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-ribbon.starter {
    background: linear-gradient(135deg, #64748b, #475569);
}

.card-ribbon.standard {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-ribbon.platinum {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
}

.card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.4;
}

.pricing-features li.not-included {
    color: var(--text-muted);
}

.check {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.x-mark {
    color: #ef4444;
    font-size: 14px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* Card Buttons */
.btn-card {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-green {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: #fff;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-platinum {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    color: #fff;
}

.btn-platinum:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-cyan {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    border: none;
    color: #fff;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(180deg, #0f1628 0%, #0a0b1a 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-icon.blue { background: rgba(59, 130, 246, 0.2); color: #60A5FA; }
.stat-icon.purple { background: rgba(139, 92, 246, 0.2); color: #A78BFA; }
.stat-icon.cyan { background: rgba(6, 182, 212, 0.2); color: #22D3EE; }
.stat-icon.pink { background: rgba(244, 114, 182, 0.2); color: #F472B6; }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-value {
    font-size: 11px;
    color: var(--accent-cyan);
}

.stat-sub {
    font-size: 10px;
    color: var(--text-muted);
}

.play-btn-inline {
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn-inline:hover {
    transform: scale(1.1);
}

.play-btn-inline svg {
    width: 40px;
    height: 40px;
}

.check {
    color: var(--accent-green);
    font-weight: bold;
}

/* Why + Contact Section */
.why-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
}

.why-section {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content {
    padding-right: 20px;
}

.why-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-intro {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 500;
}

.check-box {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-card .info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card .info-icon svg {
    width: 18px;
    height: 18px;
}

.info-card.yellow .info-icon { background: rgba(251, 191, 36, 0.2); color: #FCD34D; }
.info-card.blue .info-icon { background: rgba(59, 130, 246, 0.2); color: #60A5FA; }
.info-card.purple .info-icon { background: rgba(139, 92, 246, 0.2); color: #A78BFA; }
.info-card.cyan .info-icon { background: rgba(6, 182, 212, 0.2); color: #22D3EE; }
.info-card.pink .info-icon { background: rgba(244, 114, 182, 0.2); color: #F472B6; }
.info-card.green .info-icon { background: rgba(16, 185, 129, 0.2); color: #34D399; }

.info-text strong {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.info-text p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.info-text small {
    font-size: 10px;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-panel {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(10, 11, 26, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(59, 130, 246, 0.1);
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-panel input:hover,
.contact-form-panel textarea:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form-panel textarea {
    resize: none;
    min-height: 100px;
}

.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-panel textarea {
    resize: none;
}

.contact-form-panel .btn {
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.form-success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}

/* Footer */
.footer {
    padding: 24px 0;
    background: #0a0b1a;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p,
.footer-right p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-icon {
    margin: 0 6px;
}

.footer-logo-img {
    height: 20px;
    width: auto;
    vertical-align: middle;
}

.footer-tagline {
    font-style: italic;
}

/* Responsive */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-step {
        flex: 1 1 45%;
        max-width: none;
    }
    
    .process-connector {
        display: none;
    }
    
    .why-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .why-content {
        padding-right: 0;
    }
    
    .why-content h2 {
        font-size: 32px;
    }
    
    .contact-form-panel {
        padding: 28px;
    }
    
    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 16px;
    }
    
    .nav-inner {
        flex-direction: column;
        gap: 16px;
        padding: 12px 0;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    
    .hero-inner {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-sub {
        font-size: 18px;
    }
    
    .hero-lead {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .bulb {
        font-size: 60px;
    }
    
    .floating-play {
        display: none;
    }
    
    .services-section,
    .process-section,
    .process-steps-section,
    .why-contact-section {
        padding: 60px 0;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-step {
        flex: 1 1 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .services-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .stats-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-sub {
        font-size: 16px;
    }
    
    .hero-lead {
        font-size: 13px;
    }
    
    .bulb {
        font-size: 50px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

/* Quotation Modal - Modern Glass UI */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 11, 26, 0.98) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(59, 130, 246, 0.15);
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.4);
    border-radius: 3px;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 28px 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.modal-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.modal-body label small {
    color: var(--text-muted);
    font-weight: 400;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.modal-body input::placeholder,
.modal-body textarea::placeholder {
    color: var(--text-muted);
}

.modal-body input:hover,
.modal-body select:hover,
.modal-body textarea:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.modal-body select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.modal-body select option {
    background: #1e293b;
    color: var(--text-primary);
    padding: 12px;
}

.modal-body textarea {
    resize: none;
    min-height: 90px;
}

.selected-package {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.selected-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
}

.selected-package .pkg-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-package .pkg-name::before {
    content: '📦';
    font-size: 18px;
}

.selected-package .pkg-price {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.modal-footer {
    padding: 0 32px 32px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    border: none;
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.4),
        0 0 30px rgba(6, 182, 212, 0.2);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled::before {
    display: none;
}

/* Spinner Animation */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* WhatsApp Confirmation Modal */
.whatsapp-modal {
    text-align: center;
    padding: 48px 32px;
}

.whatsapp-modal .success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-green), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: successPulse 0.6s ease;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-modal .success-icon svg {
    width: 45px;
    height: 45px;
    fill: #fff;
}

.whatsapp-modal h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.whatsapp-modal p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-bottom: 20px;
    width: 100%;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.btn-later {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-later:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
}

.skip-link {
    display: inline-block;
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.skip-link:hover {
    color: var(--text-secondary);
}

/* Pricing card hover effect enhancement */
.pricing-card {
    cursor: pointer;
}

.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.pricing-card.popular:hover {
    transform: translateY(-16px);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
    background: transparent;
    border: none;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(10, 11, 26, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 20px 24px 20px;
    flex-direction: column;
    gap: 0;
    z-index: 99;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow-x: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s;
    display: block;
}

.mobile-menu a:not(.nav-btn):last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--text-primary);
}

.mobile-menu .nav-btn {
    text-align: center;
    margin-top: 16px;
    border-radius: 8px;
    padding: 14px 20px;
    border: none !important;
    display: block;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    /* Mobile Nav - Initial State (transparent, no logo) */
    .nav {
        background: transparent;
        backdrop-filter: none;
        transition: all 0.3s ease;
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .nav-inner {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 20px;
        min-height: 70px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav .brand {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        position: absolute;
        left: 60px;
        max-width: calc(100% - 120px);
    }
    
    .nav .brand-logo {
        height: 38px;
        max-width: 100%;
    }
    
    /* Mobile Nav - Scrolled State */
    .nav.scrolled {
        background: rgba(10, 11, 26, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav.scrolled .brand {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        left: 60px;
    }
    
    .nav.scrolled .nav-inner {
        padding: 14px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        background: transparent;
        border: none;
        padding: 8px;
        margin: 0;
        margin-right: auto;
        position: relative;
        z-index: 201;
        cursor: pointer;
        order: -1;
    }
    
    .mobile-menu {
        display: flex;
        top: 70px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-logo-img {
        height: 120px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
    
    .why-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 24px 24px 0;
    }
    
    .modal-header::after {
        left: 24px;
        right: 24px;
    }
    
    .modal-body {
        padding: 28px 24px;
    }
    
    .modal-footer {
        padding: 0 24px 24px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .selected-package {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .btn-whatsapp {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .floating-play {
        display: none;
    }
}

/* ============================================
   COMMON PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a0b1a 0%, #1a1b3a 50%, #0a0b1a 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.15), transparent 50%);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

.breadcrumb {
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: var(--text-secondary);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.section-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.lead {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.mv-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.mv-card h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid var(--border-color);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--text-secondary);
}

/* Why Choose Section */
.why-choose-detailed {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section */
.our-values {
    padding: 80px 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
}

.value-item h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-secondary);
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.service-content h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 25px 0 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-list li {
    color: var(--text-secondary);
    padding: 8px 0;
}

.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Packages Page Styles */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-header h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.package-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

.package-price {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.package-price .currency {
    font-size: 16px;
    color: var(--text-muted);
}

.package-price .amount {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.package-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.package-features .check {
    color: var(--accent-green);
    font-weight: bold;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-area h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-form-area > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info-area h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.3s;
}

.contact-card:hover {
    border-color: var(--accent);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-card p,
.contact-card a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
}

.contact-card a:hover {
    color: var(--accent);
}

/* Map Container */
.map-container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* Social Links */
.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Portfolio Page */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Privacy & Terms Pages */
.legal-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.legal-content h2 {
    font-size: 24px;
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 20px;
}

/* Form Success/Error Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

/* Page Responsive Styles */
@media (max-width: 1200px) {
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .mission-vision,
    .about-stats,
    .features-grid,
    .values-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-table,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}