/* Import distinctive fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pure black and white palette */
    --black: #000000;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --dark-gray: #1A1A1A;

    /* Single accent: deep red for critical actions */
    --accent-red: #DC0000;
    --accent-red-dark: #B00000;

    /* Structural colors */
    --border-color: #000000;
    --border-light: #E0E0E0;

    /* Shadows: hard, not soft */
    --shadow-hard: 0 4px 0 rgba(0, 0, 0, 1);
    --shadow-medium: 0 8px 0 rgba(0, 0, 0, 0.15);
    --shadow-large: 0 12px 0 rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.slide-up-delay-1 {
    animation: slideUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.slide-up-delay-2 {
    animation: slideUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.slide-up-delay-3 {
    animation: slideUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.slide-right {
    animation: slideRight 0.6s ease-out forwards;
}

.slide-right-delay-1 {
    animation: slideRight 0.6s ease-out 0.15s forwards;
    opacity: 0;
}

.slide-right-delay-2 {
    animation: slideRight 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.slide-right-delay-3 {
    animation: slideRight 0.6s ease-out 0.45s forwards;
    opacity: 0;
}

.scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.scale-in-delay-1 {
    animation: scaleIn 0.5s ease-out 0.15s forwards;
    opacity: 0;
}

.scale-in-delay-2 {
    animation: scaleIn 0.5s ease-out 0.3s forwards;
    opacity: 0;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 140px 20px 100px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--black);
}

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

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    text-transform: none;
}

.subheadline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
}

.cta-button {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 20px 48px;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
    border: 3px solid var(--black);
    box-shadow: var(--shadow-hard);
    position: relative;
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 1);
    background: var(--accent-red-dark);
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 24px 56px;
}

.cta-button.secondary-hero {
    background: transparent;
    border-color: var(--white);
    margin-left: 16px;
}

.cta-button.secondary-hero:hover {
    background: var(--white);
    color: var(--black);
    box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.3);
}

/* Email Capture Section */
.email-capture-section {
    padding: 80px 20px;
    background: var(--accent-red);
    border-bottom: 4px solid var(--black);
    position: relative;
}

.email-capture-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.email-capture-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.email-capture-subtitle {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.email-capture-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 16px;
}

.email-input {
    flex: 1;
    padding: 18px 24px;
    font-size: 1.125rem;
    border: 3px solid var(--black);
    border-radius: 0;
    background: var(--white);
    color: var(--black);
    font-family: 'IBM Plex Sans', sans-serif;
    transition: all 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.email-input::placeholder {
    color: var(--medium-gray);
}

.email-submit-button {
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--black);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    font-family: 'IBM Plex Sans', sans-serif;
}

.email-submit-button:hover {
    background: var(--white);
    color: var(--black);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
}

.email-capture-note {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.8;
}

/* Problem Section */
.problem-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
    border-bottom: 3px solid var(--black);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.2s ease;
    border: 3px solid var(--black);
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-red);
}

.problem-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 1);
}

.problem-icon {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--black);
    line-height: 1;
    display: block;
}

.problem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--black);
    line-height: 1.3;
}

.problem-card p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.cost-highlight {
    display: block;
    font-weight: 700;
    color: var(--accent-red);
    font-size: 1.125rem;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.problem-video-container {
    max-width: 800px;
    margin: 80px auto 0;
}

.problem-video-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Solution Section */
.solution-section {
    padding: 100px 20px;
    background: var(--light-gray);
    border-bottom: 3px solid var(--black);
}

.solution-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.credibility-statement {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    color: var(--black);
    margin: 0 auto 16px;
    letter-spacing: -0.01em;
}

.social-proof {
    text-align: center;
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0 auto 24px;
    letter-spacing: 0.02em;
}

.social-proof strong {
    color: var(--black);
    font-weight: 700;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 20px;
    background: var(--white);
    border-bottom: 3px solid var(--black);
}

.social-proof-section .credibility-statement {
    margin-bottom: 16px;
}

.social-proof-section .social-proof {
    margin-bottom: 32px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 900px;
}

.client-logo {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo.invert {
    filter: grayscale(100%) invert(1);
}

.client-logo.invert:hover {
    filter: invert(1);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--black);
    border: 4px solid var(--black);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.video-placeholder {
    position: relative;
    background: var(--white);
    border-radius: 0;
    padding: 120px 40px;
    text-align: center;
    color: var(--black);
    box-shadow: none;
    border: 3px solid var(--black);
    overflow: hidden;
}

.play-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    color: var(--accent-red);
}

.video-placeholder p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: var(--black);
}

/* Process Timeline */
.process-section {
    padding: 100px 20px;
    background: var(--white);
    border-bottom: 3px solid var(--black);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--black);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 900;
    box-shadow: none;
    border: 3px solid var(--black);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 0;
    box-shadow: none;
    border: 3px solid var(--black);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: var(--black);
    border-bottom: 3px solid var(--black);
}

.pricing-section .section-title {
    color: var(--white);
}

.pricing-intro {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.scarcity-note {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-red);
    background: var(--white);
    padding: 16px 24px;
    margin: 0 auto 20px;
    max-width: 500px;
    border: 3px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guarantee-note {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 auto 60px;
    max-width: 600px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--white);
    border: 3px solid var(--white);
    border-radius: 0;
    padding: 48px 36px;
    position: relative;
    transition: all 0.2s ease;
    overflow: visible;
}

.pricing-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-red);
    background: var(--white);
    border-width: 4px;
}

.pricing-card.featured:hover {
    box-shadow: 8px 8px 0 var(--accent-red);
}

.pricing-card.premium {
    border-color: var(--white);
    background: var(--white);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    box-shadow: none;
    border: 3px solid var(--black);
}

.tier-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    font-weight: 600;
}

.tier-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.2;
}

.tier-description {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.price {
    margin-bottom: 30px;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.02em;
}

.premium .price-amount {
    font-size: 2.5rem;
}

.value-stack {
    margin-bottom: 36px;
}

.value-stack h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-stack ul {
    list-style: none;
}

.value-stack li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

.value-stack li:last-child {
    border-bottom: none;
}

.tier-cta {
    width: 100%;
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--black);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: none;
}

.tier-cta:hover {
    background: var(--white);
    color: var(--black);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
}

.tier-cta.featured-cta {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.tier-cta.featured-cta:hover {
    background: var(--accent-red-dark);
    border-color: var(--accent-red-dark);
    color: var(--white);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
}

.tier-cta.premium-cta {
    background: var(--black);
    border-color: var(--black);
}

.tier-cta.premium-cta:hover {
    background: var(--white);
    color: var(--black);
}

/* Addon Section */
.addon-section {
    max-width: 1000px;
    margin: 80px auto 0;
    text-align: center;
}

.addon-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.addon-section > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.7;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.addon-card {
    background: var(--white);
    border: 3px solid var(--white);
    border-radius: 0;
    padding: 48px 36px;
    position: relative;
    transition: all 0.2s ease;
    text-align: left;
}

.addon-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.3);
}

.addon-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--black);
    line-height: 1.2;
}

.addon-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.addon-price span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--medium-gray);
}

.addon-price .starting-at {
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--medium-gray);
    margin-bottom: 4px;
}

.addon-card ul {
    list-style: none;
    margin-bottom: 36px;
}

.addon-card li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

.addon-card li:last-child {
    border-bottom: none;
}

/* Retainer Section */
.retainer-section {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.retainer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.retainer-section > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.7;
}

.retainer-card {
    background: var(--white);
    border: 4px solid var(--accent-red);
    border-radius: 0;
    padding: 48px;
    box-shadow: none;
    position: relative;
}

.retainer-price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.retainer-price span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--medium-gray);
}

.retainer-card ul {
    list-style: none;
    margin-bottom: 36px;
    text-align: left;
}

.retainer-card li {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

.retainer-card li:last-child {
    border-bottom: none;
}

/* Waitlist Section */
.waitlist-section {
    padding: 100px 20px;
    background: var(--white);
    border-bottom: 3px solid var(--black);
}

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

.waitlist-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.waitlist-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.beehiiv-form-wrapper {
    display: flex;
    justify-content: center;
}

.beehiiv-form-wrapper iframe {
    width: 100%;
    max-width: 572px;
    height: 315px;
    border: none;
}

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

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

    .beehiiv-form-wrapper iframe {
        height: 340px;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 100px 20px;
    background: var(--light-gray);
    border-bottom: 3px solid var(--black);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 0;
    box-shadow: none;
    border: 3px solid var(--black);
}

.comparison-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 32px;
    text-align: center;
    color: var(--black);
}

.comparison-list {
    list-style: none;
    margin-bottom: 32px;
}

.comparison-list li {
    padding: 14px 0;
    font-size: 1rem;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

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

.total-cost {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-red);
    padding: 20px;
    background: var(--off-white);
    border-radius: 0;
    border: 2px solid var(--black);
}

.total-cost.savings {
    color: var(--black);
    background: var(--off-white);
    border-color: var(--black);
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 20px;
    background: var(--accent-red);
    color: var(--white);
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--black);
}

.final-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.final-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 60px 20px;
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 48px;
    border-radius: 0;
    max-width: 600px;
    position: relative;
    animation: scaleIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    border: 4px solid var(--black);
    box-shadow: none;
}

.close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.close:hover {
    color: var(--accent-red);
}

#modalTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--black);
    letter-spacing: -0.02em;
}

#modalDescription {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 36px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 3px solid var(--black);
    border-radius: 0;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--black);
    font-family: 'IBM Plex Sans', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: none;
}

/* Stripe Info Section */
.stripe-info {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 0;
    text-align: center;
    margin-bottom: 24px;
    border: 3px solid var(--black);
}

.stripe-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.lock-icon {
    font-size: 1.25rem;
}

.stripe-note {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: 0;
}

.error-message {
    color: var(--accent-red);
    font-size: 0.875rem;
    text-align: center;
    margin-top: 16px;
    font-weight: 600;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-button.loading {
    position: relative;
    color: transparent;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.small-text {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.submit-button {
    width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--accent-red);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-hard);
}

.submit-button:hover {
    background: var(--accent-red-dark);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 1);
}

/* Waitlist Confirmation */
.confirmation-content {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 3px solid var(--black);
}

.confirmation-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--black);
}

.confirmation-content p {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.confirmation-content p strong {
    color: var(--black);
}

.confirmation-content .tier-cta {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1.125rem;
    }

    .cta-button.secondary-hero {
        display: block;
        margin-left: 0;
        margin-top: 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .email-capture-title {
        font-size: 1.75rem;
    }

    .email-capture-subtitle {
        font-size: 1rem;
    }

    .email-capture-form {
        flex-direction: column;
        gap: 12px;
    }

    .email-submit-button {
        width: 100%;
    }

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

    .problem-video-title {
        font-size: 1.5rem;
    }

    .credibility-statement {
        font-size: 1.25rem;
    }

    .social-proof {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .logo-grid {
        gap: 32px;
    }

    .client-logo {
        height: 60px;
    }

    .scarcity-note {
        font-size: 0.875rem;
        padding: 14px 20px;
    }

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

    .timeline::before {
        left: 20px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .timeline-item {
        gap: 20px;
    }

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

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

    .final-cta-section h2 {
        font-size: 1.75rem;
    }

    .final-cta-section p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px 60px;
    }

    .headline {
        font-size: 1.5rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 30px;
    }

    .cta-button.large {
        font-size: 1.125rem;
        padding: 16px 35px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .tier-name {
        font-size: 1.5rem;
    }

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