/* ============================================
   ALEGA Subscription Page - Light Theme
   Brand: Cobalt blue (#2A38C9) on white
   ============================================ */

:root {
    /* Brand */
    --primary: #2A38C9;
    --primary-dark: #1E29A0;
    --primary-light: #5260E0;
    --primary-soft: rgba(42, 56, 201, 0.08);
    --primary-softer: rgba(42, 56, 201, 0.04);

    /* Accents */
    --accent: #2A38C9;
    --accent-warm: #F5A524;
    --success: #16a34a;
    --danger: #dc2626;

    /* Surfaces */
    --bg: #ffffff;
    --bg-alt: #f7f8fc;
    --bg-soft: #eef0f9;
    --bg-card: #ffffff;

    /* Borders */
    --border: rgba(13, 18, 32, 0.08);
    --border-strong: rgba(13, 18, 32, 0.14);
    --border-primary: rgba(42, 56, 201, 0.25);

    /* Text */
    --text: #0d1220;
    --text-muted: #5b6478;
    --text-soft: #8a93a6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2A38C9 0%, #1E29A0 100%);
    --gradient-soft: linear-gradient(135deg, rgba(42,56,201,0.10) 0%, rgba(82,96,224,0.04) 100%);
    --gradient-text: linear-gradient(135deg, #2A38C9 0%, #5260E0 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(13,18,32,0.05);
    --shadow-md: 0 8px 24px rgba(13,18,32,0.08);
    --shadow-lg: 0 18px 48px rgba(13,18,32,0.12);
    --shadow-primary: 0 12px 28px rgba(42,56,201,0.25);

    /* Sizes */
    --header-height: 76px;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Particles -> soft decorative gradients */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 15% -10%, rgba(42,56,201,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 110% 20%, rgba(82,96,224,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 110%, rgba(42,56,201,0.06) 0%, transparent 60%);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}
.header .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-weight: 700; }
.logo img { height: 36px; width: auto; }
.logo-text { display: flex; align-items: center; gap: 8px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}
.nav a:hover { color: var(--primary); }

.mobile-menu-btn {
    display: none;
    background: none; border: none;
    color: var(--text); font-size: 1.4rem; cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: none; outline: none;
    line-height: 1;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(42,56,201,0.32); }

.btn-outline {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--border-strong); }

.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #128C7E; }

.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: calc(var(--header-height) + 60px) 0 80px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { max-width: 620px; }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--primary-soft);
    border: 1px solid var(--border-primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-value {
    font-size: 1.6rem; font-weight: 800;
    color: var(--primary);
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; perspective: 1200px; }
.hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 460px;
    transform: rotateY(-4deg) rotateX(4deg);
    transition: transform var(--transition-slow);
}
.hero-card:hover { transform: rotateY(0) rotateX(0); }

.card-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 11px; height: 11px; border-radius: 50%; background: #cbd0db; }
.dots span:first-child { background: #ef4444; }
.dots span:nth-child(2) { background: #f59e0b; }
.dots span:last-child { background: #22c55e; }
.card-title { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.card-content { padding: 22px; }
.dashboard-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.metric {
    display: flex; align-items: center; gap: 12px;
    padding: 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.metric i {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1.05rem;
}
.metric-value { display: block; font-weight: 800; font-size: 1.15rem; color: var(--text); }
.metric-label { display: block; font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ============================================
   PROBLEM / PAIN SECTION
   ============================================ */
.problem-section {
    padding: 80px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.problem-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-card .pain {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--danger);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.problem-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
.problem-card .solution {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--border-strong);
    color: var(--text);
    font-size: 0.95rem;
}
.problem-card .solution strong { color: var(--primary); }

/* ============================================
   FEATURES (use cases)
   ============================================ */
.features { padding: 90px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-primary);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.35rem;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(42,56,201,0.25);
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.feature-card > p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 14px; }
.feature-example {
    background: var(--primary-softer);
    border-left: 3px solid var(--primary);
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--text);
}
.feature-example strong { color: var(--primary); }

/* ============================================
   USE CASES (storytelling)
   ============================================ */
.usecases { padding: 90px 0; background: var(--bg-alt); }
.usecase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}
.usecase-row:last-child { margin-bottom: 0; }
.usecase-row.reverse { direction: rtl; }
.usecase-row.reverse > * { direction: ltr; }
.usecase-text .tag {
    display: inline-block;
    padding: 4px 12px;
    background: #fff;
    border: 1px solid var(--border-primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.usecase-text h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.usecase-text p { color: var(--text-muted); margin-bottom: 14px; }
.usecase-text ul { list-style: none; padding: 0; }
.usecase-text ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}
.usecase-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}
.usecase-visual {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}
.usecase-visual .scene-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 0.92rem;
}
.usecase-visual .scene-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: var(--bg-alt);
    border-radius: 10px;
    font-size: 0.9rem;
}
.usecase-visual .scene-row i { color: var(--primary); width: 18px; text-align: center; }
.usecase-visual .scene-row .pill {
    margin-left: auto;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 700;
}
.usecase-visual .pill.ok { background: #dcfce7; color: #166534; }
.usecase-visual .pill.warn { background: #fef3c7; color: #92400e; }
.usecase-visual .pill.info { background: var(--primary-soft); color: var(--primary); }

/* ============================================
   VIDEO
   ============================================ */
.video-section { padding: 80px 0; }
.video-wrapper { max-width: 960px; margin: 0 auto; }
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    border: 1px solid var(--border);
}
.video-container iframe,
.video-container video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ============================================
   PRICING
   ============================================ */
.pricing { padding: 90px 0; }
.pricing-toggle {
    display: flex; justify-content: center; align-items: center;
    gap: 16px; margin-bottom: 40px;
}
.toggle-label {
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-fast);
}
.toggle-label.active { color: var(--text); font-weight: 700; }
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 54px; height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; cursor: pointer;
    inset: 0;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 28px;
    transition: var(--transition);
}
.toggle-slider::before {
    content: "";
    position: absolute;
    height: 22px; width: 22px;
    left: 2px; top: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); border-color: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(26px); }
.discount-badge {
    margin-left: 6px;
    padding: 2px 8px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.plan-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-card.featured {
    border-color: var(--primary);
    box-shadow: 0 16px 36px rgba(42,56,201,0.18);
}
.plan-card.featured::before {
    content: "MÁS POPULAR";
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.plan-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.plan-tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.plan-price {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 18px;
}
.plan-price .currency { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.plan-price .amount { font-size: 2.4rem; font-weight: 800; color: var(--text); }
.plan-price .period { color: var(--text-muted); font-size: 0.95rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.plan-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
    content: "✓";
    position: absolute; left: 0;
    color: var(--primary); font-weight: 800;
}

.loading-plans {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}
.loading-plans .spinner { margin: 0 auto 16px; }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 90px 0; background: var(--bg-alt); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--border-primary); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--text);
    font: inherit;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
}
.faq-question i { color: var(--primary); transition: transform var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 22px 22px; color: var(--text-muted); }

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 90px 0;
    background: var(--gradient-primary);
    color: #fff;
    text-align: center;
}
.cta-content h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 14px; letter-spacing: -0.02em; }
.cta-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.cta .btn-primary:hover { background: #f0f3ff; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0d1220;
    color: #c9cfdb;
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p { margin-top: 14px; color: #9aa3b6; font-size: 0.95rem; max-width: 320px; }
.footer-brand .logo img { filter: brightness(0) invert(1); }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #c9cfdb;
    text-decoration: none;
    transition: all var(--transition);
}
.social-links a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-links h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #9aa3b6; text-decoration: none; font-size: 0.92rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed; inset: 0;
    display: none;
    align-items: center; justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.modal.active { display: flex; }
.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(13,18,32,0.55);
    backdrop-filter: blur(4px);
}
.modal-content, .modal-container {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.demo-modal-container { max-width: 640px; }

.modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-muted);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.modal-close:hover { background: var(--bg-soft); color: var(--text); }

.modal-header { text-align: center; margin-bottom: 22px; }
.modal-header h2 { font-size: 1.5rem; margin-bottom: 6px; }
.modal-header p { color: var(--text-muted); }

.step-indicator {
    display: flex; justify-content: center; align-items: center;
    gap: 10px; margin-bottom: 18px;
}
.step-indicator .step {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}
.step-indicator .step.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.step-indicator .step.completed { background: var(--success); color: #fff; border-color: var(--success); }

.checkout-form .form-row, .demo-form .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px;
}
.form-group { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font: inherit;
    color: var(--text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}
.checkbox-group { flex-direction: row; align-items: center; gap: 10px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); cursor: pointer; }

.selected-plan-preview, .order-summary {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 0.92rem;
}
.selected-plan-preview strong, .order-summary strong { color: var(--primary); }

.payment-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.payment-method {
    display: flex; align-items: center; gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
    font: inherit;
}
.payment-method:hover { border-color: var(--border-primary); background: var(--primary-softer); }
.payment-method.selected { border-color: var(--primary); background: var(--primary-soft); }
.payment-method img { height: 24px; width: auto; }
.payment-method i { width: 30px; font-size: 1.4rem; color: var(--primary); }
.payment-method span { font-weight: 600; color: var(--text); }
.payment-method small { display: block; color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; }

.bank-transfer-info {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 16px;
}
.bank-transfer-info h4 { color: var(--primary); margin-bottom: 12px; font-size: 1rem; }
.bank-details p { margin-bottom: 6px; font-size: 0.92rem; }
.bank-note {
    margin-top: 12px;
    padding: 10px 12px;
    background: #fef9c3;
    border: 1px solid #fde68a;
    border-radius: 8px;
    color: #713f12;
    font-size: 0.85rem;
}

.payment-container { margin-bottom: 16px; }
.hidden { display: none !important; }
.mt-3 { margin-top: 14px; }

/* Confirmation */
.confirmation-content { text-align: center; }
.success-animation { margin: 10px 0 18px; }
.checkmark {
    width: 70px; height: 70px;
    margin: 0 auto;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-primary);
    animation: pop 0.5s ease;
}
@keyframes pop {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.confirmation-message { color: var(--text-muted); margin-bottom: 18px; }
.next-steps {
    text-align: left;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 16px;
}
.next-steps h4 { font-size: 0.95rem; margin-bottom: 10px; }
.next-steps ul { list-style: none; padding: 0; }
.next-steps li { padding: 6px 0; color: var(--text); display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.next-steps li i { color: var(--primary); width: 20px; }
.support-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.support-note a { color: var(--primary); }

.demo-icon {
    width: 64px; height: 64px;
    margin: 0 auto 14px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-primary);
}

.next-contact {
    margin: 18px 0;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    text-align: center;
}
.next-contact p { margin-bottom: 10px; }

/* Mobile menu */
.mobile-menu {
    position: fixed; inset: 0;
    background: #fff;
    z-index: 1500;
    transform: translateX(100%);
    transition: transform var(--transition);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-content {
    padding: 28px;
    height: 100%;
    display: flex; flex-direction: column;
}
.mobile-menu-close {
    align-self: flex-end;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    width: 40px; height: 40px; border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    margin-bottom: 30px;
}
.mobile-menu nav {
    display: flex; flex-direction: column; gap: 18px;
}
.mobile-menu nav a {
    padding: 14px 0;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { margin-top: 40px; }
    .usecase-row { grid-template-columns: 1fr; gap: 24px; }
    .usecase-row.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .checkout-form .form-row, .demo-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
}
