/* ==========================================================================
   VedicFeed Official Theme - Free AI Astrology Chat Stylesheet
   Primary Keyword Focus: AI Astrology
   Brand Palette: 
   - Signature Warm Orange: #f08d52
   - Brand Logo Dark Navy: #1e293b / #0f172a
   - Warm Background: #faf9f6
   - Gold Accent: #f59e0b
   ========================================================================== */

:root {
    /* VedicFeed Official Brand Color Tokens */
    --primary: #f08d52;
    --primary-hover: #d87438;
    --primary-light: #fff3ec;
    --primary-glow: rgba(240, 141, 82, 0.25);

    --vf-navy: #1e293b;
    --vf-navy-dark: #0f172a;
    
    --secondary: #4f46e5;
    --secondary-hover: #4338ca;
    --secondary-light: #eeeffe;

    --accent: #f59e0b;
    --accent-light: #fef3c7;

    --bg-main: #faf9f6;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-section-alt: #f1f5f9;

    --dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border: #e2e8f0;
    --border-highlight: #ffdac4;

    /* Typography */
    --font-heading: 'Philosopher', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows & Radii */
    --shadow-sm: 0 2px 6px rgba(240, 141, 82, 0.08);
    --shadow-md: 0 10px 25px -5px rgba(240, 141, 82, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 35px -10px rgba(240, 141, 82, 0.22);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS Reset & Global Layout */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
}

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

.vf-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary { color: var(--primary) !important; }
.text-gold { color: var(--accent) !important; }
.text-green { color: #10b981 !important; }
.text-center { text-align: center; }

/* Responsive Utility Classes */
.hide-desktop { display: none !important; }
.hide-mobile { display: inline-flex !important; }

/* ==========================================================================
   VedicFeed Header & Responsive Mobile Navigation Drawer
   ========================================================================== */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.brand-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.vf-main-logo {
    height: 38px;
    width: auto;
    transition: var(--transition-fast);
}

.brand-tag {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid var(--border-highlight);
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: var(--vf-navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.nav-link:hover { color: var(--primary); }

.header-right-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header-cta {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(242, 102, 34, 0.3);
    transition: var(--transition-smooth);
}

.btn-header-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 102, 34, 0.45);
    color: #ffffff;
}

.mobile-hamburger-btn {
    display: none;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--vf-navy);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.mobile-hamburger-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-menu-drawer {
    display: none;
    background: #ffffff;
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mobile-menu-drawer.show {
    display: block;
    animation: fadeIn 0.25s ease;
}

.mobile-menu-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--primary-light);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 10px;
}

.badge-new {
    background: var(--primary);
    color: #ffffff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--vf-navy);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-item:hover { color: var(--primary); }

/* ==========================================================================
   Hero Section - Responsive Fluid Styling
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 45px 0 65px;
    background: linear-gradient(180deg, #fff7f2 0%, #faf9f6 100%);
    border-bottom: 1px solid var(--border-highlight);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.badge-pill {
    background: #ffffff;
    border: 1px solid var(--border-highlight);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.2;
    color: var(--vf-navy-dark);
    margin-bottom: 16px;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-hero-primary {
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.btn-hero-secondary {
    background: #ffffff;
    color: var(--vf-navy);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--vf-navy);
    transition: var(--transition-fast);
}

.btn-hero-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px dashed #e2e8f0;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatars .avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    margin-left: -12px;
    transition: var(--transition-fast);
}

.user-avatars .avatar-img:first-child {
    margin-left: 0;
}

.user-avatars .avatar-img:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 10;
}

.avatar-plus {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(242, 102, 34, 0.3);
}

.proof-text {
    font-size: 13px;
    color: var(--text-muted);
}

.proof-text strong { color: var(--vf-navy-dark); }

.stars { color: var(--accent); font-size: 12px; }
.stars span { color: var(--text-muted); margin-left: 5px; }

/* Real-Time Conversion Activity Ticker */
.live-activity-ticker {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-highlight);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--vf-navy);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 1.5s infinite;
}

.time-ago {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

/* ==========================================================================
   Interactive Demo Chat Widget - Touch & Mobile Responsive
   ========================================================================== */
.hero-widget-block { position: relative; }

.chat-widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: clamp(440px, 60vh, 520px);
}

.widget-header {
    background: linear-gradient(135deg, #f08d52 0%, #d87438 100%);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.ai-avatar-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-avatar-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ai-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.status-online {
    font-size: 11px;
    color: #ffedd5;
    display: flex;
    align-items: center;
    gap: 5px;
}

.green-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.widget-launch-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

.widget-launch-badge:hover {
    background: #ffffff;
    color: var(--primary);
}

.chat-messages-box {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #faf9f6;
    -webkit-overflow-scrolling: touch;
}

.message {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.msg-ai { align-self: flex-start; }
.msg-user { align-self: flex-end; }

.msg-ai .msg-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    padding: 12px 15px;
    border-radius: 16px 16px 16px 4px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
}

.msg-user .msg-content {
    background: var(--primary);
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 16px 16px 4px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(242, 102, 34, 0.25);
}

.msg-time {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
    align-self: flex-start;
}

.msg-user .msg-time { align-self: flex-end; }

.quick-prompts-container { margin-top: 8px; }

.prompt-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.prompt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    background: #ffffff;
    border: 1px solid var(--border-highlight);
    color: var(--text-main);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.widget-input-bar {
    padding: 10px 14px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 8px;
}

.widget-input-bar input {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: var(--text-main);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.widget-input-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 102, 34, 0.15);
}

.btn-send {
    background: var(--primary);
    color: #ffffff;
    border: none;
    min-width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-send:hover {
    background: var(--primary-hover);
    transform: scale(1.04);
}

.widget-footer-note {
    padding: 8px 14px;
    background: #f8fafc;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    border-top: 1px solid #eee;
}

.link-primary {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.link-primary:hover { text-decoration: underline; }

.typing-dots { display: inline-flex; gap: 4px; }
.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* ==========================================================================
   AEO & GEO Direct Answer Section
   ========================================================================== */
.aeo-summary-section { padding: 50px 0; }

.aeo-box {
    background: #ffffff;
    border: 1px solid var(--border-highlight);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 4vw, 35px);
    box-shadow: var(--shadow-md);
}

.aeo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.aeo-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 30px);
    margin-bottom: 12px;
    color: var(--vf-navy-dark);
}

.aeo-lead {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.65;
}

.aeo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.aeo-card {
    background: #faf9f6;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.aeo-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-2px);
}

.aeo-card-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.aeo-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--vf-navy-dark);
}

.aeo-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Mid-Page CTA Banner Section
   ========================================================================== */
.cta-banner-section { padding: 30px 0; }

.cta-banner-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff7f2 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
}

.cta-banner-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.2vw, 28px);
    color: var(--vf-navy-dark);
}

.cta-banner-card p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 680px;
}

.btn-cta-primary {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(242, 102, 34, 0.35);
    transition: var(--transition-smooth);
}

.btn-cta-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works-section { padding: 60px 0; }

.section-title-block {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 34px);
    color: var(--vf-navy-dark);
    margin-bottom: 10px;
}

.section-desc { font-size: 15px; color: var(--text-muted); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 26px 20px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-highlight);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: rgba(242, 102, 34, 0.2);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border: 1px solid var(--border-highlight);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--vf-navy-dark);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

.step-action-bar { text-align: center; }

/* ==========================================================================
   Core Topics Grid Section
   ========================================================================== */
.topics-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.topic-card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.topic-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-highlight);
}

.topic-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.icon-career { background: #eff6ff; color: #2563eb; }
.icon-love { background: #fdf2f8; color: #db2777; }
.icon-wealth { background: #fffbeb; color: #d97706; }
.icon-remedy { background: #f5f3ff; color: #7c3aed; }

.topic-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--vf-navy-dark);
}

.topic-card ul {
    list-style: none;
    margin-bottom: 16px;
    flex: 1;
}

.topic-card ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    border-bottom: 1px dashed #e2e8f0;
    position: relative;
    padding-left: 14px;
}

.topic-card ul li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.topic-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.topic-link:hover { text-decoration: underline; }

/* ==========================================================================
   Comparison Table Section
   ========================================================================== */
.comparison-section { padding: 60px 0; }

.scroll-hint-badge {
    text-align: right;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.comparison-table th, .comparison-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table th {
    background: #f8fafc;
    color: var(--vf-navy-dark);
    font-weight: 700;
    font-size: 14px;
}

.comparison-table td { color: var(--text-muted); }

.comparison-table .highlight-col {
    background: #fff7f2;
    border-left: 1px solid var(--border-highlight);
    border-right: 1px solid var(--border-highlight);
    color: var(--vf-navy-dark);
    font-weight: 600;
}

.comparison-table th.highlight-col {
    background: var(--primary-light);
    color: var(--primary);
}

/* ==========================================================================
   SEO Article Section
   ========================================================================== */
.seo-article-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.article-content {
    max-width: 880px;
    margin: 0 auto;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.8vw, 30px);
    color: var(--vf-navy-dark);
    margin-bottom: 14px;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 22px);
    color: var(--primary);
    margin: 22px 0 10px;
}

.article-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.seo-bullet-list { margin: 10px 0 20px 18px; }

.seo-bullet-list li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.55;
}

.seo-bullet-list li strong { color: var(--vf-navy-dark); }

.houses-explanation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.house-item {
    background: #faf9f6;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: var(--radius-md);
}

.house-item h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 4px;
}

.house-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section { padding: 60px 0; }

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.faq-item:hover { border-color: var(--border-highlight); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    color: var(--vf-navy-dark);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-body);
}

.faq-icon {
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
    padding: 0 20px 16px;
    display: none;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer { display: block; }

/* ==========================================================================
   Final Conversion CTA Section
   ========================================================================== */
.final-cta-section { padding: 60px 0 80px; }

.final-cta-card {
    background: linear-gradient(135deg, #fff0e6 0%, #ffffff 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    padding: clamp(30px, 5vw, 50px) 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-mini-tag {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.final-cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 34px);
    color: var(--vf-navy-dark);
    margin-bottom: 10px;
}

.final-cta-card p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 24px;
}

.final-btn-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.btn-final-primary {
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(242, 102, 34, 0.4);
    transition: var(--transition-smooth);
}

.btn-final-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: #ffffff;
}

.sub-guarantee {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* ==========================================================================
   VedicFeed Footer Component
   ========================================================================== */
.vf-footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 45px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

.footer-col p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    color: var(--vf-navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #ffffff;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--primary); }

/* ==========================================================================
   Sticky Bottom Bar & Floating Action Button
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--border-highlight);
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.sticky-bottom-bar.show { transform: translateY(0); }

.sticky-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sticky-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--vf-navy-dark);
    font-weight: 600;
}

.badge-live {
    background: #fee2e2;
    color: #ef4444;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid #fca5a5;
}

.btn-sticky-cta {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(242, 102, 34, 0.3);
}

/* ==========================================================================
   Responsive Breakpoint Rules (Mobile, Tablet, Small Desktop)
   ========================================================================== */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-hamburger-btn { display: flex; }
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .hero-widget-block {
        order: 1; /* Moves Interactive Demo Chat Widget to the TOP in Mobile View */
        width: 100%;
    }
    .hero-text-block {
        order: 2; /* Hero text block placed below the Demo Chat Widget on Mobile */
        width: 100%;
    }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 24px; }
    .hide-desktop { display: block !important; }
}

@media (max-width: 600px) {
    .vf-container { padding: 0 12px; }
    .top-header { padding: 8px 0; }
    .header-container { padding: 8px 12px; }
    .vf-main-logo { height: 30px; }
    .brand-tag { font-size: 9px; padding: 2px 6px; }
    .hide-mobile { display: none !important; }

    /* Compact Mobile Hero Section */
    .hero-section { padding: 16px 0 24px; }
    .hero-container { gap: 18px; }
    
    .hero-badge-row { margin-bottom: 6px; }
    .badge-pill { font-size: 11px; padding: 3px 10px; }
    
    .hero-title { font-size: 22px; margin-bottom: 6px; line-height: 1.25; }
    .hero-title span { display: inline; }
    
    .hero-subtitle { font-size: 13px; margin-bottom: 10px; line-height: 1.45; }
    
    .hero-highlights { gap: 6px; margin-bottom: 12px; }
    .highlight-item { font-size: 11px; padding: 4px 10px; }
    
    .hero-cta-group { flex-direction: column; width: 100%; gap: 8px; margin-bottom: 12px; }
    .btn-hero-primary { width: 100%; justify-content: center; text-align: center; font-size: 14px; padding: 10px 16px; }
    .btn-hero-secondary { width: 100%; justify-content: center; text-align: center; font-size: 13px; padding: 9px 14px; }
    
    .hero-social-proof { padding-top: 8px; gap: 8px; }
    .user-avatars .avatar-img { width: 30px; height: 30px; margin-left: -8px; }
    .avatar-plus { width: 28px; height: 28px; font-size: 10px; margin-left: -8px; }
    .proof-text { font-size: 11px; }
    .stars { font-size: 11px; }

    .live-activity-ticker { margin-top: 8px; padding: 5px 10px; font-size: 11px; width: 100%; justify-content: center; }

    /* Compact Mobile Demo Chat Widget */
    .chat-widget-card { height: 380px; border-radius: var(--radius-lg); }
    .widget-header { padding: 10px 14px; }
    .ai-avatar-ring { width: 34px; height: 34px; font-size: 16px; }
    .ai-info h3 { font-size: 14px; }
    .status-online { font-size: 10px; }
    .widget-launch-badge { font-size: 11px; padding: 4px 10px; }
    
    .chat-messages-box { padding: 10px; gap: 8px; }
    .msg-content { font-size: 12px; padding: 8px 12px; border-radius: 12px 12px 12px 4px; }
    .msg-user .msg-content { border-radius: 12px 12px 4px 12px; }
    .prompt-title { font-size: 10px; margin-bottom: 6px; }
    .prompt-chips { gap: 4px; }
    .chip { font-size: 11px; padding: 4px 9px; }
    
    .widget-input-bar { padding: 8px 10px; gap: 6px; }
    .widget-input-bar input { padding: 8px 12px; font-size: 13px; }
    .btn-send { min-width: 38px; height: 38px; font-size: 14px; }
    .widget-footer-note { padding: 6px 10px; font-size: 10px; }

    .sticky-flex { flex-direction: column; gap: 6px; text-align: center; }
    .btn-sticky-cta { width: 100%; justify-content: center; font-size: 12px; padding: 7px 16px; }
    
    .final-btn-group { flex-direction: column; width: 100%; }
    .btn-final-primary { width: 100%; justify-content: center; text-align: center; font-size: 15px; padding: 12px 20px; }
    
    .footer-content { grid-template-columns: 1fr; gap: 18px; }
    .footer-bottom-flex { flex-direction: column; text-align: center; justify-content: center; }
}

/* ==========================================================================
   Live Cosmic Planetary Transit Bar
   ========================================================================== */
.cosmic-transit-bar {
    background: #0f172a;
    color: #ffffff;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(240, 141, 82, 0.3);
}

.transit-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
}

.transit-live-tag {
    background: rgba(240, 141, 82, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: 800;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.transit-ticker-scroll {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #cbd5e1;
    font-size: 11px;
}

.active-chats-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Shimmer Button Effect */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(25deg);
    animation: shimmer 3.5s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    40%, 100% { left: 140%; }
}

/* AI Avatar Aura Ring */
.ai-avatar-ring {
    position: relative;
}

.pulse-aura {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: auraPulse 2s infinite ease-out;
}

@keyframes auraPulse {
    0% { transform: scale(0.95); opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* Glowing Border for Hero Card */
.glowing-border-card {
    position: relative;
    box-shadow: 0 12px 35px rgba(240, 141, 82, 0.22), 0 0 1px var(--primary);
    transition: box-shadow 0.3s ease;
}

.glowing-border-card:hover {
    box-shadow: 0 16px 45px rgba(240, 141, 82, 0.35), 0 0 3px var(--primary);
}

/* Live Social Proof Toast Notification */
.live-toast-notification {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 1002;
    background: #ffffff;
    border: 1px solid var(--border-highlight);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.live-toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.toast-content p {
    font-size: 12px;
    color: var(--vf-navy);
    line-height: 1.35;
    margin: 0;
}

.toast-time {
    font-size: 10px;
    color: var(--primary);
    font-weight: 600;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    margin-left: auto;
}

.toast-close:hover { color: var(--vf-navy); }

/* Trust Guarantee Bar */
.trust-guarantee-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 12px 0 16px;
    flex-wrap: wrap;
}

.trust-guarantee-bar span {
    font-size: 12px;
    font-weight: 600;
    color: var(--vf-navy-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 14px;
    border: 1px solid var(--border-highlight);
}

/* User Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: #faf9f6;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.review-header h4 {
    font-size: 15px;
    color: var(--vf-navy-dark);
    font-weight: 700;
}

.review-location {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.review-stars {
    margin-left: auto;
    color: var(--accent);
    font-size: 11px;
}

.review-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}
