:root {
    --bg-color: #0B0E14;
    --surface-color: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);
    --primary: #FF5A00; /* Servigaso Orange Accent */
    --primary-light: #ff7b33;
    --primary-glow: rgba(255, 90, 0, 0.4);
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --gradient: linear-gradient(135deg, #FF5A00 0%, #FF2A00 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.noise-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.04;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}
.orb-1 {
    width: 40vw; height: 40vw;
    background: var(--primary-glow);
    top: -10vw; left: -10vw;
}
.orb-2 {
    width: 30vw; height: 30vw;
    background: rgba(0, 150, 255, 0.2);
    bottom: 10vw; right: -5vw;
}

/* Typography */
h1, h2, h3 { line-height: 1.2; font-weight: 800; }
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(11, 14, 20, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo { display: flex; align-items: center; }
.brand-logo { height: 45px; width: auto; object-fit: contain; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--text-main); }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section { padding: 8rem 0; }
.dark-section { background: rgba(0, 0, 0, 0.2); border-top: 1px solid var(--surface-border); border-bottom: 1px solid var(--surface-border); }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}
.glass-hero {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}
.subtitle-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 90, 0, 0.1);
    border: 1px solid rgba(255, 90, 0, 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(255, 90, 0, 0.2);
}
.title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.2;
}
.description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--primary-glow);
}
.secondary-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}
.badge-1 { top: 20%; left: 15%; animation-delay: 0s; }
.badge-2 { top: 30%; right: 15%; animation-delay: 2s; }
.badge-3 { bottom: 25%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    animation: fadeInOut 2s infinite;
    z-index: 10;
}
.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}
.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}
@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }

/* Cards (Glassmorphism) */
.glass-card, .stat-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover, .stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}
.card-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.glass-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.glass-card p { color: var(--text-muted); margin-bottom: 1.5rem; }
.feature-list { list-style: none; color: var(--text-muted); }
.feature-list li { margin-bottom: 0.5rem; position: relative; padding-left: 1.5rem; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); }

/* Tabs */
.tabs-container { max-width: 1000px; margin: 0 auto; }
.tabs-header { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
}
.tab-btn.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px var(--primary-glow);
}
.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }

/* Mockups */
.mockup-grid { display: flex; justify-content: center; align-items: stretch; gap: 3rem; flex-wrap: wrap; }
.phone-mockup {
    width: 320px;
    background: #000;
    border: 8px solid #222;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}
.phone-header { padding: 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; }
.phone-user { display: flex; align-items: center; font-size: 0.85rem; }
.avatar { width: 30px; height: 30px; border-radius: 50%; margin-right: 10px; object-fit: cover; background: #fff; }
.sponsored { font-size: 0.7rem; color: #888; display: block; }
.phone-video-container { width: 100%; aspect-ratio: 9/16; background: #000; position: relative; display: flex; align-items: center; justify-content: center; }
.ad-video { width: 100%; height: 100%; object-fit: contain; }
.video-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: #555; }
.phone-footer { padding: 15px; font-size: 0.85rem; flex-grow: 1; display: flex; flex-direction: column; }
.action-icons { font-size: 1.2rem; letter-spacing: 10px; margin-bottom: 10px; }
.likes { margin-bottom: 5px; }

/* Google Mockup */
.google-mockup {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    color: #3c4043;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.g-search-bar {
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
}
.g-ad-result { margin-bottom: 2rem; }
.g-ad-badge { display: inline-block; font-size: 0.85rem; font-weight: bold; color: #202124; margin-bottom: 4px; }
.g-url { font-size: 0.85rem; color: #202124; }
.g-title { color: #1a0dab; font-size: 1.25rem; font-weight: normal; margin-bottom: 4px; cursor: pointer; }
.g-title:hover { text-decoration: underline; }
.g-desc { font-size: 0.9rem; color: #4d5156; line-height: 1.5; }
.g-sitelinks { display: flex; gap: 15px; margin-top: 10px; font-size: 0.85rem; }
.g-sitelinks a { color: #1a0dab; text-decoration: none; }
.g-sitelinks a:hover { text-decoration: underline; }

/* YouTube Shorts Mockup */
.yt-shorts-mockup {
    width: 320px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 8px solid #222;
}
.yt-shorts-video {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yt-shorts-video .ad-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.yt-shorts-actions {
    position: absolute;
    right: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.yt-action-icon {
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.yt-action-icon span { font-size: 0.7rem; display: block; margin-top: 5px; }
.yt-shorts-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.yt-shorts-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.yt-shorts-user .yt-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: #fff;}
.yt-sponsor-badge { background: rgba(0,0,0,0.6); padding: 2px 6px; border-radius: 4px; font-size: 0.7rem; }
.yt-shorts-title { font-size: 0.9rem; margin-bottom: 15px; text-shadow: 0 1px 2px #000; }
.yt-install-banner {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.yt-install-info strong { display: block; font-size: 0.9rem; }
.yt-install-info span { font-size: 0.75rem; color: #ddd; }
.yt-action-btn { background: #3EA6FF; color: #000; text-decoration: none; padding: 6px 16px; border-radius: 16px; font-weight: bold; font-size: 0.85rem; }

/* Gmail Mockup */
.gmail-mockup {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    color: #202124;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
}
.gmail-header {
    background: #f2f2f2;
    padding: 12px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gmail-new { background: #1a73e8; color: #fff; padding: 2px 6px; border-radius: 4px; font-size: 0.7rem; }
.gmail-ad-row {
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    background: #f8fcfb;
    align-items: center;
}
.gmail-sender { font-size: 0.9rem; color: #1a73e8; min-width: 160px; }
.gmail-message { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 250px; }
.gmail-subject { font-weight: bold; color: #202124; }
.gmail-snippet { color: #5f6368; }
.gmail-expanded { padding: 20px; background: #fff; }
.gmail-banner {
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}
.gmail-banner-logo { height: 40px; margin-bottom: 20px; }
.gmail-banner h3 { font-size: 1.3rem; margin-bottom: 10px; color: #202124; }
.gmail-banner p { font-size: 0.95rem; color: #5f6368; margin-bottom: 20px; }
.gmail-btn {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* LinkedIn Mockup */
.linkedin-mockup {
    width: 100%;
    max-width: 550px;
    background: #fff;
    border-radius: 8px;
    color: #000;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}
.li-header {
    display: flex;
    padding: 12px 16px;
    align-items: center;
}
.li-avatar { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; margin-right: 12px; }
.li-meta { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.li-meta strong { font-size: 0.9rem; color: #000; }
.li-followers { font-size: 0.75rem; color: #666; }
.li-promoted { font-size: 0.75rem; color: #666; display: flex; align-items: center; gap: 4px; }
.li-more { color: #666; font-weight: bold; font-size: 1.2rem; margin-bottom: auto; }
.li-caption { padding: 0 16px 12px; font-size: 0.9rem; color: #000; }
.li-video-wrapper { width: 100%; background: #000; position: relative; display: flex; align-items: center; justify-content: center; }
.li-video-wrapper .ad-video { width: 100%; max-height: 400px; object-fit: contain; }
.li-cta-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; background: #f3f2ef; border-top: 1px solid #e0dfdc; border-bottom: 1px solid #e0dfdc; }
.li-cta-text { display: flex; flex-direction: column; }
.li-cta-text strong { font-size: 0.9rem; color: #000; }
.li-cta-text span { font-size: 0.75rem; color: #666; }
.li-cta-btn { background: transparent; border: 1px solid #0a66c2; color: #0a66c2; border-radius: 16px; padding: 4px 16px; font-weight: bold; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; }
.li-cta-btn:hover { background: rgba(10, 102, 194, 0.1); }
.li-stats { padding: 8px 16px; font-size: 0.75rem; color: #666; display: flex; justify-content: space-between; border-bottom: 1px solid #e0dfdc; }
.li-actions { display: flex; justify-content: space-between; padding: 12px 16px; font-size: 0.85rem; color: #666; font-weight: bold; }

/* Customer Journey */
.journey-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}
.journey-step {
    display: flex;
    align-items: center;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.journey-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}
.step-1 { border-left: 4px solid #3b82f6; }
.step-2 { border-left: 4px solid #f59e0b; }
.step-3 { border-left: 4px solid #ef4444; }

.step-icon {
    font-size: 3.5rem;
    min-width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}
.step-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.step-content strong { color: #fff; }

.step-math {
    background: rgba(255, 90, 0, 0.05);
    border: 1px solid rgba(255, 90, 0, 0.2);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    margin-left: 1.5rem;
    min-width: 140px;
}
.math-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.math-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey-connector {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Forecast Stats */
.stat-card { text-align: center; padding: 2rem; }
.highlight-card { border-color: var(--primary-glow); box-shadow: 0 0 30px rgba(255, 90, 0, 0.1); }
.stat-value { font-size: 3.5rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.stat-sub { font-size: 0.85rem; color: var(--text-muted); }

/* Table */
.forecast-table-wrap {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 15px;
    overflow: hidden;
}
.forecast-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.forecast-table th, .forecast-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--surface-border);
}
.forecast-table th { font-weight: 600; color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.forecast-table tr:last-child td { border-bottom: none; }
.forecast-table tbody tr:hover { background: rgba(255,255,255,0.02); }

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
    border-top: 1px solid var(--surface-border);
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.hidden-onload { opacity: 0; transform: translateY(20px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.hidden-onload.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Slider Calculator */
.calculator-panel {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
}
.budget-display {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.budget-display strong {
    font-size: 2rem;
}
.styled-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    transition: opacity .2s;
}
.styled-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary-glow);
    transition: transform 0.2s;
}
.styled-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container { padding: 1rem; }
    .nav-links { display: none; }
    .title { font-size: 2.5rem; }
    .glass-hero { padding: 2rem 1.5rem; }
    .floating-badge { display: none; }
    .hero-actions { flex-direction: column; gap: 1rem; }
    .hero-actions .cta-button, .hero-actions .secondary-button { width: 100%; text-align: center; }
    .container { padding: 0 1.5rem; }
    
    .tabs-header { flex-wrap: wrap; gap: 0.5rem; }
    .tab-btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; flex: 1 1 45%; text-align: center; }
    
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .journey-step { flex-direction: column; text-align: center; padding: 1.5rem; }
    .step-icon { margin-right: 0; margin-bottom: 1.5rem; }
    .step-math { margin-left: 0; margin-top: 1.5rem; width: 100%; }
    .forecast-table-wrap { overflow-x: auto; }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-modal.active {
    display: flex;
    opacity: 1;
}
.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s;
}
.video-modal-close:hover {
    background: rgba(255,255,255,0.3);
}
.video-modal-content {
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    background: #000;
}
.video-modal-content video {
    width: 100%;
    display: block;
    max-height: 80vh;
}

/* Play Overlay on Mockups */
.phone-video-container, .yt-shorts-video, .li-video-wrapper {
    position: relative;
}
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
}
.play-overlay:hover {
    opacity: 1;
}
.play-overlay::before {
    content: "▶";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    font-size: 1.5rem;
}
