/* ================================================
   SolvStream Workshop — Premium Event Page
   ================================================ */

:root {
    --bg-main: #0A0A0A;
    --bg-alt: #111111;
    --bg-card: #1a1a1a;

    --accent-primary: #F29520;
    --accent-primary-hover: #fca941;
    --accent-secondary: #11846E;

    --text-primary: #FFFFFF;
    --text-body: #C0B8A8;
    --text-muted: #666666;
    --text-inverse: #0A0A0A;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;

    --container-width: 900px;
    --container-narrow: 680px;

    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-size: 4.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.75rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; max-width: var(--container-narrow); }

a { color: var(--accent-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-primary-hover); }

svg { display: inline-block; vertical-align: middle; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 120px 0;
    position: relative;
}

/* ---- Section Numbers ---- */
.section-number {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1;
}

/* ---- Section Dividers ---- */
.section-image-divider {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 0.3;
}

.section-divider {
    width: 40%;
    max-width: 300px;
    height: 1px;
    background-color: var(--accent-primary);
    opacity: 0.3;
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 20px 48px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #F29520 0%, #E8850A 100%);
    color: var(--text-inverse);
    box-shadow: 0 4px 20px rgba(242, 149, 32, 0.3);
}

.btn-primary:hover {
    color: var(--text-inverse);
    transform: scale(1.02);
    box-shadow: 0 4px 30px rgba(242, 149, 32, 0.5);
    filter: brightness(1.1);
}

.btn-large { padding: 20px 48px; font-size: 1.125rem; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(242, 149, 32, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(242, 149, 32, 0.5); }
}

.btn-pulse { animation: pulse-glow 3s ease-in-out infinite; }
.btn-pulse:hover { animation: none; box-shadow: 0 4px 30px rgba(242, 149, 32, 0.5); }

.btn-dark {
    background: var(--bg-main);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    background: #1a1a1a;
    color: var(--text-primary);
    transform: scale(1.02);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.btn-outline:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
    background: rgba(242, 149, 32, 0.08);
    transform: scale(1.02);
}

/* ---- Sticky Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: transparent;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

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

.header-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.header-cta {
    background: linear-gradient(135deg, #F29520 0%, #E8850A 100%);
    color: var(--text-inverse);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 10px rgba(242, 149, 32, 0.2);
}

.header-cta:hover {
    color: var(--text-inverse);
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, var(--bg-main) 95%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    background: linear-gradient(135deg, #FFFFFF 0%, #F29520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-wrapper { margin-bottom: 3rem; }
.hero .btn-large { max-width: 400px; margin-left: auto; margin-right: auto; }

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Hero Countdown ---- */
.hero-countdown { margin-top: 1rem; }

.hero-countdown .countdown-label,
.countdown-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.countdown-unit {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 4px;
    color: var(--text-muted);
    font-weight: 600;
}

.countdown-separator {
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 700;
    padding-bottom: 16px;
}

.countdown-ended {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ---- Left-align body, centre headings ---- */
.problem h2,
.deliverables h2,
.timeline-section h2,
.audience h2,
.host h2,
.faq h2 { text-align: center; }

.problem-content,
.timeline,
.audience-list,
.audience-disclaimer,
.host-profile,
.faq-list,
.faq-answer-inner { text-align: left; }

/* ---- Problem Section ---- */
.problem {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 50%, var(--bg-main) 100%);
}

.problem-content { max-width: var(--container-narrow); }
.problem-content p { margin-bottom: 1.5rem; }
.problem-content p:last-child { margin-bottom: 0; }

/* ---- Deliverables / Cards ---- */
.section-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid #2a2520;
    box-shadow: 0 0 40px rgba(242, 149, 32, 0.08);
    transition: all 0.25s ease;
}

.card:hover {
    border-color: rgba(242, 149, 32, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(242, 149, 32, 0.15);
}

.card-icon {
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(242, 149, 32, 0.3));
}

.card-icon svg { width: 48px; height: 48px; }

.card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.card p { color: var(--text-body); margin-bottom: 0; font-size: 0.95rem; max-width: none; }

/* ---- Timeline Section ---- */
.timeline-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 50%, var(--bg-main) 100%);
}

.timeline {
    position: relative;
    padding-left: 3rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), rgba(242, 149, 32, 0.2));
    box-shadow: 0 0 10px rgba(242, 149, 32, 0.3);
}

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(242, 149, 32, 0.4); }
    50% { box-shadow: 0 0 16px rgba(242, 149, 32, 0.7); }
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    box-shadow: 0 0 8px rgba(242, 149, 32, 0.4);
    animation: dot-pulse 3s ease-in-out infinite;
}

.break-item::before {
    background-color: transparent;
    border: 2px solid var(--text-muted);
    box-shadow: none;
    animation: none;
}

.break-item .details {
    color: var(--text-muted);
    font-style: italic;
}

.time {
    display: inline-block;
    font-weight: 600;
    color: var(--text-inverse);
    background: var(--accent-primary);
    padding: 2px 12px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.details { color: var(--text-body); max-width: none; }

/* ---- Audience Section ---- */
.audience-list {
    list-style: none;
    margin-bottom: 3rem;
    max-width: var(--container-narrow);
}

.audience-list li {
    position: relative;
    padding: 0.75rem 0.75rem 0.75rem 2.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.audience-list li:hover {
    background-color: rgba(242, 149, 32, 0.06);
}

.audience-icon {
    position: absolute;
    left: 0.75rem;
    top: 0.85rem;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.audience-icon svg {
    display: block;
}

.audience-outcome {
    display: block;
    color: var(--accent-primary);
    font-weight: 700;
    margin-top: 0.4rem;
    font-size: 1rem;
}

.audience-disclaimer {
    background: rgba(242, 149, 32, 0.08);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-primary);
    max-width: var(--container-narrow);
}

.audience-disclaimer p {
    margin-bottom: 0;
    color: var(--text-primary);
    max-width: none;
}

/* ---- Host Section ---- */
.host {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 50%, var(--bg-main) 100%);
}

.host-profile {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid #2a2520;
    max-width: var(--container-narrow);
}

.host-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.host-headshot {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(242, 149, 32, 0.15);
    flex-shrink: 0;
}

.host-profile h3 { margin-bottom: 0.25rem; }

.host-role {
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.host-bio p { margin-bottom: 1rem; max-width: none; }
.host-bio p:last-child { margin-bottom: 0; }

/* ---- Pricing Section ---- */
.pricing {
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background-image: url('3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.pricing-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 100%);
}

.pricing .container { position: relative; z-index: 1; }

.pricing-reinforcement {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.pricing-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--accent-primary);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.price {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.includes-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.includes-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    padding-left: 2rem;
}

.includes-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

.includes-list li:last-child { border-bottom: none; }

.secure-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-date {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ---- FAQ Section ---- */
.faq {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 50%, var(--bg-main) 100%);
}

.faq-list {
    display: flex;
    flex-direction: column;
    max-width: var(--container-narrow);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.2s ease;
    border-radius: var(--radius-sm);
    padding: 0 0.75rem;
}

.faq-item:hover {
    background-color: rgba(242, 149, 32, 0.04);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.2s ease;
    min-height: 48px;
}

.faq-question:hover { color: var(--accent-primary); }

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; }

.faq-item.active .faq-icon::after { transform: rotate(90deg); }
.faq-item.active .faq-icon::before { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner { padding: 0 0 1.5rem; }
.faq-answer p { color: var(--text-body); margin-bottom: 0; font-size: 1rem; max-width: none; }

/* ---- Final CTA ---- */
.final-cta {
    background-color: var(--accent-primary);
    color: var(--text-inverse);
    padding: 120px 0;
    text-align: center;
}

.final-cta h2 {
    color: var(--text-inverse);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.final-cta-body {
    font-size: 1.25rem;
    color: rgba(10, 10, 10, 0.7);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.final-cta .cta-note {
    color: rgba(10, 10, 10, 0.6);
    font-weight: 600;
    margin-top: 1rem;
}

/* ---- Footer ---- */
.site-footer { padding: 3rem 0; text-align: center; }
.site-footer .section-divider { margin-bottom: 2rem; }
.site-footer p { margin-bottom: 0; font-size: 0.8rem; color: var(--text-muted); max-width: none; }
.site-footer a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.site-footer a:hover { color: var(--accent-primary); }

/* ---- Scroll Fade-in ---- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger cards */
.stagger-children .card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-children.visible .card:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible .card:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible .card:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible .card:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }

/* ================================================
   Thank You Page
   ================================================ */

.thankyou-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.thankyou-hero h1 {
    background: linear-gradient(135deg, #FFFFFF 0%, #F29520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.thankyou-section {
    padding: 60px 0;
}

.thankyou-section h2 {
    text-align: center;
}

/* Info Card */
.info-card {
    background: var(--bg-card);
    padding: 2.5rem 3rem;
    border-radius: var(--radius);
    border: 1px solid #2a2520;
    max-width: 560px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1.0625rem;
}

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

.info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}

/* Zoom Card */
.zoom-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--accent-primary);
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.zoom-card h2 { font-size: 2rem; margin-bottom: 1.5rem; }

.zoom-details {
    margin-bottom: 2rem;
}

.zoom-details p {
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
    max-width: none;
}

.zoom-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Calendar Buttons */
.calendar-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.calendar-buttons .btn {
    min-width: 240px;
}

/* Pre-work List */
.prework-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding-left: 1.5rem;
}

.prework-list li {
    margin-bottom: 1.25rem;
    padding-left: 0.5rem;
}

.prework-list li::marker {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Bring List */
.bring-list {
    list-style: none;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.bring-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.bring-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

/* Bottom Note */
.thankyou-note {
    padding: 40px 0;
}

.thankyou-note p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   Responsive
   ================================================ */

@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.25rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    section { padding: 80px 0; }

    .hero { min-height: 100vh; padding: 100px 0 60px; }

    .cards-grid { grid-template-columns: 1fr; }
    .card { padding: 28px; }

    .btn-large, .btn {
        display: block;
        width: 100%;
        padding: 18px 32px;
    }

    .pricing-box .btn { display: block; width: 100%; }

    .countdown-block { min-width: 60px; padding: 12px; }
    .countdown-value { font-size: 1.75rem; }
    .countdown-separator { font-size: 1.25rem; }

    .price { font-size: 3.5rem; }

    .header-brand { font-size: 0.9rem; }
    .header-cta { padding: 8px 16px; font-size: 0.8rem; }

    .timeline { padding-left: 2rem; }
    .timeline-item { padding-left: 0.5rem; }
    .timeline-item::before { left: -2.5rem; }

    .host-profile { padding: 2rem; }
    .host-header { gap: 1rem; }
    .host-headshot { width: 72px; height: 72px; }

    .pricing-box { padding: 2rem; }

    .faq-question { font-size: 1rem; }

    .final-cta { padding: 80px 0; }

    /* Thank You page mobile */
    .thankyou-hero { padding: 120px 0 60px; }
    .thankyou-section { padding: 40px 0; }
    .info-card { padding: 1.5rem; }
    .zoom-card { padding: 2rem; }
    .calendar-buttons { flex-direction: column; align-items: center; }
    .calendar-buttons .btn { min-width: auto; width: 100%; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    section { padding: 60px 0; }

    .container { padding: 0 1.25rem; }

    .countdown { gap: 0.35rem; }
    .countdown-block { min-width: 50px; padding: 10px 8px; }
    .countdown-value { font-size: 1.5rem; }
    .countdown-separator { font-size: 1rem; padding-bottom: 12px; }
    .countdown-unit { font-size: 0.6rem; }

    .card { padding: 24px; }

    .thankyou-hero { padding: 100px 0 40px; }
}
