:root {
    --slate: #0F172A;
    --slate-light: #1E293B;
    --emerald: #10B981;
    --emerald-light: rgba(16, 185, 129, 0.1);
    --blue-light: rgba(59, 130, 246, 0.1);
    --purple-light: rgba(139, 92, 246, 0.1);
    --warning: #F59E0B;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --text-main: #334155;
    --text-muted: #64748B;
    --border: rgba(226, 232, 240, 0.8);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background: var(--off-white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { color: var(--slate); font-weight: 800; letter-spacing: -0.5px; }
a { text-decoration: none; transition: 0.3s; }
.mt-20 { margin-top: 20px;} .mt-40 { margin-top: 40px;} .mb-20 { margin-bottom: 20px;} .mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; } .text-muted { color: var(--text-muted); }
.text-emerald { color: var(--emerald) !important; } .text-warning { color: var(--warning); }
.text-white { color: var(--white); } .text-white-80 { color: rgba(255,255,255,0.8); }
.bg-emerald-light { background: var(--emerald-light); color: var(--emerald); }
.bg-blue-light { background: var(--blue-light); color: #3B82F6; }
.bg-purple-light { background: var(--purple-light); color: #8B5CF6; }
.py-120 { padding: 120px 0; }
.block { display: block; width: 100%; text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.border-b { border-bottom: 1px solid var(--border); }
.rounded-3xl { border-radius: 2rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.w-100 { width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.mx-container { max-width: 1100px; margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 600px; }

/* Mesh Gradient BG */
.mesh-bg { position: absolute; top: 0; left: 0; width: 100%; height: 900px; background: radial-gradient(at 0% 0%, hsla(152,100%,79%,0.4) 0px, transparent 50%), radial-gradient(at 100% 0%, hsla(210,100%,89%,0.5) 0px, transparent 50%), radial-gradient(at 50% 50%, hsla(0,0%,100%,1) 0px, transparent 50%); z-index: -1;}

/* Buttons */
.btn-emerald { background: var(--emerald); color: var(--white); padding: 14px 28px; border-radius: 8px; font-weight: 600; box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39); border: none; cursor: pointer; display: inline-block; transition: 0.3s;}
.btn-emerald:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.23); }
.btn-dark { background: var(--slate); color: var(--white); padding: 14px 28px; border-radius: 8px; font-weight: 600; box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.39); transition: 0.3s; border: none; cursor: pointer; display: inline-block; }
.btn-dark:hover { background: var(--slate-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15, 23, 42, 0.23); }
.btn-emerald-bg { background: var(--emerald); color: var(--white); }
.btn-ghost { background: transparent; color: var(--slate); font-weight: 600; border: none; cursor: pointer; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s;}
.btn-ghost:hover { color: var(--emerald); }

/* Glassmorphism */
.glass-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); border-radius: 16px; }
.glass-hover { transition: 0.4s; }
.glass-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: rgba(255,255,255,0.8); }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 25px 0; transition: 0.4s; }
.navbar.scrolled { padding: 15px 0; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(15px); border-bottom: 1px solid var(--border); box-shadow: 0 4px 30px rgba(0,0,0,0.03); }
.navbar-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--slate); display: flex; align-items: center; gap: 8px; letter-spacing: -1px;}
.logo-icon { width: 36px; height: 36px; background: var(--emerald); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 10px rgba(16,185,129,0.3);}
.logo span { color: var(--emerald); font-weight: 500;}
.nav-links { display: flex; gap: 35px; }
.nav-links a { color: var(--slate); font-weight: 500; font-size: 15px; position: relative;}
.nav-links a:hover { color: var(--emerald); }
.nav-right { display: flex; gap: 15px; align-items: center; }
.menu-toggle { display: none; font-size: 24px; color: var(--slate); cursor: pointer; }

/* Modal Video Drawer */
.drawer { position: fixed; right: -100%; top: 0; width: 100%; max-width: 320px; height: 100vh; background: var(--white); z-index: 2000; padding: 30px; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); box-shadow: -5px 0 30px rgba(0,0,0,0.1); border-left: 1px solid var(--border);}
.drawer.open { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.close-drawer { font-size: 24px; color: var(--text-muted); cursor: pointer; }
.drawer-links { display: flex; flex-direction: column; gap: 20px; }
.drawer-links a { font-size: 18px; font-weight: 600; color: var(--slate); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.5); backdrop-filter: blur(4px); z-index: 1500; display: none; opacity: 0; transition: 0.4s;}
.drawer-overlay.open { display: block; opacity: 1; }

/* Hero */
.hero { padding: 160px 0 80px; min-height: 100vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pill-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--slate); box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 25px; border: 1px solid var(--border);}
.pulse-dot { width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; }
.hero h1 span { color: var(--emerald); }
.hero p { font-size: 1.25rem; }
.hero-btns { display: flex; gap: 20px; align-items: center; }
.trusted-by { padding-top: 30px; border-top: 1px solid var(--border); }
.trusted-by p { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 15px;}
.brands-row { display: flex; gap: 30px; align-items: center; color: var(--text-muted); font-size: 24px; opacity: 0.6; }

/* Mockup CSS */
.hero-visual { position: relative; }
.mockup { padding: 25px; min-height: 400px; }
.mockup-header { display: flex; gap: 6px; margin-bottom: 30px; }
.mockup-header span { width: 10px; height: 10px; border-radius: 50%; background: #E2E8F0; }
.mockup-header span:nth-child(1) { background: #EF4444; }
.mockup-header span:nth-child(2) { background: #F59E0B; }
.mockup-header span:nth-child(3) { background: #10B981; }
.text-xs { font-size: 13px; font-weight: 600;}
.mockup-body h2 { font-size: 2.5rem; letter-spacing: -1px; }
.chart-mini { font-size: 12px; font-weight: 700; padding: 4px 8px; background: var(--emerald-light); border-radius: 4px; color: var(--emerald);}
.m-bars { display: flex; align-items: flex-end; gap: 15px; height: 200px; margin-top: 40px; padding-top: 20px; border-top: 1px dashed var(--border);}
.bar { flex: 1; background: #CBD5E1; border-radius: 4px 4px 0 0; }
.float-1 { position: absolute; top: 15%; right: -10%; padding: 15px 20px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; z-index: 2; color: var(--slate);}
.float-2 { position: absolute; bottom: 20%; left: -15%; padding: 15px 20px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; z-index: 2; color: var(--slate);}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 6s ease-in-out infinite; animation-delay: 3s; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Features */
.section-title h2 { font-size: 3rem; margin-bottom: 15px; }
.section-title p { font-size: 1.1rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.feature-card { background: var(--white); padding: 40px; border-radius: 20px; border: 1px solid var(--border); }
.f-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 25px;}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; }

/* Metrics / Dark */
.dark-section { background: var(--slate); color: var(--white); border-radius: 40px; margin: 0 2%; }
.dark-section h2 { color: var(--white); font-size: 3rem;}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center;}
.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 16px; font-weight: 500; }
.check-list i { font-size: 20px; }

/* Plans */
.cream-bg { background-color: var(--off-white); }
.pricing-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; align-items: center;}
.price-card { background: var(--white); padding: 40px; border-radius: 24px; border: 1px solid var(--border); position: relative;}
.p-header { padding-bottom: 30px; border-bottom: 1px solid var(--border); margin-bottom: 30px;}
.price-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.price-card p { font-size: 14px; color: var(--text-muted); min-height: 42px;}
.amount { font-size: 3rem; font-weight: 800; color: var(--slate); margin-top: 15px; letter-spacing: -1px;}
.amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.p-features { list-style: none; margin-bottom: 40px; }
.p-features li { margin-bottom: 15px; font-size: 15px; display: flex; align-items: center; gap: 12px; color: var(--text-main); font-weight: 500;}
.p-features i { color: var(--emerald); font-size: 14px; background: var(--emerald-light); padding: 4px; border-radius: 50%;}
.price-card.popular { border: 2px solid var(--emerald); transform: scale(1.05); box-shadow: 0 20px 40px rgba(16,185,129,0.1); z-index: 2;}
.popular-ribbon { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--emerald); color: var(--white); font-size: 12px; font-weight: 800; padding: 6px 18px; border-radius: 20px; letter-spacing: 1px;}

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--slate), var(--emerald)); padding: 80px; position: relative; overflow: hidden; }
.cta-section::before { content:''; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.1); border-radius: 50%; top: -100px; left: -100px; }
.cta-section::after { content:''; position: absolute; width: 400px; height: 400px; background: rgba(0,0,0,0.1); border-radius: 50%; bottom: -150px; right: -100px; }
.form-inline { position: relative; z-index: 10; width: 100%; max-width: 500px; margin: 0 auto; background: var(--white); padding: 8px; border-radius: 12px; justify-content: space-between;}
.input-light { border: none; padding: 10px 20px; font-family: 'Inter'; font-size: 16px; outline: none; width: 60%; background: transparent; color: var(--slate);}

/* Footer */
.f-links { display: flex; gap: 20px; }
.f-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.f-links a:hover { color: var(--emerald); }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(15,23,42,0.8); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: 0.4s;}
.modal.open { display: flex; opacity: 1; }
.modal-box { width: 90%; max-width: 800px; transform: scale(0.9); transition: 0.4s; background: var(--white);}
.modal.open .modal-box { transform: scale(1); }
.close-modal { position: absolute; right: 20px; top: 15px; font-size: 30px; color: var(--text-muted); cursor: pointer; }

/* Premium Footer */
.footer-grid-premium { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a { color: var(--text-muted); font-size: 15px; transition: 0.3s; }
.footer-links li a:hover { color: var(--emerald); padding-left: 5px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 38px; height: 38px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--slate); font-size: 14px; transition: 0.3s;}
.social-icons a:hover { background: var(--slate); color: var(--white); border-color: var(--slate); transform: translateY(-3px);}
.f-links-bottom a { color: var(--text-muted); transition: 0.3s;}
.f-links-bottom a:hover { color: var(--emerald); }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;}
.benefit-item { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; text-align: center; transition: 0.3s;}
.benefit-item:hover { border-color: var(--emerald); box-shadow: 0 10px 30px rgba(16,185,129,0.05); transform: translateY(-5px);}
.benefit-item i { font-size: 32px; margin-bottom: 20px;}
.benefit-item h4 { font-size: 1.1rem; margin-bottom: 10px;}

/* Services */
.align-start { align-items: flex-start; }
.srv-item { background: var(--white); padding: 25px; border-radius: 12px; margin-bottom: 20px; border: 1px solid var(--border); transition: 0.3s;}
.srv-item:hover { border-left: 4px solid var(--emerald); box-shadow: 0 4px 15px rgba(0,0,0,0.03); transform: translateX(5px);}
.srv-item h4 { font-size: 1.1rem; margin-bottom: 5px; display: flex; align-items: center; gap: 10px;}
.relative-box { position: relative; }
.floating-badge { position: absolute; top: 20px; right: -20px; background: var(--slate); color: var(--white); padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: 14px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); z-index: 10;}

/* Reviews */
.reviews-carousel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;}
.rev-card { padding: 40px; position: relative; z-index: 1; border: 1px solid var(--border);}
.quote-icon { position: absolute; top: 20px; right: 30px; font-size: 60px; z-index: -1; opacity: 0.5;}
.rev-text { font-size: 1.1rem; font-style: italic; color: var(--text-main); font-weight: 500;}
.rev-author { display: flex; align-items: center; gap: 15px; border-top: 1px dashed var(--border); padding-top: 20px;}
.avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px;}

@media(max-width: 992px) {
    .nav-links, .nav-right { display: none; }
    .menu-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero-btns { flex-direction: column; }
    .brands-row { justify-content: center; }
    .float-1, .float-2 { display: none; }
    .features-grid, .grid-2 { grid-template-columns: 1fr; }
    .dark-section { margin: 0; border-radius: 0; padding: 80px 5%; text-align: center; }
    .pricing-container { grid-template-columns: 1fr; }
    .price-card.popular { transform: scale(1); }
    .form-inline { flex-direction: column; background: transparent; padding: 0;}
    .input-light { width: 100%; background: var(--white); border-radius: 8px; padding: 15px; margin-bottom: 10px; }
    .form-inline .btn-dark { width: 100%; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px;}
    .reviews-carousel { grid-template-columns: 1fr; }
    .floating-badge { right: 0; }
    .footer-grid-premium { grid-template-columns: 1fr; gap: 40px; }
    .footer .flex-between { flex-direction: column; gap: 15px; text-align: center; }
    .f-links-bottom { justify-content: center; }
}

@media(max-width: 576px) {
    .benefits-grid { grid-template-columns: 1fr; }
}
