/* ===== CSS Variables & Reset ===== */
:root {
    --orange-500: rgb(255, 84, 0);
    --orange-600: rgb(255, 110, 10);
    --orange-400: rgb(255, 142, 50);
    --orange-300: rgb(255, 184, 109);
    --orange-200: rgb(255, 214, 165);
    --orange-100: rgb(255, 236, 211);
    --orange-50: rgb(255, 247, 236);
    --dark: rgb(16, 16, 16);
    --white: rgb(255, 255, 255);
    --cream: rgb(250, 248, 245);
    --yellow: rgb(251, 191, 36);
    --dark-brown: rgb(70, 17, 4);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    height: 72px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--orange-500);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-dropdown-trigger:hover { color: var(--orange-500); }

.nav-dropdown-trigger svg {
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-left: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown-menu a {
    display: block;
    background: var(--white);
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 14px;
    color: #555;
    border: 1px solid rgba(0,0,0,0.06);
    border-top: none;
    transition: all 0.15s;
}

.nav-dropdown-menu a:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px 10px 0 0;
}

.nav-dropdown-menu a:last-child {
    border-radius: 0 0 10px 10px;
}

.nav-dropdown-menu a:hover {
    background: var(--orange-50);
    color: var(--orange-500);
}

/* Mega Menu */
.mega-menu {
    min-width: 280px;
}

.mega-menu .mega-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 16px !important;
}

.mega-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--orange-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-item span:last-child {
    display: flex;
    flex-direction: column;
}

.mega-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.mega-item small {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.mega-item:hover .mega-icon {
    background: var(--orange-100);
}

.mega-item:hover strong {
    color: var(--orange-500);
}

/* Single nav links */
.nav-link-single {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}

.nav-link-single:hover {
    color: var(--orange-500);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}

.btn-login:hover { color: var(--dark); }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-500);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 84, 0, 0.3);
}

.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--orange-500);
    font-weight: 600;
    border: 2px solid var(--orange-500);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--orange-50);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--orange-500);
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.2s;
    gap: 4px;
}

.btn-link:hover { gap: 8px; }

.center-link { justify-content: center; margin-top: 32px; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 60px;
    text-align: center;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    color: #555;
}

.badge-stars { color: var(--yellow); font-size: 14px; }

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--dark);
}

.hero-description {
    max-width: 640px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-channels {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.channel-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.channel-icon:hover { transform: translateY(-2px); }

/* ===== Dashboard Preview ===== */
.dashboard-preview {
    padding: 0 0 80px;
}

.browser-frame {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
}

.browser-dots {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.dashboard-mockup {
    display: grid;
    grid-template-columns: 60px 220px 1fr 260px;
    height: 400px;
}

.mock-sidebar {
    background: var(--dark);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mock-sidebar-item {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
}

.mock-sidebar-item.active { background: var(--orange-500); }

.mock-chat-list {
    border-right: 1px solid rgba(0,0,0,0.06);
    padding: 12px;
    overflow: hidden;
}

.mock-chat-item {
    display: flex;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 4px;
    cursor: default;
}

.mock-chat-item.active { background: var(--orange-50); }

.mock-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
}

.mock-chat-text { flex: 1; padding-top: 4px; }

.mock-line {
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    margin-bottom: 6px;
}

.mock-line.light { background: #f0f0f0; }
.mock-line.w30 { width: 30%; }
.mock-line.w40 { width: 40%; }
.mock-line.w50 { width: 50%; }
.mock-line.w60 { width: 60%; }
.mock-line.w70 { width: 70%; }
.mock-line.w80 { width: 80%; }
.mock-line.w90 { width: 90%; }
.mock-line.center { margin-left: auto; margin-right: auto; }

.mock-chat-area {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.mock-message {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
}

.mock-message.received {
    background: #f3f3f3;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.mock-message.sent {
    background: var(--orange-500);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.mock-message.sent .mock-line { background: rgba(255,255,255,0.4); }

.mock-profile-panel {
    border-left: 1px solid rgba(0,0,0,0.06);
    padding: 24px 16px;
}

.mock-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 0 auto 12px;
}

.mock-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 16px 0;
}

/* ===== Section Styles ===== */
.section-tag {
    display: inline-block;
    background: var(--orange-100);
    color: var(--orange-500);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.section-crm {
    padding: 80px 0;
    text-align: center;
}

/* ===== Two Column Sections ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col.reverse .col-image { order: -1; }

.section-save-time,
.section-lead-capture,
.section-trainable-ai,
.section-client-history {
    padding: 80px 0;
}

.col-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.text-orange { color: var(--orange-500); }

.col-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
}

.feature-card-header { padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 16px; }

.feature-card-body {
    display: flex;
    gap: 12px;
}

.pipeline-stage { flex: 1; }

.stage-header {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.orange-bg { background: var(--orange-500); }
.blue-bg { background: #3B82F6; }
.green-bg { background: #10B981; }

.stage-card {
    background: #f8f8f8;
    border-radius: 8px;
    height: 60px;
    margin-bottom: 8px;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Lead Capture Mock */
.lead-capture-mock { display: flex; flex-direction: column; gap: 16px; }

.lead-form-mock { display: flex; flex-direction: column; gap: 10px; }

.mock-input {
    height: 36px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
}

.mock-btn {
    height: 36px;
    background: var(--orange-500);
    border-radius: 8px;
    width: 50%;
}

.lead-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.lead-tag {
    padding: 6px 14px;
    background: var(--orange-50);
    color: var(--orange-500);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--orange-100);
}

/* AI Card Mock */
.ai-chat-mock { display: flex; flex-direction: column; gap: 16px; }

.ai-message { display: flex; gap: 10px; }
.ai-message.user { justify-content: flex-end; }

.ai-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.ai-bubble {
    background: #f3f3f3;
    padding: 12px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    max-width: 80%;
}

.user-bubble {
    background: var(--orange-500) !important;
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 4px !important;
}

.user-bubble .mock-line { background: rgba(255,255,255,0.4); }

/* Client Profile Mock */
.client-profile-mock { display: flex; flex-direction: column; gap: 16px; }

.profile-header-mock {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar-mock {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
}

.profile-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 8px;
}

.profile-tabs .tab {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    border-radius: 6px;
    cursor: default;
}

.profile-tabs .tab.active {
    background: var(--orange-50);
    color: var(--orange-500);
}

.profile-timeline { display: flex; flex-direction: column; gap: 12px; }

.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-500);
    flex-shrink: 0;
}

/* ===== Stats Banner ===== */
.stats-banner {
    padding: 60px 0;
}

.stats-content {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: var(--white);
}

.stats-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--orange-500);
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
}

/* ===== Integrations ===== */
.section-integrations {
    padding: 80px 0;
    text-align: center;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.integration-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.integration-icon:hover { transform: translateY(-2px); }

.integration-item span {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

/* ===== Testimonials ===== */
.section-testimonials {
    padding: 80px 0;
}

.section-testimonials .section-title { text-align: center; margin-bottom: 48px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.06);
}

.testimonial-card.dark {
    background: var(--dark);
    color: var(--white);
    border-color: transparent;
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: inherit;
}

.testimonial-card:not(.dark) .testimonial-text { color: #555; }

.testimonial-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.testimonial-card.dark .testimonial-stats { border-bottom-color: rgba(255,255,255,0.1); }

.t-stat { display: flex; flex-direction: column; }

.t-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange-500);
}

.t-stat-label {
    font-size: 13px;
    color: #999;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-100);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.dark-avatar {
    background: rgba(255,255,255,0.1);
    color: var(--orange-400);
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 13px;
    color: #999;
}

/* ===== CTA Section ===== */
.section-cta {
    padding: 40px 0 80px;
}

.cta-box {
    background: var(--orange-500);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--orange-500);
}

.cta-box .btn-primary:hover {
    background: var(--cream);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ===== Footer ===== */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.footer-col a {
    font-size: 14px;
    color: #777;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange-500); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: #999;
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--orange-500); }

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .dashboard-mockup {
        grid-template-columns: 60px 180px 1fr;
    }
    .mock-profile-panel { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 24px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        gap: 16px;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        padding-top: 8px;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu { display: block; }

    .nav-dropdown-menu::before { display: none; }

    .nav-dropdown-menu a {
        border: none;
        padding: 8px 16px;
        border-radius: 0;
        background: transparent;
    }

    .nav-dropdown-menu a:first-child { border-radius: 0; border-top: none; }
    .nav-dropdown-menu a:last-child { border-radius: 0; }

    .mobile-menu-btn { display: flex; }

    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col.reverse .col-image { order: 0; }

    .dashboard-mockup {
        grid-template-columns: 1fr;
        height: auto;
    }
    .mock-sidebar { display: none; }
    .mock-chat-list { display: none; }
    .mock-profile-panel { display: none; }
    .mock-chat-area { min-height: 250px; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider { width: 48px; height: 1px; }

    .stats-content { padding: 32px 24px; }

    .hero { padding: 120px 0 40px; }
    .hero-title { font-size: 36px; }

    .feature-card-body { flex-direction: column; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-badges { flex-direction: column; align-items: center; }
    .nav-actions .btn-login { display: none; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title,
.hero-description,
.hero-ctas,
.hero-badges {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-description { animation-delay: 0.1s; }
.hero-ctas { animation-delay: 0.2s; }
.hero-channels { animation: fadeInUp 0.6s ease-out 0.3s forwards; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
