/* -------------------------------------------------------------
 * DESIGN SYSTEM & ROOT VARIABLES
 * ------------------------------------------------------------- */
:root {
    --bg-dark: #090a10;
    --bg-card: rgba(18, 20, 32, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Harmonic Palette */
    --primary: #5865f2;       /* Blurple/Indigo */
    --primary-glow: rgba(88, 101, 242, 0.15);
    --secondary: #a855f7;     /* Violet */
    --secondary-glow: rgba(168, 85, 247, 0.15);
    --info: #06b6d4;          /* Cyan */
    --success: #10b981;       /* Emerald Green */
    --warning: #f59e0b;       /* Amber */
    --danger: #ef4444;        /* Rose Red */
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* -------------------------------------------------------------
 * BASE STYLES & RESET
 * ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------------------
 * STUNNING GLOWING BACKGROUND
 * ------------------------------------------------------------- */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

.bg-glow-1 {
    top: -100px;
    right: -100px;
}

.bg-glow-2 {
    top: 50%;
    left: -200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, rgba(6, 182, 212, 0.04) 50%, transparent 100%);
}

/* -------------------------------------------------------------
 * PREMIUM GLASSMORPHIC CARD
 * ------------------------------------------------------------- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.05);
}

/* -------------------------------------------------------------
 * TYPOGRAPHY & GRADIENTS
 * ------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* -------------------------------------------------------------
 * BUTTONS & INTERACTIVES
 * ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
}

/* -------------------------------------------------------------
 * NAVBAR
 * ------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: rgba(9, 10, 16, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
    color: var(--primary);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #fff;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* -------------------------------------------------------------
 * HERO SECTION
 * ------------------------------------------------------------- */
.hero-section {
    padding: 160px 0 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    color: var(--warning);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-metrics {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

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

/* Hero Visual Graphic (Glass mock browser) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 100%;
    max-width: 460px;
    min-height: 380px;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 22, 37, 0.9) 0%, rgba(9, 10, 16, 0.95) 100%);
    /* Use our generated abstract image as a background texture */
    background-image: linear-gradient(to bottom, rgba(9, 10, 16, 0.8) 0%, rgba(9, 10, 16, 0.95) 100%), url('assets/hero_background.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.card-header-visual {
    display: flex;
    gap: 6px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mock-ui-preview {
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 280px;
}

.mock-notification {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
    width: 100%;
    backdrop-filter: blur(8px);
    animation: bounce 6s ease-in-out infinite;
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.telegram-blue {
    color: #229ED9;
    font-size: 16px;
}

.notif-header .time {
    margin-left: auto;
    color: var(--text-muted);
}

.notif-body p {
    font-size: 14px;
    margin: 6px 0 12px;
    color: var(--text-primary);
}

.notif-badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c084fc;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* -------------------------------------------------------------
 * FEATURES SECTION
 * ------------------------------------------------------------- */
.features-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 20px;
}

.feature-card h3 {
    font-size: 20px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* -------------------------------------------------------------
 * INTERACTIVE DEMO SIMULATOR
 * ------------------------------------------------------------- */
.demo-section {
    padding: 80px 0;
}

.demo-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.demo-steps-control {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.demo-step.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.demo-step.active .step-num {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.step-desc h4 {
    font-size: 18px;
    margin-bottom: 4px;
    transition: var(--transition-smooth);
}

.demo-step.active .step-desc h4 {
    color: #fff;
}

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

.demo-step.active .step-desc p {
    color: var(--text-secondary);
}

/* Simulator Box styling */
.demo-simulator {
    padding: 0;
    overflow: hidden;
    background: #0f101a;
}

.simulator-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
}

.sim-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.sim-title {
    margin-left: 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.simulator-content {
    min-height: 480px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sim-pane {
    width: 100%;
    display: none;
}

.sim-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out forwards;
}

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

/* Step 1: Google review card component */
.google-review-card {
    background: #fff;
    color: #1f2937;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
}

.reviewer-info .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #5865f2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
}

.google-logo-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #4285F4;
    font-size: 20px;
}

.google-review-card .review-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Step 2: Telegram mock */
.telegram-mock-phone {
    width: 100%;
    max-width: 380px;
    height: 400px;
    background: #182533;
    border-radius: 20px;
    border: 3px solid #24303f;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
}

.telegram-header {
    background: #202b36;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.tg-bot-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bot-avatar {
    font-size: 18px;
    color: #2b7bb9;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-bot-info h4 {
    font-size: 14px;
    color: #fff;
}

.tg-bot-info span {
    font-size: 10px;
    color: #708499;
}

.telegram-chat-area {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    background-image: radial-gradient(#1e2c3a 20%, transparent 20%), radial-gradient(#1e2c3a 20%, transparent 20%);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
}

.tg-msg {
    max-width: 90%;
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.4;
}

.tg-msg.incoming {
    background: #182533;
    border: 1px solid #2b394a;
    color: #fff;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.tg-buttons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 10px;
}

.tg-btn-action {
    background: #2b5278;
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
    font-size: 11px;
}

.tg-btn-action:hover {
    background: #366696;
}

.tg-edit-box {
    background: #202b36;
    padding: 10px;
    border-radius: 8px;
    margin-top: 8px;
}

.tg-input-area {
    width: 100%;
    height: 70px;
    background: #182533;
    border: 1px solid #2b394a;
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    font-size: 11px;
    padding: 6px;
    resize: none;
    margin-bottom: 6px;
}

/* Step 3: Success Screen */
.success-screen {
    text-align: center;
    padding: 20px 0;
}

.success-circle {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 16px;
    animation: scalePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scalePop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.google-published-card {
    background: #fff;
    color: #1f2937;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    margin: 24px auto;
    max-width: 440px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.google-published-card .g-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 8px;
}

.google-published-card .g-header .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #5865f2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.google-published-card .g-review-body {
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 12px;
}

.google-reply-box {
    background: #f9fafb;
    border-left: 3px solid #4285F4;
    padding: 10px 12px;
    border-radius: 4px;
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    margin-bottom: 4px;
    color: #374151;
}

.reply-header i {
    font-size: 13px;
}

.reply-date {
    margin-left: auto;
    color: #9ca3af;
}

.reply-text-content {
    font-size: 12px;
    color: #1f2937;
    line-height: 1.4;
}

/* -------------------------------------------------------------
 * PRICING SECTION
 * ------------------------------------------------------------- */
.pricing-section {
    padding: 80px 0;
    position: relative;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    position: relative;
}

.pricing-card.premium {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.15);
}

.pricing-card.premium:hover {
    border-color: rgba(168, 85, 247, 0.6);
}

.card-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.card-badge.bg-gradient {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.price .currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.price .amount {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.price .period {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: 6px;
}

.price-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    width: 100%;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.pricing-features li i {
    font-size: 14px;
}

.pricing-features li .text-muted {
    color: var(--text-muted);
}

/* -------------------------------------------------------------
 * ONBOARDING FORM SECTION
 * ------------------------------------------------------------- */
.onboarding-section {
    padding: 80px 0 120px;
}

.onboarding-card {
    max-width: 800px;
    margin: 0 auto;
}

.onboarding-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.onboarding-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.onboarding-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.onboarding-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.15);
}

.success-alert {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    color: var(--success);
    margin-top: 24px;
}

.success-alert i {
    font-size: 24px;
}

.success-alert h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.success-alert p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* -------------------------------------------------------------
 * FOOTER
 * ------------------------------------------------------------- */
.footer-section {
    background: #05060b;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-left {
    max-width: 320px;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.footer-right {
    display: flex;
    gap: 64px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 4px;
}

.footer-links-group a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links-group a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
 * MODAL DIALOGS (PRIVACY & TERMS)
 * ------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card-content {
    width: 90%;
    max-width: 680px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 36px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    background: #0f101a;
}

.modal-overlay.active .modal-card-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    font-size: 13px;
    color: var(--text-secondary);
}

.modal-body p {
    margin-bottom: 14px;
}

.modal-body h3 {
    color: #fff;
    font-size: 16px;
    margin: 20px 0 10px;
}

.modal-body ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 6px;
}

/* -------------------------------------------------------------
 * MOBILE RESPONSIVENESS
 * ------------------------------------------------------------- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .demo-steps-control {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
    }
    
    .demo-step {
        flex: 1;
        min-width: 250px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Can toggle in JS */
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-right {
        gap: 32px;
        justify-content: space-between;
    }
}
