/* ============================================
   TEMPLATE MASTER - MÁQUINA DE LEADS
   v4 — Fundo Contínuo Unificado
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-body: #110e0b;
    --bg-card: #1a1410;
    --bg-card-inner: #1e1712;
    --bg-input: #1a1410;
    --border-card: rgba(232, 134, 12, 0.10);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --accent: #e8860c;
    --accent-light: #f5a623;
    --accent-gradient: linear-gradient(135deg, #e8860c 0%, #f5a623 100%);
    --text-main: #f2ece6;
    --text-secondary: #c4b9ad;
    --text-muted: #8a7e72;
    --green-dot: #22c55e;
    --danger: #ef4444;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 60px rgba(232, 134, 12, 0.10);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --content-max: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Every section: same bg, just spacing */
.section { padding: 80px 0; }

.section-label {
    font-size: 13px; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 14px; display: block;
}

/* Inner panel: lighter card within the grid */
.inner-panel {
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 
        -1px -1px 0px rgba(232, 134, 12, 0.2), 
        -6px -6px 20px rgba(232, 134, 12, 0.03), 
        0 20px 40px rgba(0, 0, 0, 0.45);
}

/* --- Typography --- */
.heading-xl { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.heading-lg { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
.heading-md { font-family: 'Outfit', sans-serif; font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; line-height: 1.3; }
.text-accent { color: var(--accent); }
.text-gradient { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border: none; border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--accent-gradient); color: #fff; box-shadow: 0 4px 20px rgba(232, 134, 12, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232, 134, 12, 0.45); }
.btn-outline { background: transparent; color: var(--text-main); border: 1.5px solid rgba(255,255,255,0.1); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(232, 134, 12, 0.05); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* --- Section Header (reusable) --- */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section-header p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-top: 14px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar-wrapper {
    position: fixed; top: 16px; left: 50%;
    transform: translateX(-50%); z-index: 1000;
    width: calc(100% - 40px); max-width: var(--content-max);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.navbar-wrapper.hidden { transform: translateX(-50%) translateY(-120%); opacity: 0; pointer-events: none; }
.navbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 10px 10px 20px;
    background: rgba(26, 20, 16, 0.88);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-card); border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-brand .brand-logo { width: 32px; height: 32px; border-radius: var(--radius-sm); object-fit: contain; }
.navbar-brand .brand-name { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; }
.navbar-links { display: flex; align-items: center; gap: 28px; margin: 0 auto; }
.navbar-links a { font-size: 13.5px; font-weight: 500; color: var(--text-secondary); position: relative; padding: 4px 0; }
.navbar-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--accent); border-radius: 1px; transition: var(--transition); }
.navbar-links a:hover { color: var(--text-main); }
.navbar-links a:hover::after { width: 100%; }
.navbar-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-cta .btn { border-radius: 100px; padding: 10px 22px; font-size: 13px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--text-main); border-radius: 2px; transition: var(--transition); }

/* ============================================
   MOBILE DRAWER
   ============================================ */
.mobile-drawer-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(6px);
    opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
.mobile-drawer {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 2001;
    width: 70%; max-width: 320px;
    background: var(--bg-card); border-right: 1px solid var(--border-card);
    transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain;
}
.mobile-drawer.active { transform: translateX(0); }
.drawer-header { padding: 28px 24px 20px; border-bottom: 1px solid var(--border-subtle); display: flex; align-items: flex-start; justify-content: space-between; }
.drawer-brand { display: flex; align-items: center; gap: 12px; }
.drawer-brand img { width: 36px; height: 36px; border-radius: var(--radius-sm); object-fit: contain; }
.drawer-brand-info .drawer-brand-name { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; }
.drawer-brand-info .drawer-slogan { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.drawer-close { width: 32px; height: 32px; border-radius: var(--radius-full); background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); font-size: 16px; transition: var(--transition); flex-shrink: 0; }
.drawer-close:hover { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.drawer-nav { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; }
.drawer-nav a { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.drawer-nav a .drawer-icon { font-size: 18px; width: 24px; text-align: center; }
.drawer-nav a:hover { background: rgba(232, 134, 12, 0.08); color: var(--text-main); }
.drawer-contact { padding: 20px 24px; border-top: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: 10px; }
.drawer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-muted); }
.drawer-footer { padding: 16px 24px 28px; }
.drawer-footer .btn { width: 100%; justify-content: center; border-radius: var(--radius-md); }

/* ============================================
   HERO
   ============================================ */
.hero { padding: 130px 0 80px; position: relative; overflow: hidden; }
.hero-blob-1 { position: absolute; top: -60px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232, 134, 12, 0.12) 0%, transparent 70%); border-radius: 50%; filter: blur(40px); pointer-events: none; z-index: 0; animation: blob-float 8s ease-in-out infinite; }
.hero-blob-2 { position: absolute; bottom: -40px; right: 60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(245, 166, 35, 0.10) 0%, transparent 70%); border-radius: 50%; filter: blur(30px); pointer-events: none; z-index: 0; animation: blob-float 10s ease-in-out infinite reverse; }
.hero-blob-3 { position: absolute; top: 30%; right: 20%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(232, 134, 12, 0.06) 0%, transparent 70%); border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; filter: blur(20px); pointer-events: none; z-index: 0; animation: blob-morph 12s ease-in-out infinite; }
@keyframes blob-float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(15px, -20px) scale(1.05); } 66% { transform: translate(-10px, 10px) scale(0.97); } }
@keyframes blob-morph { 0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; } 50% { border-radius: 40% 60% 45% 55% / 60% 40% 50% 60%; } }

.hero .container { display: grid; grid-template-columns: 1fr 420px; gap: 50px; align-items: center; position: relative; z-index: 2; }
.hero-content { max-width: 580px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(232, 134, 12, 0.1); border: 1px solid rgba(232, 134, 12, 0.2); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--accent-light); margin-bottom: 24px; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title { margin-bottom: 20px; }
.hero-subtitle { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat .stat-value { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; }
.hero-stat .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.hero-chat-wrapper { position: relative; }
.hero-chat-wrapper::before { content: ''; position: absolute; inset: -20px; border: 1px solid rgba(232, 134, 12, 0.08); border-radius: var(--radius-xl); pointer-events: none; animation: ring-pulse 4s ease-in-out infinite; }
.hero-chat-wrapper::after { content: ''; position: absolute; inset: -40px; border: 1px solid rgba(232, 134, 12, 0.04); border-radius: calc(var(--radius-xl) + 10px); pointer-events: none; animation: ring-pulse 4s ease-in-out infinite 1s; }
@keyframes ring-pulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.01); } }

.hero-chat-box { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); position: relative; z-index: 2; transition: opacity 0.4s ease, transform 0.4s ease; }
.hero-chat-box.minimized { opacity: 0; transform: scale(0.92); pointer-events: none; }
.chat-box-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--border-subtle); }
.chat-box-avatar { width: 52px; height: 52px; border-radius: var(--radius-full); object-fit: cover; border: 2px solid var(--accent); box-shadow: 0 0 20px rgba(232, 134, 12, 0.15); }
.chat-box-info { flex: 1; }
.chat-box-name { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; }
.chat-box-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.chat-box-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green-dot); font-weight: 500; }
.chat-box-status .online-dot { width: 8px; height: 8px; background: var(--green-dot); border-radius: 50%; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); } 50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } }
.chat-box-messages { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.chat-bubble { max-width: 85%; padding: 14px 18px; border-radius: var(--radius-md); font-size: 14px; line-height: 1.55; color: var(--text-main); animation: fadeInUp 0.5s ease forwards; opacity: 0; }
.chat-bubble:nth-child(1) { animation-delay: 0.3s; }
.chat-bubble:nth-child(2) { animation-delay: 0.8s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.chat-bubble.bot { background: rgba(232, 134, 12, 0.08); border: 1px solid rgba(232, 134, 12, 0.12); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-box-cta { width: 100%; }
.chat-box-cta .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }

/* ============================================
   FLOATING BOT
   ============================================ */
.floating-bot { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 64px; height: 64px; border-radius: var(--radius-full); cursor: pointer; opacity: 0; visibility: hidden; transform: scale(0.5); transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); filter: drop-shadow(0 6px 24px rgba(232, 134, 12, 0.35)); }
.floating-bot.visible { opacity: 1; visibility: visible; transform: scale(1); }
.floating-bot:hover { transform: scale(1.1); }
.floating-bot img { width: 100%; height: 100%; border-radius: var(--radius-full); object-fit: cover; border: 3px solid var(--accent); }
.floating-bot .floating-pulse { position: absolute; inset: -4px; border-radius: var(--radius-full); border: 2px solid var(--accent); animation: floating-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes floating-ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }
.floating-bot .floating-dot { position: absolute; bottom: 2px; right: 2px; width: 14px; height: 14px; background: var(--green-dot); border: 2px solid var(--bg-body); border-radius: var(--radius-full); }

/* ============================================
   MARQUEE (Two-column: label | track)
   ============================================ */
.marquee-section .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}
.marquee-label h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px; font-weight: 700;
    margin-bottom: 8px;
}
.marquee-label p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
    display: flex; width: max-content; gap: 24px; align-items: center;
    animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
    padding: 10px 26px; background: var(--bg-card);
    border: 1px solid var(--border-card); border-radius: 100px;
    font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
    color: var(--text-main); white-space: nowrap; flex-shrink: 0;
    transition: var(--transition);
}
.marquee-item:hover { border-color: var(--accent); background: rgba(232, 134, 12, 0.06); }

/* ============================================
   ABOUT
   ============================================ */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.about-image-wrapper::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid var(--border-card); pointer-events: none; }
.about-text-block { position: relative; padding-left: 28px; }
.about-text-block::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent-gradient); border-radius: 4px; }
.about-title { margin-bottom: 18px; }
.about-text { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-info-item { display: flex; flex-direction: column; gap: 4px; }
.about-info-item .info-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.about-info-item .info-value { font-size: 14px; font-weight: 500; }
.about-info-item .info-value a { color: var(--accent); }
.about-info-item .info-value a:hover { text-decoration: underline; }

/* ============================================
   COUNTER
   ============================================ */
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter-item { padding: 32px 16px; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); transition: var(--transition); }
.counter-item:hover { border-color: rgba(232, 134, 12, 0.2); transform: translateY(-3px); }
.counter-item .counter-number { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.counter-item .counter-label { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }

/* ============================================
   FEATURES
   ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: 26px 22px; transition: var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent-gradient); opacity: 0; transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(232, 134, 12, 0.22); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: rgba(232, 134, 12, 0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.feature-card h4 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; }

/* ============================================
   TIMELINE
   ============================================ */
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border-card); z-index: 0; }
.timeline-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.timeline-number { width: 72px; height: 72px; border-radius: var(--radius-full); background: var(--bg-card); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; color: var(--accent); box-shadow: 0 0 30px rgba(232, 134, 12, 0.15); transition: var(--transition); }
.timeline-step:hover .timeline-number { background: var(--accent-gradient); color: #fff; transform: scale(1.1); }
.timeline-step h4 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.timeline-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   VIDEO
   ============================================ */
.video-section .container { max-width: 900px; text-align: center; }
.video-header { margin-bottom: 40px; }
.video-header p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-top: 14px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-card); box-shadow: var(--shadow-card), var(--shadow-glow); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { position: absolute; inset: 0; background: var(--bg-card); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; cursor: pointer; }
.video-placeholder .play-icon { width: 80px; height: 80px; border-radius: var(--radius-full); background: var(--accent-gradient); display: flex; align-items: center; justify-content: center; font-size: 32px; color: #fff; box-shadow: 0 0 40px rgba(232, 134, 12, 0.3); transition: var(--transition); }
.video-placeholder:hover .play-icon { transform: scale(1.1); }
.video-placeholder span { font-size: 14px; color: var(--text-muted); }

/* ============================================
   HIGHLIGHTS (inside inner-panel)
   ============================================ */
.highlights-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "visual label"
        "visual title"
        "visual desc"
        "visual list";
    gap: 12px 50px;
    align-items: start;
}
.highlights-visual { grid-area: visual; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.highlight-label { grid-area: label; margin-bottom: 0; }
.highlight-title { grid-area: title; margin-bottom: 0; }
.highlight-desc { grid-area: desc; font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin: 0; }
.highlight-mini-card { background: var(--bg-card-inner); border: 1px solid var(--border-card); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; transition: var(--transition); }
.highlight-mini-card:hover { transform: translateY(-3px); border-color: rgba(232, 134, 12, 0.22); }
.highlight-mini-card .mini-icon { font-size: 28px; margin-bottom: 10px; }
.highlight-mini-card h5 { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.highlight-mini-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.highlights-list { grid-area: list; display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.highlights-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.highlights-list li .check-icon { width: 22px; height: 22px; flex-shrink: 0; background: rgba(232, 134, 12, 0.12); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--accent); margin-top: 1px; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); padding: 36px 28px; display: flex; flex-direction: column; transition: var(--transition); position: relative; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(232, 134, 12, 0.12); transform: scale(1.04); }
.pricing-card.featured .pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 20px; background: var(--accent-gradient); border-radius: 100px; font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-name { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-subtle); }
.pricing-price .price-value { font-family: 'Outfit', sans-serif; font-size: 42px; font-weight: 800; }
.pricing-price .price-currency { font-size: 18px; font-weight: 600; color: var(--text-muted); vertical-align: super; }
.pricing-price .price-period { font-size: 14px; color: var(--text-muted); }
.pricing-price .price-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--text-secondary); }
.pricing-features li .pf-check { color: var(--accent); font-size: 14px; }
.pricing-features li .pf-x { color: var(--text-muted); font-size: 14px; opacity: 0.4; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================
   COMPARISON TABLE (inside inner-panel)
   ============================================ */
.comparison-table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-card); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table thead th { padding: 18px 20px; text-align: left; background: var(--bg-card); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px; border-bottom: 1px solid var(--border-card); white-space: nowrap; }
.comparison-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.comparison-table thead th.highlight-col { background: rgba(232, 134, 12, 0.08); color: var(--accent); }
.comparison-table tbody td { padding: 14px 20px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: rgba(255,255,255,0.015); }
.comparison-table tbody td:first-child { font-weight: 600; color: var(--text-main); }
.comparison-table tbody td.highlight-col { background: rgba(232, 134, 12, 0.03); }
.ct-check { color: var(--accent); font-size: 16px; }
.ct-x { color: var(--text-muted); opacity: 0.3; font-size: 16px; }

/* ============================================
   TESTIMONIALS (vertical scroll)
   ============================================ */
.testimonials-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.testimonials-content { padding-top: 40px; }
.testimonials-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-top: 14px; }
.testimonials-count { display: flex; gap: 40px; margin-top: 32px; }
.testimonials-count .tc-item .tc-number { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: var(--accent); }
.testimonials-count .tc-item .tc-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.testimonials-scroll-wrapper { height: 520px; overflow: hidden; position: relative; mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%); }
.testimonials-scroll-track { display: flex; flex-direction: column; gap: 16px; animation: testimonials-scroll-up 25s linear infinite; }
.testimonials-scroll-track:hover { animation-play-state: paused; }
@keyframes testimonials-scroll-up { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: 24px; flex-shrink: 0; transition: var(--transition); }
.testimonial-card:hover { border-color: rgba(232, 134, 12, 0.2); }
.testimonial-card .tc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-card .tc-avatar { width: 44px; height: 44px; border-radius: var(--radius-full); background: var(--accent-gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0; }
.testimonial-card .tc-name { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; }
.testimonial-card .tc-role { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.testimonial-card .tc-stars { display: flex; gap: 2px; margin-top: 3px; }
.testimonial-card .tc-stars span { color: var(--accent); font-size: 12px; }
.testimonial-card .tc-text { font-size: 13px; color: var(--text-secondary); line-height: 1.7; font-style: italic; }

/* ============================================
   FAQ
   ============================================ */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: rgba(232, 134, 12, 0.2); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; color: var(--text-main); transition: var(--transition); gap: 16px; }
.faq-question:hover { color: var(--accent); }
.faq-toggle { width: 28px; height: 28px; flex-shrink: 0; border-radius: var(--radius-full); background: rgba(232, 134, 12, 0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--accent); transition: var(--transition); }
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* ============================================
   TEAM
   ============================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); border-color: rgba(232, 134, 12, 0.2); }
.team-avatar { width: 80px; height: 80px; border-radius: var(--radius-full); background: var(--accent-gradient); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: #fff; margin: 0 auto 16px; }
.team-card h4 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card .team-role { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.team-card .team-social { display: flex; justify-content: center; gap: 8px; }
.team-card .team-social a { width: 30px; height: 30px; border-radius: var(--radius-full); background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.team-card .team-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-card); border: 1px solid var(--border-card); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); opacity: 0.8; }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,14,11,0.8) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 14px; font-weight: 600; }

/* ============================================
   TRUST BADGES
   ============================================ */
.badges-grid { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.badge-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.badge-icon { width: 60px; height: 60px; border-radius: var(--radius-full); background: rgba(232, 134, 12, 0.08); border: 1px solid var(--border-card); display: flex; align-items: center; justify-content: center; font-size: 26px; transition: var(--transition); }
.badge-item:hover .badge-icon { border-color: var(--accent); transform: scale(1.1); }
.badge-item span { font-size: 12px; color: var(--text-muted); font-weight: 600; max-width: 100px; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(232, 134, 12, 0.2); }
.blog-thumb { width: 100%; height: 180px; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-category { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card h4 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card .blog-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.blog-card .blog-date { font-size: 11px; color: var(--text-muted); }

/* ============================================
   NEWSLETTER (inner-panel)
   ============================================ */
.newsletter-inner { text-align: center; }
.newsletter-inner p { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; margin-top: 10px; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 20px; background: var(--bg-card-inner); border: 1px solid var(--border-card); border-radius: var(--radius-md); color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: var(--transition); }
.newsletter-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232, 134, 12, 0.1); }
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ============================================
   CTA DEVICES
   ============================================ */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-inner { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); padding: 48px 36px; text-align: center; transition: var(--transition); }
.cta-inner:hover { border-color: rgba(232, 134, 12, 0.22); transform: translateY(-3px); }
.cta-inner .cta-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 4px; }
.cta-inner .cta-sub { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; font-family: 'Outfit', sans-serif; }
.cta-inner .cta-desc { font-size: 14px; color: var(--text-secondary); margin: 16px 0 28px; line-height: 1.65; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.contact-info { padding-top: 10px; }
.contact-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-top: 14px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail .cd-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius-md); background: rgba(232, 134, 12, 0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-detail .cd-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail .cd-value { font-size: 14px; color: var(--text-main); margin-top: 2px; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); padding: 36px; }
.contact-form h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--bg-input); border: 1px solid var(--border-card); border-radius: var(--radius-md); color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232, 134, 12, 0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================
   FOOTER (same bg, just border-top)
   ============================================ */
.footer { border-top: 1px solid var(--border-subtle); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand .brand-name { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); padding: 4px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border-subtle); font-size: 12px; color: var(--text-muted); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius-full); background: var(--bg-card); border: 1px solid var(--border-card); display: flex; align-items: center; justify-content: center; transition: var(--transition); overflow: hidden; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-social a svg { width: 16px; height: 16px; fill: var(--text-muted); transition: var(--transition); }
.footer-social a:hover svg { fill: #fff; }

/* ============================================
   CHAT MODAL
   ============================================ */
.chat-modal-overlay { position: fixed; inset: 0; z-index: 9998; background: rgba(0, 0, 0, 0.55); opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; }
.chat-modal-overlay.active { opacity: 1; visibility: visible; }
.chat-modal { position: fixed; top: 0; right: 0; bottom: 0; z-index: 9999; width: 420px; max-width: 100%; background: var(--bg-card); border-left: 1px solid var(--border-card); box-shadow: -8px 0 60px rgba(0, 0, 0, 0.6); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
.chat-modal.active { transform: translateX(0); }
.chat-modal-header { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-bottom: 1px solid var(--border-subtle); flex-shrink: 0; }
.chat-modal-header .modal-avatar { width: 46px; height: 46px; border-radius: var(--radius-full); object-fit: cover; border: 2px solid var(--accent); }
.chat-modal-header .modal-info { flex: 1; }
.chat-modal-header .modal-name { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; }
.chat-modal-header .modal-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.chat-modal-header .modal-status { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--green-dot); font-weight: 500; margin-top: 3px; }
.chat-modal-header .modal-status .online-dot { width: 7px; height: 7px; background: var(--green-dot); border-radius: 50%; animation: pulse-green 2s infinite; }
.chat-modal-close { width: 36px; height: 36px; border-radius: var(--radius-full); background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); font-size: 18px; transition: var(--transition); }
.chat-modal-close:hover { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.chat-modal-body { flex: 1; padding: 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.chat-modal-body .chat-bubble { animation: none; opacity: 1; }
.modal-typing { display: flex; align-items: center; gap: 6px; padding: 14px 18px; background: rgba(232, 134, 12, 0.08); border: 1px solid rgba(232, 134, 12, 0.12); border-radius: var(--radius-md); border-bottom-left-radius: 4px; align-self: flex-start; max-width: 85%; }
.typing-dots { display: flex; gap: 4px; }
.typing-dots span { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: typing-bounce 1.4s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }
.chat-modal-footer { padding: 16px 24px; border-top: 1px solid var(--border-subtle); display: flex; gap: 10px; flex-shrink: 0; }
.chat-modal-footer input { flex: 1; padding: 12px 16px; background: var(--bg-input); border: 1px solid var(--border-card); border-radius: var(--radius-md); color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: var(--transition); }
.chat-modal-footer input:focus { border-color: var(--accent); }
.chat-modal-footer input::placeholder { color: var(--text-muted); }
.chat-modal-footer .send-btn { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-md); background: var(--accent-gradient); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: var(--transition); }
.chat-modal-footer .send-btn:hover { transform: scale(1.05); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-chat-wrapper { max-width: 420px; }
    .hero-blob-1 { width: 350px; height: 350px; top: auto; bottom: -40px; right: -40px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "title"
            "desc"
            "visual"
            "list";
        gap: 24px;
    }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .testimonials-inner { grid-template-columns: 1fr; gap: 40px; }
    .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .timeline-grid::before { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .marquee-section .container { grid-template-columns: 1fr; gap: 20px; }
    .marquee-label { text-align: center; }
    .inner-panel { padding: 32px; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .container { padding: 0 18px; }
    .navbar-links { display: none; }
    .navbar-cta .btn-outline { display: none; }
    .hamburger { display: flex; }
    .navbar { padding: 10px 16px; }
    .navbar-wrapper { width: calc(100% - 24px); }
    .hero { padding: 120px 0 60px; }
    .hero-stats { gap: 24px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-chat-wrapper::before, .hero-chat-wrapper::after { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .chat-modal { width: 100%; }
    .highlights-visual { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .timeline-grid { grid-template-columns: 1fr; gap: 24px; }
    .newsletter-form { flex-direction: column; }
    .testimonials-scroll-wrapper { height: 400px; }
    .gallery-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .counter-grid { grid-template-columns: 1fr 1fr; }
    .badges-grid { gap: 24px; }
    .inner-panel { padding: 24px; border-radius: var(--radius-lg); }
}
@media (max-width: 480px) {
    .hero-stat .stat-value { font-size: 22px; }
    .hero-stats { flex-wrap: wrap; }
    .floating-bot { bottom: 20px; right: 20px; width: 56px; height: 56px; }
    .counter-grid { grid-template-columns: 1fr; }
}

/* --- Pricing Toggle --- */
.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 20px auto 0;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 100px;
}
.toggle-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.toggle-label.active {
    color: var(--text-main);
}
.toggle-switch {
    width: 44px;
    height: 24px;
    background: var(--bg-card-inner);
    border: 1px solid var(--border-card);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
}
.toggle-slider {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    transition: var(--transition);
}
.discount-badge {
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--green-dot);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
}

/* --- Premium Video Player Mockup --- */
.video-player-mockup {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1712 0%, #110e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 20, 16, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--border-subtle);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 10;
}
.control-left, .control-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.play-btn-mini {
    color: var(--accent);
    cursor: pointer;
    font-size: 14px;
}
.progress-bar-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}
.progress-fill {
    width: 35%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 2px;
}
.progress-handle {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--text-main);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}
.time-display {
    font-size: 11px;
    color: var(--text-muted);
}
.control-icon {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}
.control-icon:hover {
    color: var(--text-main);
}

/* --- Hero Wave Decorator --- */
.hero-wave-decorator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}
.hero-wave-decorator svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   MARQUEE INSIDE INNER-PANEL
   ============================================ */
.marquee-section-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

/* ============================================
   BENEFÍCIOS PANEL (Unified inner-panel)
   ============================================ */
.beneficios-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.beneficios-block {
    padding: 20px 0;
}
.beneficios-block:first-child {
    padding-top: 0;
}
.beneficios-block:last-child {
    padding-bottom: 0;
}
.beneficios-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 134, 12, 0.12) 30%, rgba(232, 134, 12, 0.12) 70%, transparent 100%);
    margin: 28px 0;
}

/* Video inside beneficios panel — override max-width */
.beneficios-panel .video-wrapper {
    border-radius: var(--radius-lg);
}

/* ============================================
   FAQ TWO-COLUMN LAYOUT
   ============================================ */
.faq-two-col {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}
.faq-info-col {
    position: sticky;
    top: 100px;
}
.faq-info-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 14px;
    margin-bottom: 32px;
}
.faq-info-visual {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}
.faq-info-stat {
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    text-align: center;
    flex: 1;
}
.faq-info-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-info-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.faq-accordion-col .faq-grid {
    max-width: none;
    margin: 0;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-final-inner p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 14px;
    margin-bottom: 32px;
}
.cta-final-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER BRAND LOGO
   ============================================ */
.footer-brand-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    margin-bottom: 14px;
}

/* ============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
    .marquee-section-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .marquee-section-inner .marquee-label {
        text-align: left;
    }
    .faq-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-info-col {
        position: static;
        margin-bottom: 48px;
    }
}
@media (max-width: 768px) {
    /* Navbar: hide CTA buttons before drawer opens */
    .navbar-cta {
        display: none !important;
    }
    
    /* Left-align specific section headers */
    .section-header, .video-header, .beneficios-header {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .section-header p, .video-header p, .beneficios-header p {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    /* Spacing between About contact block and Highlights / Video / Comparison */
    .beneficios-divider {
        margin: 48px 0;
    }
    
    /* FAQ stats visual formatting on mobile */
    .faq-info-visual {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        margin-bottom: 24px;
    }
    .faq-info-stat {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* CTA Final spacing on mobile */
    .cta-final-inner h2 {
        margin-bottom: 18px;
    }
    .cta-final-inner p {
        margin-top: 0;
        margin-bottom: 36px;
    }
    .cta-final-actions {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        width: 100%;
    }
    .cta-final-actions .btn {
        width: 100%;
        justify-content: center;
        margin: 0;
    }
    
    .beneficios-panel {
        padding: 24px;
    }
}

/* =========================================
   ANTI-FLASH: esconde a parte personalizada (nome, foto e mensagens do bot)
   até o lpConfig do servidor popular o DOM. O main.js remove a classe
   'lp-loading' do <html> assim que os dados chegam (ou em fallback de erro).
   visibility:hidden preserva o layout, evitando "pulo" na página.
   ========================================= */
html.lp-loading .js-personalize {
    visibility: hidden;
}
