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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(0, 206, 209, 0.2);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
}

.logo-perks {
    color: #ffffff;
}

.logo-navigator {
    color: #00CED1;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timer-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.timer-display {
    font-size: 20px;
    font-weight: 700;
    color: #00CED1;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #00CED1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheader {
    font-size: 24px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 40px;
}

.conditions-link {
    color: #00CED1;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
    font-size: inherit;
}

.conditions-link:hover {
    color: #00FFFF;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge img {
    height: 48px;
    width: auto;
}

.trust-text {
    font-size: 14px;
    color: #999999;
}

.conditions-text {
    font-size: 12px;
    margin: 20px 0 0 0;
    text-align: center;
}

.conditions-text .conditions-link {
    font-size: 12px;
}

/* Gift Card Selection */
.gift-card-selection {
    margin: 48px 0;
}

.selection-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #00CED1;
}

.gift-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.gift-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 12px 40px rgba(0, 206, 209, 0.4));
}

.gift-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-disclaimer {
    font-size: 9px;
    color: #666666;
    text-align: center;
    margin-top: 8px;
    line-height: 1.3;
}



/* How It Works Collapsible */
.how-it-works-collapsible {
    margin-top: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.collapsible-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    color: #00CED1;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #00CED1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.collapsible-toggle:hover {
    background-color: rgba(0, 206, 209, 0.1);
    transform: translateY(-2px);
}

.collapsible-toggle .icon {
    font-size: 20px;
}

.toggle-icon {
    margin-left: auto;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 16px;
}

.collapsible-content.expanded {
    max-height: 1000px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Insurance Section */
.insurance-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.insurance-content {
    max-width: 1200px;
    margin: 0 auto;
}

.insurance-text {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 32px;
    font-weight: 500;
}

.insurance-logos-slider {
    overflow: hidden;
    position: relative;
}

.insurance-logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.insurance-logos-track img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s;
    flex-shrink: 0;
    filter: brightness(1.2) contrast(1.1);
}

.insurance-logos-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
}

.testimonials-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-content h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #00CED1;
}

.testimonial-slider {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    text-align: center;
    color: #fbbf24;
    font-size: 28px;
    margin-bottom: 24px;
}

.testimonial-content {
    display: none;
}

.testimonial-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-content blockquote {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    color: #999999;
    font-size: 14px;
}

.testimonial-author strong {
    color: #ffffff;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    color: #ffffff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #00CED1;
    border-color: #00CED1;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.slider-dot.active {
    background-color: #00CED1;
    width: 32px;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00CED1;
}

.copyright {
    font-size: 12px;
    color: #666666;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    margin: 20px;
    padding: 40px;
    border: 2px solid #00CED1;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.3);
}

.modal-content.modal-large {
    max-width: 700px;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #999999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #00CED1;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #00CED1;
}

.modal-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #00CED1;
    margin-bottom: 8px;
}

.consent-opt-out {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 9px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    margin-bottom: 0 !important;
}

.consent-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 14px;
    height: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

.consent-checkbox-text {
    flex: 1;
    line-height: 1.4;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #00CED1;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00CED1 0%, #00FFFF 100%);
    color: #1a1a1a;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 206, 209, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.6);
}

.disclaimer {
    text-align: center;
    font-size: 10px;
    color: #666666;
    margin-top: 16px;
    line-height: 1.4;
}

/* Steps Container */
.steps-container {
    margin: 32px 0;
}

.step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #00CED1;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content {
    flex: 1;
    padding-top: 8px;
    color: #cccccc;
}

.step-content strong {
    color: #ffffff;
}

/* Pro Tip */
.pro-tip {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 20px 24px;
    border-radius: 8px;
    margin: 32px 0;
    color: #cccccc;
}

.pro-tip strong {
    color: #ffc107;
}

/* Eligibility Container */
.eligibility-container {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
}

.requirements-list {
    list-style: none;
    margin: 0;
}

.requirements-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    color: #cccccc;
}

.requirements-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00CED1;
    font-size: 24px;
    font-weight: 700;
}

.requirements-list strong {
    color: #ffffff;
}

.note {
    background-color: rgba(0, 206, 209, 0.1);
    border: 1px solid rgba(0, 206, 209, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 32px;
    font-size: 14px;
    color: #cccccc;
}

.note strong {
    color: #00CED1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .countdown-timer {
        flex-direction: column;
        gap: 4px;
        align-items: flex-end;
    }

    .timer-label {
        font-size: 11px;
    }

    .timer-display {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .hero-subheader {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-subheader {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .trust-badge {
        padding: 16px 0;
        margin-bottom: 32px;
    }

    .trust-badge img {
        height: 40px;
    }

    .selection-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .gift-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .how-it-works-collapsible {
        margin-top: 24px;
        padding: 0 15px;
    }

    .collapsible-toggle {
        font-size: 16px;
        padding: 10px 20px;
    }

    .collapsible-content.expanded {
        padding: 24px 20px;
    }

    .insurance-section {
        padding: 40px 15px;
    }

    .insurance-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .insurance-logos-track {
        gap: 40px;
    }

    .insurance-logos-track img {
        height: 40px;
    }

    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-content h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .testimonial-slider {
        padding: 32px 20px;
    }

    .testimonial-stars {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .testimonial-content blockquote {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .testimonial-author {
        font-size: 13px;
    }

    .modal-content {
        padding: 32px 20px;
        margin: 10px;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .modal-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .step {
        gap: 12px;
        margin-bottom: 20px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

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

    .footer {
        padding: 30px 15px;
    }

    .footer-links {
        gap: 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 24px;
    }

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

    .selection-title {
        font-size: 20px;
    }

    .gift-cards {
        padding: 0 15px;
    }

    .testimonials-content h2 {
        font-size: 24px;
    }

    .testimonial-slider {
        padding: 24px 16px;
    }

    .modal-content {
        padding: 24px 16px;
    }

    .insurance-logos-track img {
        height: 35px;
    }
}
