/*
Theme Name: Smart AI Chatbot Demo
Theme URI: https://hashtagweb.com.np
Author: Hashtag Web Solutions
Author URI: https://hashtagweb.com.np
Description: A premium demo landing page theme to showcase the Smart AI Chatbot plugin by Hashtag Web Solutions Pvt. Ltd.
Version: 1.1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ai-chatbot-demo
Tags: one-page, landing-page, ai, chatbot, modern
*/

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

:root {
    /* Brand Colors — Hashtag Web Solutions */
    --primary: #A31621;
    --primary-light: #C41E3A;
    --primary-dark: #7A1018;
    --primary-glow: rgba(163, 22, 33, 0.25);

    /* Accent */
    --accent: #E8453C;
    --accent-light: #FF6B6B;
    --accent-glow: rgba(232, 69, 60, 0.3);

    /* Neutrals */
    --bg-dark: #0A0A0F;
    --bg-card: #111118;
    --bg-surface: #16161F;
    --bg-elevated: #1C1C28;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(163, 22, 33, 0.4);

    /* Text */
    --text-primary: #F0F0F5;
    --text-secondary: #9999B3;
    --text-muted: #666680;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #A31621 0%, #E8453C 100%);
    --grad-dark: linear-gradient(135deg, #0A0A0F 0%, #16161F 100%);
    --grad-card: linear-gradient(135deg, rgba(163,22,33,0.1) 0%, rgba(232,69,60,0.05) 100%);
    --grad-glow: radial-gradient(circle at 50% 0%, rgba(163,22,33,0.3) 0%, transparent 60%);

    /* Spacing */
    --max-width: 1200px;
    --section-padding: 100px 0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(163,22,33,0.2), rgba(232,69,60,0.15));
    border: 1px solid rgba(163,22,33,0.4);
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad-primary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 8px 30px var(--primary-glow);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(163,22,33,0.45);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid var(--border-hover);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(163,22,33,0.1);
    border-color: var(--primary-light);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--primary);
    padding: 8px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.9);
    z-index: 1001;
    position: relative;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color var(--transition);
}

.top-bar a:hover {
    color: #fff;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    top: 0;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

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

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--accent);
}

.logo-text .sub {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -2px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.navbar-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: width var(--transition);
}

.navbar-nav a:hover {
    color: var(--text-primary);
}

.navbar-nav a:hover::after {
    width: 100%;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-glow), var(--bg-dark);
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(163,22,33,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163,22,33,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-orb-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163,22,33,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232,69,60,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(163,22,33,0.15), rgba(232,69,60,0.1));
    border: 1px solid rgba(163,22,33,0.35);
    border-radius: 50px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,69,60,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(232,69,60,0); }
}

.hero-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 560px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-stat .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ============================================================
   CHAT PREVIEW / HERO VISUAL
   ============================================================ */
.hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.chat-preview-card {
    background: rgba(22, 22, 31, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.5), 0 0 60px rgba(163,22,33,0.1);
    max-width: 400px;
    width: 100%;
}

.chat-preview-header {
    background: var(--grad-primary);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-preview-header .avatar {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chat-preview-header .info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.chat-preview-header .info span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-left: auto;
    animation: pulse 2s infinite;
}

.chat-preview-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 260px;
}

.chat-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: fadeInUp 0.5s ease both;
}

.chat-msg.user {
    flex-direction: row-reverse;
}

.chat-msg .msg-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.chat-msg.user .msg-avatar {
    background: var(--primary);
}

.chat-msg .bubble {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px 16px 16px 4px;
    padding: 10px 14px;
    max-width: 220px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.chat-msg.user .bubble {
    background: var(--grad-primary);
    border: none;
    border-radius: 16px 16px 4px 16px;
    color: #fff;
}

.chat-typing {
    display: flex;
    gap: 10px;
    align-items: center;
}

.typing-dots {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 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 {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.chat-preview-input {
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-preview-input .fake-input {
    flex: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.chat-preview-input .send-btn {
    width: 36px;
    height: 36px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-section {
    padding: var(--section-padding);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.step-card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-card);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(163,22,33,0.15);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(163,22,33,0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(163,22,33,0.2), rgba(232,69,60,0.1));
    border: 1px solid rgba(163,22,33,0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(163,22,33,0.04), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(163,22,33,0.12);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(163,22,33,0.25), rgba(232,69,60,0.1));
    border: 1px solid rgba(163,22,33,0.35);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(163,22,33,0.4), rgba(232,69,60,0.2));
    box-shadow: 0 8px 24px rgba(163,22,33,0.25);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature-tag {
    display: inline-block;
    background: rgba(232,69,60,0.1);
    border: 1px solid rgba(232,69,60,0.25);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 14px;
}

/* ============================================================
   AI PROVIDERS SECTION
   ============================================================ */
.providers-section {
    padding: 80px 0;
    text-align: center;
}

.providers-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.providers-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.provider-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.provider-logo:hover {
    border-color: var(--border-hover);
    background: var(--bg-elevated);
    transform: translateY(-3px);
}

.provider-logo .provider-icon {
    font-size: 1.4rem;
}

.provider-logo .provider-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: var(--section-padding);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.faq-question span {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
    font-size: 1rem;
    color: var(--text-muted);
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.open .faq-answer {
    padding: 0 24px 20px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: var(--section-padding);
}

.cta-card {
    background: linear-gradient(135deg, rgba(163,22,33,0.15) 0%, rgba(232,69,60,0.08) 100%);
    border: 1px solid rgba(163,22,33,0.3);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--grad-primary);
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-card p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.footer-brand .logo-text {
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.88rem;
    color: var(--text-muted);
}

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

/* Scroll-triggered animations with robust fallback */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: if JS doesn't load or observer fails, show content after 2s */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* No-JS fallback — show all content immediately */
html.no-js .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root { --section-padding: 70px 0; }

    .top-bar { display: none; }

    .site-header {
        top: 0;
        padding: 14px 0;
    }

    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-description { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; gap: 32px; }
    .hero-visual { display: none; }

    .navbar-nav, .navbar-cta { display: none; }
    .nav-toggle { display: flex; }

    .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }

    .cta-card { padding: 50px 24px; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .providers-logos { gap: 16px; }
    .provider-logo { padding: 10px 16px; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-block-image img,
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
}
