* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --orange-400: #fb923c;
    --orange-100: #ffedd5;
    --orange-50: #fff7ed;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --green-600: #16a34a;
    --green-100: #dcfce7;
    --wa-green: #25D366;
    --wa-green-hover: #20bd5a;
    --wa-green-bg: rgba(37, 211, 102, 0.15);
    --wa-green-border: rgba(37, 211, 102, 0.3);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.container {
    max-width: 560px;
    margin: 0 auto;
    padding: 24px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Progress Bar */
.progress-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.95);
    z-index: 100;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.progress-wrap.active {
    opacity: 1;
    transform: translateY(0);
}

.progress-inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-back {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--slate-400);
    padding: 4px;
    transition: color 0.2s;
}

.progress-back:hover { color: #fff; }

.progress-bar-bg {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-600), var(--orange-400));
    width: 0%;
    transition: width 0.5s;
    border-radius: 100px;
}

.progress-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-400);
    min-width: 36px;
    text-align: right;
}

/* Pages */
.page { display: none; animation: fadeIn 0.4s ease; }
.page.active { display: block; }

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

/* Brand Header */
.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.brand-logo {
    width: 36px;
    height: 36px;
}

.brand-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-consistency {
    color: #fff;
}

.brand-forge {
    color: #F08C2E;
    font-weight: 800;
}

/* Button with brand logo */
.btn-branded {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-logo {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    vertical-align: middle;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    text-align: center;
}

.hero-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--orange-500);
}

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    line-height: 1.5;
}

.hero-reclaim {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--orange-500);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}

.hero-feature .check {
    color: var(--green-600);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* Question Pages */
.question-page {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mascot-container {
    text-align: center;
    margin-bottom: 20px;
}

.mascot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero .mascot-container .mascot {
    width: 120px;
    height: 120px;
}

/* Question with mascot on left */
.question-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.question-header .mascot-container {
    margin-bottom: 0;
    flex-shrink: 0;
}

.question-header .mascot {
    width: 60px;
    height: 60px;
}

.question-header-text {
    flex: 1;
}

.question-header .question-label {
    margin-bottom: 8px;
}

.question-header .question-text {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .question-header .mascot {
        width: 50px;
        height: 50px;
    }
    .question-header {
        gap: 12px;
    }
}

/* Pulsing quotes */
.forge-quote {
    margin-top: 32px;
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    text-align: center;
    background: rgba(255,140,0,0.15);
    padding: 12px 20px;
    border-radius: 20px;
    display: inline-block;
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        background: rgba(255,140,0,0.1);
        box-shadow: 0 0 10px rgba(255,140,0,0.1);
    }
    50% {
        background: rgba(255,140,0,0.25);
        box-shadow: 0 0 20px rgba(255,140,0,0.3);
    }
}

.question-text {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.answer-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    backdrop-filter: blur(10px);
}

.answer-btn:hover {
    border-color: var(--orange-400);
    background: rgba(249, 115, 22, 0.2);
}

.answer-btn.selected {
    border-color: var(--orange-500);
    background: rgba(249, 115, 22, 0.3);
}

.answer-icon {
    font-size: 22px;
    flex-shrink: 0;
}

/* Result Page */
.result-page {
    padding-top: 100px;
    min-height: 100vh;
}

.result-card {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.result-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.result-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.result-card strong {
    color: var(--orange-400);
}

/* Incentive Box */
.incentive-box {
    background: rgba(22, 163, 74, 0.2);
    border: 1px solid rgba(22, 163, 74, 0.4);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 28px;
}

.incentive-value {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.incentive-value .strike {
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
}

.incentive-value .free {
    font-weight: 700;
    color: #4ade80;
}

.incentive-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Error message */
.form-error {
    color: #f87171;
    font-size: 14px;
    margin-top: 12px;
    padding: 10px 16px;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: 8px;
    display: none;
}

.form-error.visible {
    display: block;
}

/* Thank You */
.thankyou {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding: 40px 0;
}

.thankyou-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thankyou h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.thankyou p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
}

.thankyou-note {
    margin-top: 32px;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
    color: rgba(255,255,255,0.6);
}

/* ── WhatsApp Phone Card ── */

.wa-phone-card {
    margin-top: 24px;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--wa-green-border);
    border-radius: 16px;
    text-align: left;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s ease;
}

.wa-phone-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.wa-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.wa-phone-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--wa-green);
}

.wa-phone-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.wa-phone-input-wrap {
    position: relative;
    margin-bottom: 12px;
}

.wa-phone-input {
    width: 100%;
    padding: 14px 12px;
    font-size: 18px;
    font-family: 'Inter', monospace;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.wa-phone-input:focus {
    outline: none;
    border-color: var(--wa-green);
}

.wa-phone-input::placeholder {
    color: rgba(255,255,255,0.3);
    font-size: 16px;
}

.wa-country-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

.wa-country-hint.visible {
    opacity: 1;
}

/* ── Autocomplete suggestions ── */
.wa-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(15,15,20,0.97);
    border: 1px solid rgba(255,255,255,0.15);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.wa-suggestion-item {
    padding: 10px 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s;
}

.wa-suggestion-item:last-child {
    border-bottom: none;
}

.wa-suggestion-item:hover,
.wa-suggestion-item.active {
    background: rgba(37,211,102,0.15);
    color: #fff;
}

.wa-consent-wrap {
    margin-bottom: 12px;
}

.wa-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.wa-consent-checkbox {
    margin-top: 2px;
    accent-color: var(--wa-green);
    flex-shrink: 0;
}

/* WhatsApp Green Button */
.btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: #fff;
    background: var(--wa-green);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    background: var(--wa-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-wa:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-wa-verify {
    margin-bottom: 16px;
}

.wa-error {
    color: #f87171;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.wa-error.visible {
    display: block;
}

/* Verification Steps */
.wa-verify-steps {
    margin-bottom: 16px;
}

.wa-verify-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.wa-step-num {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wa-green-bg);
    border: 1px solid var(--wa-green-border);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: var(--wa-green);
}

/* QR Code */
.wa-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.wa-qr canvas {
    border-radius: 8px;
}

.wa-qr-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.wa-verify-note {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-style: italic;
}

.wa-change-number {
    display: block;
    margin: 16px auto 0;
    padding: 8px 16px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.wa-change-number:hover {
    border-color: var(--wa-green);
    color: var(--wa-green);
}

/* Typing dots */
.typing-wrap {
    padding: 20px 0;
}

.typing-dots {
    display: flex;
    gap: 6px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--slate-300);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
}

/* Hero Legal Footer */
.hero {
    position: relative;
}

.hero-legal {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

.hero-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
}

.hero-legal a:hover {
    color: rgba(255,255,255,0.5);
}

/* Micro-copy */
.micro-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    text-align: center;
    margin-bottom: 24px;
}

/* Consent Checkbox */
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 14px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: border-color 0.2s;
}

.consent-label:hover {
    border-color: rgba(255,255,255,0.25);
}

.consent-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-top: 2px;
}

.consent-label input[type="checkbox"]:checked ~ .consent-checkmark {
    background: var(--orange-500);
    border-color: var(--orange-500);
}

.consent-label input[type="checkbox"]:checked ~ .consent-checkmark::after {
    content: '\2713';
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.consent-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.consent-text strong {
    color: #fff;
    font-weight: 600;
}

.consent-text a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-decoration-style: dotted;
}

.consent-text a:hover {
    color: var(--orange-400);
}

/* Button glow when consent given */
.btn-primary.consent-active {
    animation: consent-glow 1.5s ease-in-out 1;
}

@keyframes consent-glow {
    0% { box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(249, 115, 22, 0.7), 0 0 40px rgba(249, 115, 22, 0.3); }
    100% { box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35); }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15,15,15,0.95);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 200;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-accept {
    background: var(--orange-500);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: var(--orange-600);
}

/* WebView Banner */
.webview-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15,15,15,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 300;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.webview-banner.visible {
    display: flex;
}

.webview-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.webview-actions button {
    background: var(--orange-500);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.webview-actions button:last-child {
    background: rgba(255,255,255,0.15);
}

.webview-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

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

/* Backdrop-filter fallback for WebViews */
@supports not (backdrop-filter: blur(10px)) {
    .answer-btn {
        background: rgba(0,0,0,0.85);
    }
    .progress-wrap {
        background: rgba(10,10,10,0.98);
    }
    .cookie-banner {
        background: rgba(15,15,15,0.98);
    }
    .webview-banner {
        background: rgba(15,15,15,0.98);
    }
    .wa-phone-card {
        background: rgba(0,0,0,0.9);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .container { padding: 20px; }
    .hero h1 { font-size: 28px; }
    .question-text { font-size: 22px; }
    .question-page { padding-top: 90px; }

    .brand-logo {
        width: 28px;
        height: 28px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-header {
        margin-bottom: 20px;
    }

    .hero .mascot-container .mascot {
        width: 80px;
        height: 80px;
    }

    .hero {
        padding: 20px 0;
    }

    .hero-sub {
        margin-bottom: 24px;
    }

    .hero-features {
        order: 10;
        margin-bottom: 0;
        margin-top: 20px;
    }

    .answer-btn {
        padding: 14px 16px;
        font-size: 15px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .wa-phone-input {
        font-size: 18px;
        padding: 14px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
