/* CSS variables are defined in base.css */

.eft-hero {
    background-color: var(--primary-black);
    color: var(--text-light);
    padding: 5rem 0;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--secondary-black);
}

.beta-notice {
    background-color: rgba(255, 165, 0, 0.1);
    border: 2px solid #ffa500;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    border-radius: 6px;
}

.beta-notice p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.beta-notice strong {
    color: #ffa500;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.eft-main {
    padding: 2rem 0;
}

.info-section {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--secondary-black);
    padding-bottom: 3rem;
}

.info-section:last-child {
    border-bottom: none;
}

.info-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    padding: 1.5rem;
    background-color: var(--secondary-black);
    border-left: 3px solid var(--accent-magenta);
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-box,
.privacy-box,
.info-box {
    background-color: var(--secondary-black);
    padding: 2rem;
    line-height: 1.8;
    color: var(--text-light);
    border-left: 3px solid var(--accent-magenta);
}

.benefit-box p,
.privacy-box p,
.info-box p {
    margin: 0 0 1rem 0;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.guide-link {
    color: var(--accent-magenta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.guide-link:hover {
    color: var(--accent-magenta-hover);
}

.price-section-new {
    text-align: center;
}

.price-display {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-magenta);
    margin: 0;
}

.email-capture-section {
    margin: 2rem 0;
    text-align: left;
}

.email-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.email-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    background-color: var(--secondary-black);
    border: 2px solid var(--tertiary-black);
    color: var(--text-light);
    transition: border-color 0.3s ease;
    margin-bottom: 0.5rem;
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-magenta);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-error {
    color: #ff4444;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(255, 68, 68, 0.1);
    border-left: 3px solid #ff4444;
}

.email-help-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.btn-purchase {
    background-color: var(--accent-magenta);
    color: var(--text-light);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-purchase:hover {
    background-color: var(--accent-magenta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 66, 113, 0.3);
}

.footer-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.terms-section {
    border-bottom: none;
    padding-bottom: 0;
}

.terms-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.terms-text a {
    color: var(--accent-magenta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.terms-text a:hover {
    color: var(--accent-magenta-hover);
}

.checkout-success-message {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 2px solid #4caf50;
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.checkout-success-message .success-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.checkout-success-message h3 {
    font-size: 1.75rem;
    color: #4caf50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.checkout-success-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.checkout-success-message .success-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.checkout-success-message strong {
    color: var(--accent-magenta);
    font-weight: 600;
}

/* SEO Content Styling */
.seo-content {
    background-color: var(--secondary-black);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.seo-content .content-block {
    color: var(--text-light);
}

.seo-content h3 {
    font-size: 1.5rem;
    color: var(--accent-magenta);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.seo-content h3:first-of-type {
    margin-top: 0;
}

.seo-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.seo-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.seo-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.seo-content li strong {
    color: var(--accent-magenta);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .eft-hero {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }

    .info-section h2 {
        font-size: 1.35rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 1rem;
    }

    .benefit-box,
    .privacy-box {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .btn-purchase {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .seo-content {
        padding: 1.5rem;
    }

    .seo-content h3 {
        font-size: 1.25rem;
    }
}
