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

/* Fonts */
@font-face {
    font-family: 'Everyday Sans';
    src: url('../fonts/EverydaySans-Regular.woff2') format('woff2'),
        url('../fonts/EverydaySans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Everyday Sans';
    src: url('../fonts/EverydaySans-Medium.woff2') format('woff2'),
        url('../fonts/EverydaySans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Everyday Sans';
    src: url('../fonts/EverydaySans-Bold.woff2') format('woff2'),
        url('../fonts/EverydaySans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Everyday Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    line-height: 1.6;
    color: #071233;
    background: linear-gradient(180deg, #e6f1fc 0%, #f0f7ff 100%);
    min-height: 100vh;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Header & Footer Strip */
.header-strip,
.footer-strip {
    background-color: #0071DC;
    color: #ffffff;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    text-transform: normal;
    letter-spacing: 0.5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.footer-strip {
    margin-top: auto;
    font-size: 11px;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 4px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    opacity: 0.8;
}

/* Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(180deg, #e6f1fc 0%, #f0f7ff 100%);
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Hero Block */
.hero-block {
    text-align: center;
    margin-bottom: 20px;
}

.hero-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon img {
    width: 200px;
    height: auto;
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #007dc3;
    line-height: 1.05;
    margin-top: 18px;
    margin-bottom: 6px;
    text-transform: none;
}

.hero-subhead {
    color: #6B7280;
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.4;
}

/* Primary CTA */
.cta-section {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 26px;
}

.cta-button {
    display: inline-block;
    background-color: #FFC220;
    color: #071233;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 26px;
    font-weight: 700;
    font-size: 16px;
    min-width: 50%;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: dance 3s ease-in-out infinite, pulse-shadow 2s ease-in-out infinite;
}

.cta-button:hover {
    background-color: #FFC220;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 113, 220, 0.5);
    animation: none;
}

.cta-button:focus {
    outline: 3px solid #0071DC;
    outline-offset: 2px;
}

.cta-button:active {
    transform: translateY(0);
}

/* Timer + Trust Line */
.timer-trust-line {
    text-align: center;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0;
    line-height: 1.5;
}

.countdown-chip {
    background: linear-gradient(135deg, #0071DC, #005bb5);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes dance {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    10% {
        transform: translateY(-4px) scale(1.02);
    }

    20% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-4px) scale(1.02);
    }

    40% {
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse-shadow {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow: 0 6px 20px rgba(0, 113, 220, 0.4);
    }
}

/* Quick Start Guide Card */
.quick-start-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-start-heading {
    font-size: 18px;
    font-weight: 600;
    color: #071233;
    margin: 0 0 20px 0;
    text-align: left;
}

.quick-start-guide {
    margin: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: #e3e3e3;
    border-radius: 12px;
    margin: 10px;
}

.step-number {
    color: #071233;
    font-size: 16px;
    font-weight: 700;
    min-width: 20px;
    margin-top: 2px;
}

.step-content {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.step-content strong {
    font-size: 16px;
    font-weight: 600;
    color: #071233;
    display: block;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.4;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #071233;
    margin: 0 0 0 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq {
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
}

.faq:last-child {
    border-bottom: none;
}

.faq-q {
    font-size: 15px;
    font-weight: 600;
    color: #071233;
    padding: 16px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    color: #0071DC;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq[open] .faq-q::after {
    transform: rotate(45deg);
}

.faq-q:hover {
    color: #0071DC;
}

.faq-a {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    padding: 0 0 16px 0;
    margin: 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #9AA3B2;
    margin-top: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        margin: 10px auto;
        padding: 24px 16px;
    }

    .quick-start-card {
        padding: 20px;
        margin: 25px 0;
    }

    .quick-start-heading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .faq-section {
        padding: 20px;
        margin: 25px 0;
    }

    .faq-title {
        font-size: 16px;
    }

    .faq-q {
        font-size: 16px;
        padding: 14px 0;
    }

    .faq-a {
        font-size: 15px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subhead {
        font-size: 15px;
    }

    .hero-icon img {
        width: 160px;
        height: auto;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 17px;
        min-width: 65%;
    }

    .timer-trust-line {
        font-size: 14px;
        line-height: 1.6;
    }

    .step-content strong {
        font-size: 14px;
    }

    .step-content p {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .container {
        margin: 10px auto;
        padding: 20px 16px;
    }

    .hero-icon img {
        width: 150px;
        height: auto;
    }

    .cta-button {
        min-width: 75%;
    }

    .quick-start-card {
        padding: 18px;
        margin: 22px 0;
    }

    .faq-section {
        padding: 16px;
        margin: 20px 0;
    }

}

@media (max-width: 480px) {
    .header-strip {
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 500;
    }

    .container {
        margin: 0;
        padding: 16px;
        border-radius: 0;
    }

    .quick-start-card {
        padding: 16px;
        margin: 16px 0;
        border-radius: 12px;
    }

    .quick-start-heading {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .faq-section {
        padding: 16px;
        margin: 16px 0;
    }

    .faq-title {
        font-size: 17px;
    }

    .faq-q {
        font-size: 16px;
        padding: 12px 0;
    }

    .faq-a {
        font-size: 14px;
        padding-bottom: 12px;
    }

    .hero-icon {
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .hero-icon img {
        width: 160px;
        height: auto;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subhead {
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 18px;
        font-size: 18px;
        min-width: 90%;
    }

    .timer-trust-line {
        font-size: 14px;
    }

    .countdown-chip {
        padding: 6px 12px;
        font-size: 14px;
    }

    .step {
        padding: 12px 10px;
        gap: 10px;
    }

    .step-content strong {
        font-size: 15px;
    }

    .step-content p {
        font-size: 14px;
    }

    .footer {
        font-size: 10px;
        padding: 15px;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .cta-button {
        animation: none !important;
    }

    .cta-button:hover {
        transform: none;
    }

    .cta-button:active {
        transform: none;
    }
}