/* Global Styles */
:root {
    --coach-black: #000000;
    --coach-dark-gray: #1a1a1a;
    --coach-gold: #c3a373;
    --coach-light-gray: #f4f4f4;
    --dark-text: #1a1a1a;
    --light-bg: #fdfdfd;
    --white: #FFFFFF;
    --alert-green: #0a8a3c;
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    background-image: radial-gradient(circle at top, #ffffff, #f4f4f4);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.secure-badge {
    color: var(--coach-black);
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.2px;
}

/* Container */
.container {
    max-width: 480px; /* Mobile focused max-width */
    margin: 0 auto;
    padding: 16px 16px 30px;
}

/* Hero Section */
.hero-card {
    background: linear-gradient(145deg, #111111 0%, #000000 100%);
    border-radius: 20px;
    padding: 30px 20px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.brand-header {
    margin-bottom: 20px;
}

.coach-logo-text {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 6px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin: 0 0 0 6px; /* Adds 6px to the left to perfectly balance the 6px letter-spacing on the right */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.headline-elegant {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--coach-gold);
    font-weight: 500;
    font-style: italic;
    margin-top: 4px;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.sub-headline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    padding: 0 10px;
    font-weight: 400;
}

/* Premium Gift Card Visual */
.gift-card-container {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 28px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.08);
    filter: drop-shadow(0 10px 20px rgba(195, 163, 115, 0.15));
    transition: transform 0.3s ease;
}

.gift-card-container:hover {
    transform: translateY(-5px);
}

.premium-gift-card {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}




/* Choice Buttons */
.choice-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 22px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.2s, transform 0.1s;
    background-color: var(--white);
    color: var(--coach-black);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.8);
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0));
    transform: rotate(45deg);
    pointer-events: none;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.cta-value {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--coach-black);
}

.cta-text {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--coach-dark-gray);
}


/* Social Proof Ticker */
.social-proof-ticker {
    background-color: var(--white);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.ticker-content {
    display: inline-block;
    animation: ticker 380s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 24px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
}

.ticker-item strong {
    color: var(--coach-black);
}

.ticker-time {
    color: #999;
    font-size: 0.85rem;
    margin-left: 6px;
    font-weight: 400;
}

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

/* Info Section */
.info-section {
    margin-bottom: 40px;
}

.info-section h3,
.faq-section h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--coach-black);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.step-card {
    background: var(--white);
    padding: 22px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.step-number {
    background-color: var(--coach-black);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-card h4 {
    margin-bottom: 6px;
    font-size: 1.15rem;
    color: var(--dark-text);
    font-weight: 800;
}

.step-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--coach-black);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg); /* Forms an X */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 16px;
    line-height: 1.6;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.8rem;
    color: #888;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background-color: var(--coach-black);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid var(--coach-gold);
}

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

.toast strong {
    color: var(--coach-gold);
    font-weight: 800;
}

.toast-time {
    color: #aaa;
    font-size: 0.85rem;
    margin-left: auto;
    font-weight: 600;
}
