:root {
    --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    --black: #0a0a0a;
    --accent: #D3001A;
    --accent-dark: #A30015;
    --accent-light: #FCE3E6;
    --accent-mid: #B30016;
    --white: #ffffff;
    --gray-text: #6b6b6b;
    --gray-soft: #f4f4f4;
    --border: #ececec;
    --page-bg: #ffffff;
    --success: #34C759;
}

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

body {
    font-family: var(--font);
    background-color: var(--page-bg);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Vouch Notifications */
#vouch-container {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
    padding: 0 16px;
}

.vouch-msg {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(211, 0, 26, 0.18);
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    border: 1px solid rgba(211, 0, 26, 0.25);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vouch-msg.visible {
    opacity: 1;
    transform: translateY(0);
}

.vouch-msg span {
    color: var(--accent);
    font-weight: 700;
}

/* Header & Logo */
.header {
    display: flex;
    justify-content: center;
    padding: 8px 0 24px;
}

.brand-logo {
    width: 72px;
    height: 72px;
    display: block;
}

.brand-logo-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Page */
.page {
    max-width: 440px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.main-card {
    text-align: center;
    margin-bottom: 32px;
}

/* Limited Offer Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--accent-mid);
}

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

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Hero */
.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--gray-text);
    max-width: 360px;
    margin: 0 auto 36px;
}

.hero-subtitle strong {
    color: var(--accent);
    font-weight: 700;
}

/* Steps */
.steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-soft);
    border-radius: 16px;
    padding: 18px 18px;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font);
}

.step-body {
    flex: 1;
    min-width: 0;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 2px;
}

.step-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-text);
    line-height: 1.4;
}

.step-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

/* CTA */
.cta-wrap {
    margin-top: 8px;
}

.cta-btn {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(211, 0, 26, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-btn:hover {
    background: var(--accent-dark);
}

.cta-btn:active {
    transform: scale(0.985);
}

.cta-arrow {
    font-size: 18px;
    line-height: 1;
}

.cta-note {
    font-size: 11px;
    color: var(--gray-text);
    margin-top: 16px;
    text-align: center;
}

/* FAQ */
.faq-section {
    margin-top: 40px;
}

.faq-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
    text-align: center;
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
}

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.55;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* Mobile tuning */
@media (max-width: 380px) {
    .hero-title {
        font-size: 34px;
    }
    .step {
        padding: 16px 14px;
        gap: 12px;
    }
    .step-num {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}
