:root {
    --primary-blue: #005dab;
    --light-blue: #cc1a1a;
    --brand-sub: #1a3a8f;
    --dark-text: #1a1a2e;
    --gray-text: #666;
    --font-body: 'Inter', sans-serif;
    --section-pink: #fff3f5;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.section-heading {
    font-family: var(--font-body);
    color: var(--dark-text);
    text-align: center;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.sub-heading {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Timer Bar Styles (formerly red bar) */
.timer-container {
    font-size: 0.9rem;
    font-weight: 600;
}

.timer-text {
    font-family: var(--font-body);
    font-variant-numeric: tabular-nums;
    font-size: 0.95rem;
    font-weight: 700;
    background: rgba(0,0,0,0.15);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

/* Header */
.main-header {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,93,171,0.28);
}

.logo-wrap {
    margin: 0.75rem 0 1.5rem;
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    background: #fdeff1;
    border: 1px solid rgba(204,26,26,0.09);
    border-radius: 14px;
    padding: 14px 28px;
    user-select: none;
}

.main-logo {
    max-width: 100%;
    margin-bottom: 1rem;
    padding: 10px 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-cost, .logo-saved {
    font-family: var(--font-body);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -1px;
    font-style: italic;
    text-transform: uppercase;
}

.logo-cost { color: #cc1a1a; }
.logo-saved { color: #1a3a8f; }
.logo-badge {
    color: #cc1a1a;
    font-size: 0.55rem;
    font-weight: 700;
    vertical-align: super;
}

.header-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.brand-main {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-sub {
    color: var(--brand-sub);
    font-weight: 600;
    font-size: 0.85rem;
}

.menu-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Main layouts */
main {
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 3rem 1.5rem;
}

/* Card Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.reward-card-container {
    width: 100%;
    max-width: 380px;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.reward-card {
    background: radial-gradient(125% 105% at 70% 25%, #c9352e 0%, #b02c27 36%, #8c221f 68%, #6d1a18 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    box-shadow:
        0 18px 40px rgba(94,22,20,0.38),
        0 6px 16px rgba(0,0,0,0.16),
        inset 0 1px 0 rgba(255,255,255,0.18);
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 50px rgba(94,22,20,0.44),
        0 10px 22px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.18);
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.13) 50%, transparent 80%);
    animation: card-shimmer 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes card-shimmer {
    0% { transform: translateX(-167%); }
    100% { transform: translateX(250%); }
}

.card-header {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-brand {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 800;
}

.card-type {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 2px;
}

.card-center h2 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 2.2rem;
    opacity: 0.15;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    letter-spacing: 4px;
    pointer-events: none;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.points {
    text-align: right;
}

.points-label {
    display: block;
    font-size: 0.65rem;
    text-transform: capitalize;
    opacity: 0.9;
}

.points-value {
    font-size: 2rem;
    font-weight: 800;
    margin-top: -2px;
}

.btn-primary {
    background-color: #cc1a1a;
    color: white;
    border: none;
    padding: 1.1rem 2rem;
    width: 100%;
    max-width: 380px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(204,26,26,0.35);
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #b01515;
    box-shadow: 0 8px 28px rgba(204,26,26,0.45);
}

.social-proof {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.icon-party {
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 2rem 1.5rem;
    background-color: var(--section-pink);
}

.how-it-works .container {
    max-width: 428px;
    margin: 0 auto;
}

.how-it-works .section-heading {
    margin-bottom: 1.25rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step {
    background: white;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-icon.dark-blue {
    background-color: #cc1a1a;
    color: white;
}

.step-icon.bright-blue {
    background-color: #1a3a8f;
    color: white;
}

.step-icon.green {
    background-color: #005dab;
    color: white;
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.1rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-text);
    line-height: 1.35;
}

/* FAQ Section */
.faq {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}

.faq-list {
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-top: 1px solid rgba(204,26,26,0.12);
}

.faq-item.border-bottom {
    border-bottom: 1px solid rgba(204,26,26,0.12);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0.5rem;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark-text);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    padding: 0 0.5rem 1.25rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.chevron {
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    color: #cc1a1a;
}

.faq-item.active .chevron {
    transform: rotate(45deg);
    color: #1a3a8f;
}

/* Bottom CTA */
.bottom-cta-section {
    background-color: var(--section-pink);
    padding: 1rem 1.5rem 4rem;
}

.bottom-cta-card {
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 428px;
    margin: 0 auto;
}

.bottom-cta-card h2 {
    font-family: var(--font-body);
    color: var(--dark-text);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.bottom-cta-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Footer */
.site-footer {
    background-color: #005dab;
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
}

.site-footer .logo-wrap {
    margin: 0 0 1.5rem;
}

.site-footer .logo {
    padding: 8px 16px;
    border-radius: 10px;
}

.site-footer .logo-cost,
.site-footer .logo-saved {
    font-size: 1.2rem;
}

.site-footer .logo-badge {
    font-size: 0.45rem;
}

.site-footer h3 {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 1px;
    font-family: var(--font-body);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.brand-sub-footer {
    color: var(--brand-sub);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links span {
    opacity: 0.4;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
    .reward-card::before { animation: none; }
    .reward-card { transition: none; }
}

@media (min-width: 768px) {
    .sub-heading { max-width: 380px; }

    .faq {
        width: 100%;
        max-width: 428px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .section-heading { font-size: 1.5rem; }
    .card-center h2 { font-size: 1.7rem; letter-spacing: 2px; }
    .hero-section { padding-top: 3.5rem; padding-bottom: 2.75rem; }
    .reward-card { height: 180px; padding: 1.25rem; }
    .points-value { font-size: 1.6rem; }
    .timer-text { font-size: 0.9rem; }
    .btn-primary { font-size: 0.95rem; padding: 1rem 1.5rem; }
    .how-it-works { padding-top: 3rem; padding-bottom: 3rem; }
    .how-it-works .section-heading { margin-bottom: 1.5rem; }
    .steps { gap: 1rem; }
    .faq { padding-top: 3rem; padding-bottom: 2.25rem; }
    .faq .section-heading { margin-bottom: 1rem; }
    .faq-list { margin-top: 0.5rem; }
    .faq-toggle { font-size: 1.05rem; }
    .bottom-cta-section { padding: 3rem 1.5rem 3.25rem; }
    .bottom-cta-card { padding: 0; }
    .bottom-cta-card p { margin-bottom: 2rem; }
    .site-footer { padding: 3rem 1.5rem; }
}

@media (max-width: 360px) {
    .card-center h2 { font-size: 1.4rem; letter-spacing: 1px; }
    .main-logo .logo-cost, .main-logo .logo-saved { font-size: 1.45rem; }
}
