:root {
    --primary: #05050f;
    --secondary: #0d0d1a;
    --tertiary: #1a1a2e;
    --accent: #7c5cfc;
    --accent-light: #9b7fff;
    --accent-dark: #5a3fd4;
    --accent-2: #b966e8;
    --text: #f0f0f8;
    --text-muted: #7a7a9a;
    --text-subtle: #4a4a6a;
    --card-bg: #11111f;
    --card-border: rgba(124, 92, 252, 0.1);
    --gradient: linear-gradient(135deg, #7c5cfc 0%, #b966e8 50%, #e879f9 100%);
    --gradient-2: linear-gradient(180deg, #05050f 0%, #0d0d1a 50%, #1a1a2e 100%);
    --gradient-3: linear-gradient(135deg, rgba(124,92,252,0.15), rgba(185,102,232,0.15));
    --glow: 0 0 40px rgba(124, 92, 252, 0.3);
    --glow-strong: 0 0 80px rgba(124, 92, 252, 0.5);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.9); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes blink { 0%,50% { border-color: transparent; } 51%,100% { border-color: var(--accent-light); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,80%,100% { transform: scale(0.8); opacity: 0.5; } 40% { transform: scale(1); opacity: 1; } }
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: ""; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(124,92,252,0.08), transparent), radial-gradient(ellipse 60% 40% at 80% 100%, rgba(185,102,232,0.06), transparent);
    pointer-events: none; z-index: -1;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 4px; }
.navbar {
    background: rgba(5, 5, 15, 0.95) !important;
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--card-border);
    padding: 16px 0; transition: all 0.3s;
}
.navbar.scrolled { padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: var(--gradient); border-radius: 12px;
    font-size: 16px; font-weight: 800; color: white;
}
.brand-text { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; background: linear-gradient(90deg, #fff, var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-link { color: var(--text-muted) !important; font-size: 14px; font-weight: 500; padding: 10px 18px !important; border-radius: 10px; transition: all 0.2s; position: relative; }
.nav-link::after { content: ""; position: absolute; bottom: 4px; left: 50%; width: 0; height: 2px; background: var(--gradient); border-radius: 2px; transition: all 0.3s; transform: translateX(-50%); }
.nav-link:hover, .nav-link.active { color: white !important; background: rgba(124, 92, 252, 0.1); }
.nav-link:hover::after, .nav-link.active::after { width: 80%; }
.btn-accent {
    background: var(--gradient); border: none; color: white; font-weight: 600; font-size: 14px;
    padding: 12px 28px; border-radius: 12px; transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-accent::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.btn-accent:hover { transform: translateY(-3px); box-shadow: var(--glow-strong); color: white; }
.btn-accent:hover::before { left: 100%; }
.btn-accent:active { transform: translateY(0); }
.btn-outline-accent {
    background: transparent; border: 1px solid var(--accent); color: var(--accent-light);
    font-weight: 600; font-size: 14px; padding: 12px 28px; border-radius: 12px; transition: all 0.3s;
}
.btn-outline-accent:hover { background: var(--gradient); color: white; border-color: transparent; transform: translateY(-3px); box-shadow: var(--glow); }
.hero {
    padding: 140px 0 100px;
    background: var(--gradient-2);
    position: relative; overflow: hidden; isolation: isolate;
}
.hero::before {
    content: ""; position: absolute; top: -50%; right: -20%; z-index: -1;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.12), transparent 70%);
}
.hero::after {
    content: ""; position: absolute; bottom: -30%; left: -15%; z-index: -1;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(185, 102, 232, 0.08), transparent 70%);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient-3); color: var(--accent-light);
    padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    border: 1px solid rgba(124, 92, 252, 0.2); margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}
.hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.05; margin-bottom: 24px; letter-spacing: -1.5px; animation: fadeInUp 0.8s ease-out 0.1s both; }
.hero .gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: clamp(16px, 2vw, 20px); color: var(--text-muted); max-width: 600px; line-height: 1.7; margin-bottom: 36px; animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-actions .btn { padding: 16px 36px; font-size: 16px; border-radius: 14px; }
.trust-indicators { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); animation: fadeInUp 0.8s ease-out 0.4s both; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 40px; height: 40px; background: rgba(124,92,252,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 16px; }
.trust-text { display: flex; flex-direction: column; }
.trust-value { font-size: 20px; font-weight: 800; line-height: 1; }
.trust-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-visual { position: relative; animation: fadeInUp 1s ease-out 0.2s both; }
.hero-visual .visual-container {
    position: relative; width: 100%; max-width: 480px; margin: 0 auto;
    aspect-ratio: 1; border-radius: 24px;
    background: linear-gradient(145deg, rgba(20,20,35,0.9), rgba(10,10,20,0.95));
    border: 1px solid var(--card-border);
    overflow: hidden; backdrop-filter: blur(20px);
    box-shadow: var(--glow), 0 40px 80px rgba(0,0,0,0.5);
}
.hero-visual .orb {
}
.hero-visual .ai-interface {
    position: absolute; inset: 24px; display: flex; flex-direction: column; gap: 16px;
    padding: 24px; overflow-y: auto;
}
.hero-visual .msg { display: flex; gap: 12px; animation: slideIn 0.5s ease-out both; opacity: 0; }
.hero-visual .msg:nth-child(1) { animation-delay: 0.5s; }
.hero-visual .msg:nth-child(2) { animation-delay: 1.2s; }
.hero-visual .msg:nth-child(3) { animation-delay: 1.9s; }
.hero-visual .msg:nth-child(4) { animation-delay: 2.6s; }
.hero-visual .msg:nth-child(5) { animation-delay: 3.3s; }
.hero-visual .msg:nth-child(6) { animation-delay: 4s; }
.hero-visual .avatar { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.hero-visual .avatar.ai { background: var(--gradient); color: white; }
.hero-visual .avatar.user { background: rgba(255,255,255,0.1); color: var(--text-muted); }
.hero-visual .bubble { max-width: 75%; padding: 12px 16px; border-radius: 14px; font-size: 13px; line-height: 1.5; }
.hero-visual .bubble.ai { background: rgba(124,92,252,0.15); border: 1px solid rgba(124,92,252,0.2); color: var(--text); }
.hero-visual .bubble.user { background: var(--gradient); color: white; margin-left: auto; }
.hero-visual .typing-indicator { display: flex; gap: 4px; padding: 8px 12px; }
.hero-visual .typing-dot { width: 8px; height: 8px; background: var(--accent-light); border-radius: 50%; animation: bounce 1.4s infinite ease-in-out; }
.hero-visual .typing-dot:nth-child(2) { animation-delay: 0.2s; }
.hero-visual .typing-dot:nth-child(3) { animation-delay: 0.4s; }
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--secondary); }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--card-border), transparent); margin: 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-light); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; padding: 6px 16px; background: var(--gradient-3); border-radius: 50px; border: 1px solid rgba(124,92,252,0.15); }
.section-title { font-size: clamp(28px, 4.5vw, 42px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -1px; }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 680px; margin: 0 auto; line-height: 1.7; }
.feature-card-v2 {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 36px; height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
}
.feature-card-v2::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); opacity: 0; transition: opacity 0.3s; }
.feature-card-v2:hover { transform: translateY(-8px); border-color: rgba(124,92,252,0.3); box-shadow: var(--glow), 0 30px 60px rgba(0,0,0,0.4); }
.feature-card-v2:hover::before { opacity: 1; }
.feature-icon-v2 {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: var(--gradient-3); border-radius: 14px; margin-bottom: 22px;
    font-size: 26px; color: var(--accent-light); transition: all 0.3s;
}
.feature-card-v2:hover .feature-icon-v2 { transform: scale(1.1) rotate(3deg); }
.feature-card-v2 h5 { font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.feature-card-v2 p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.feature-tag { display: inline-flex; gap: 6px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.feature-tag span { font-size: 11px; padding: 4px 10px; background: rgba(255,255,255,0.05); border-radius: 6px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.5px; }
.stats-bar { padding: 60px 0; background: linear-gradient(180deg, transparent, rgba(124,92,252,0.03)); margin-top: 40px; }
.stat-item { text-align: center; padding: 0 20px; }
.stat-number { font-size: clamp(32px, 5vw, 48px); font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.demo-section { background: var(--secondary); }
.demo-frame {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 16px; overflow: hidden; box-shadow: var(--glow);
}
.demo-header { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--card-border); }
.demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 12px; height: 12px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #ffbd2e; }
.demo-dots span:nth-child(3) { background: #28ca42; }
.demo-title { flex: 1; text-align: center; font-size: 13px; color: var(--text-muted); font-family: monospace; }
.demo-content { padding: 32px; max-height: 500px; overflow-y: auto; }
.demo-chat { display: flex; flex-direction: column; gap: 16px; }
.demo-msg { display: flex; gap: 12px; max-width: 85%; animation: fadeInUp 0.4s ease-out both; }
.demo-msg.incoming { align-self: flex-start; }
.demo-msg.outgoing { align-self: flex-end; flex-direction: row-reverse; }
.demo-avatar { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.demo-avatar.ai { background: var(--gradient); color: white; }
.demo-avatar.user { background: rgba(255,255,255,0.1); color: var(--text-muted); }
.demo-bubble { padding: 14px 18px; border-radius: 16px; font-size: 14px; line-height: 1.6; position: relative; }
.demo-bubble.ai { background: rgba(124,92,252,0.12); border: 1px solid rgba(124,92,252,0.15); color: var(--text); border-bottom-left-radius: 4px; }
.demo-bubble.user { background: var(--gradient); color: white; border-bottom-right-radius: 4px; }
.demo-time { font-size: 10px; color: var(--text-subtle); margin-top: 6px; text-align: right; }
.demo-msg.incoming .demo-time { text-align: left; }
.demo-input { display: flex; gap: 12px; padding: 20px; background: rgba(255,255,255,0.02); border-top: 1px solid var(--card-border); }
.demo-input input { flex: 1; background: var(--primary); border: 1px solid var(--card-border); color: var(--text); padding: 12px 18px; border-radius: 12px; font-size: 14px; }
.demo-input input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,92,252,0.15); }
.demo-input button { background: var(--gradient); border: none; color: white; padding: 12px 24px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.demo-input button:hover { transform: scale(1.02); box-shadow: var(--glow); }
.pricing-card-v2 {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 24px; padding: 44px; height: 100%;
    transition: all 0.4s; position: relative; display: flex; flex-direction: column;
}
.pricing-card-v2:hover { transform: translateY(-6px); border-color: rgba(124,92,252,0.3); box-shadow: var(--glow); }
.pricing-card-v2.featured { border-color: var(--accent); background: linear-gradient(145deg, #11111f, #1a1535); box-shadow: var(--glow); }
.pricing-card-v2.featured::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); border-radius: 24px 24px 0 0; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: white; padding: 6px 22px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 1px; box-shadow: var(--glow); }
.pricing-header { text-align: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--card-border); }
.pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.pricing-price { font-size: 52px; font-weight: 800; line-height: 1; color: var(--text); }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; font-size: 14px; line-height: 1.5; }
.pricing-features li i { color: var(--accent-light); margin-top: 2px; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--text-subtle); }
.pricing-features li.disabled i { color: var(--text-subtle); }
.pricing-btn { width: 100%; padding: 16px; border-radius: 14px; font-weight: 700; font-size: 15px; transition: all 0.3s; }
.pricing-btn.outline { background: transparent; border: 1px solid var(--card-border); color: var(--text); }
.pricing-btn.outline:hover { border-color: var(--accent); color: var(--accent-light); background: rgba(124,92,252,0.05); }
.testimonial-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 32px; height: 100%;
    transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(124,92,252,0.2); }
.testimonial-stars { color: #eab308; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 12px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: white; }
.testimonial-info h6 { margin: 0; font-size: 14px; font-weight: 600; }
.testimonial-info p { margin: 0; font-size: 12px; color: var(--text-muted); }
.cta-section { background: var(--gradient-2); position: relative; overflow: hidden; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(28px, 4.5vw, 42px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.cta-subtitle { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }
.cta-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.cta-form input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; padding: 16px 20px; border-radius: 12px; font-size: 15px; }
.cta-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,92,252,0.2); }
.cta-form button { background: var(--gradient); border: none; color: white; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 15px; white-space: nowrap; transition: all 0.3s; }
.cta-form button:hover { transform: scale(1.02); box-shadow: var(--glow); }
.footer { background: var(--secondary); border-top: 1px solid var(--card-border); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .brand-icon { width: 40px; height: 40px; font-size: 14px; }
.footer p { color: var(--text-muted); font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border: 1px solid var(--card-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; }
.footer-social a:hover { background: var(--gradient); border-color: transparent; color: white; transform: translateY(-2px); }
.footer h6 { font-weight: 700; margin-bottom: 20px; font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; }
.footer a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer a:hover { color: var(--accent-light); }
.footer-bottom { padding-top: 40px; border-top: 1px solid var(--card-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--text-subtle); font-size: 13px; margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-subtle); font-size: 13px; }
.contact-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 40px; height: 100%;
}
.form-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-control { background: rgba(255,255,255,0.04); border: 1px solid var(--card-border); color: var(--text); border-radius: 12px; padding: 14px 18px; font-size: 14px; transition: all 0.2s; }
.form-control:focus { background: rgba(255,255,255,0.08); border-color: var(--accent); color: var(--text); box-shadow: 0 0 0 3px rgba(124,92,252,0.15); }
.form-control::placeholder { color: var(--text-subtle); }
textarea.form-control { min-height: 140px; resize: vertical; }
.auth-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px; padding: 48px; max-width: 420px; margin: 0 auto; }
.auth-header { text-align: center; margin-bottom: 36px; }
.auth-header h4 { font-weight: 800; margin-bottom: 8px; }
.auth-header p { color: var(--text-muted); font-size: 14px; }
.admin-sidebar .list-group-item { background: transparent; border: none; color: var(--text-muted); border-radius: 10px; margin-bottom: 4px; padding: 12px 16px; transition: all 0.2s; }
.admin-sidebar .list-group-item:hover { background: rgba(124,92,252,0.1); color: var(--accent-light); }
.admin-sidebar .list-group-item.active { background: rgba(124,92,252,0.15); color: var(--accent-light); }
.admin-stat-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 24px; height: 100%; transition: all 0.3s; }
.admin-stat-card:hover { border-color: rgba(124,92,252,0.2); }
.admin-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
@media (max-width: 991.98px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { display: none; }
}
@media (max-width: 767.98px) {
    .hero { padding: 100px 0 60px; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .trust-indicators { justify-content: center; }
    .section { padding: 70px 0; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer p { margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .cta-form { flex-direction: column; }
    .cta-form button { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
}
