:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 25, 0.6);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --accent-cyan: #00f0ff;
    --accent-blue: #2563eb;
    --accent-green: #10b981;
    --accent-gold: #fbbf24;
    
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan), #3b82f6);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Premium Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-size: 50px 50px;
    background-image: 
      linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
}

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

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    width: 100%;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:not(.btn):hover {
    color: white;
}

.mobile-toggle {
    display: none;
}

/* Scarcity Banner */
.scarcity-banner {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.scarcity-banner span {
    font-weight: 700;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-trust-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.avatars {
    display: flex;
}

.avatars .mini-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    margin-left: -10px;
    background: linear-gradient(135deg, #2a2a35, #14141a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}
.avatars .mini-logo:nth-child(1) { z-index: 4; }
.avatars .mini-logo:nth-child(2) { z-index: 3; }
.avatars .mini-logo:nth-child(3) { z-index: 2; }
.avatars .mini-logo:first-child { margin-left: 0; }

/* Animated Mockup */
.google-mockup {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.mockup-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: white;
    padding: 4px;
}

.mockup-header h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mockup-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-weight: 700;
    color: var(--accent-gold);
}

.stars-container {
    display: flex;
    color: var(--accent-gold);
    gap: 2px;
}

.review-count {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.skeleton-line {
    height: 12px;
    background: var(--glass-border);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    width: 100%;
}

.skeleton-line.short {
    width: 60%;
}

.mockup-animation-overlay {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: all 0.5s ease;
}

.mockup-animation-overlay.active {
    bottom: 20px;
    opacity: 1;
}

/* Trust Bar */
.trust-bar {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.01);
    padding: 1.5rem 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent-cyan);
    font-size: 1.25rem;
}

/* Client Logos Marquee */
.client-logos {
    padding: 3rem 0;
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.client-logo-item {
    margin: 0 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Stats */
.results { padding: 4rem 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-card { padding: 3rem 2rem; }
.stat-card h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Platforms */
.platforms {
    padding: 2rem 0 6rem;
}
.platforms-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}
.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.platform-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Services */
.services { padding: 4rem 0; }
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card { padding: 2.5rem; }
.service-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.service-card p { color: var(--text-muted); }

/* ROI Section */
.roi-section { padding: 4rem 0; }
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.ba-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}
.ba-half {
    text-align: center;
    flex: 1;
}
.ba-half.before { opacity: 0.6; }
.ba-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.ba-rating .num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: block;
}
.ba-rating .stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.rev-count { font-size: 0.875rem; }
.ba-divider {
    font-size: 2rem;
    color: var(--text-muted);
    padding: 0 1.5rem;
}

.roi-table-container { padding: 2rem; }
.roi-table {
    width: 100%;
    border-collapse: collapse;
}
.roi-table th {
    text-align: left;
    padding-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--glass-border);
}
.roi-table td {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.roi-table tr:last-child td { border-bottom: none; }
.roi-table td i { margin-right: 0.5rem; vertical-align: middle; }
.roi-table .dim { color: var(--text-muted); }
.roi-table .highlight {
    font-weight: 700;
    color: var(--accent-gold);
}
.roi-table .success {
    color: var(--accent-green);
    font-weight: 600;
}

/* FAQ */
.faq-section { padding: 4rem 0; }
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 8px;
    background: var(--bg-card);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
}
.faq-answer p { padding-bottom: 1.5rem; }

/* CTA */
.cta { padding: 4rem 0 6rem; }
.cta-card {
    padding: 5rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}
.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.scarcity-text {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.cta-actions {
    max-width: 350px;
    margin: 0 auto;
}
.sub-action {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}
.footer-links h4 { margin-bottom: 1.5rem; font-family: var(--font-heading); }
.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Why This Matters */
.why-matters {
    padding: 2rem 0;
}
.visceral-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 4rem 3rem;
    border-left: 3px solid var(--accent-cyan);
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.05) 0%, transparent 100%);
    border-radius: 0 16px 16px 0;
}
.visceral-box p {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.visceral-box .highlight-text {
    font-size: 2.2rem;
    color: white;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .roi-grid { grid-template-columns: 1fr; }
    .stats-grid, .services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .trust-bar-inner { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
    /* Existing rules modified */
    .nav-links { display: none; }
    .mobile-toggle { display: block; background: none; border: none; color: white; font-size: 1.5rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .ba-card { flex-direction: column; gap: 2rem; padding: 2rem 1.5rem; }
    .ba-divider { transform: rotate(90deg); padding: 1rem 0; }
    .visceral-box { padding: 2rem 1.5rem; }
    .visceral-box p { font-size: 1.5rem; }
    .visceral-box .highlight-text { font-size: 1.5rem; }
    .hero { padding-top: 1rem; padding-bottom: 2rem; }
    
    /* New spacing and typography fixes */
    .container { padding: 0 1.25rem; }
    .section-title { font-size: 2.2rem; }
    .cta-title { font-size: 2.2rem; }
    .hero-title { font-size: 2.5rem; }
    .stat-card h2 { font-size: 2.8rem; }
    
    /* Card Padding Fixes */
    .cta-card { padding: 3rem 1.5rem; }
    .service-card { padding: 1.5rem; }
    .stat-card { padding: 2rem 1.5rem; }
    .google-mockup { padding: 1.5rem; }
    
    /* Component Adjustments */
    .platforms-grid { gap: 1.5rem; }
    .trust-bar-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
    .trust-item { font-size: 0.8rem; width: 100%; justify-content: center; }
    
    /* Table Overflow Fix */
    .roi-table-container { padding: 1.5rem 1rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .roi-table { white-space: nowrap; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-brand { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    
    /* FAQ */
    .faq-question { padding: 1.25rem 1rem; font-size: 1rem; }
    .faq-answer { padding: 0 1rem; }
    
    /* Floating Button */
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 20px; }
}
