/* ===================================
   FIVE K PROOF PAGE - DARK THEME
   Netflix-style, Professional, Clean
   =================================== */

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

:root {
    /* Brand Colors */
    --brand-pink: #CC0B78;
    --brand-orange: #FD5026;
    
    /* Dark Theme Colors */
    --bg-primary: #0A0E27;
    --bg-secondary: #12172E;
    --bg-card: #1A1F3A;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8BFCC;
    --text-muted: #6B7280;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   HEADER & LOGO
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    z-index: 100;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: opacity var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    width: 80px;
    height: auto;
    display: block;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-xs);
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.phone-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.phone-number {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.phone-number:hover {
    color: var(--brand-pink);
}

.header-cta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
    font-weight: 500;
}

.header-cta:hover {
    color: var(--brand-pink);
}

/* ===================================
   CONTAINER
   =================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-md);
    /* Optimized top padding: header height (80px) + comfortable spacing */
    padding-top: calc(80px + var(--spacing-xl)); /* 80px header + 48px spacing = 128px */
}

@media (max-width: 767px) {
    .container {
        padding: var(--spacing-xl) var(--spacing-md);
        /* Reduced top padding on mobile for better space utilization */
        padding-top: calc(70px + var(--spacing-lg)); /* 70px header + 32px spacing = 102px */
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    /* Optimized spacing for visual hierarchy */
    padding-top: var(--spacing-md);
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    /* Improved line-height for better readability (1.2 was too tight for long headlines) */
    line-height: 1.3;
    /* Increased spacing below title for better visual separation */
    margin-bottom: var(--spacing-md);
    margin-top: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Letter spacing for improved readability on large screens */
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 400;
    /* Optimized line-height for subtitle readability */
    line-height: 1.6;
    /* Balanced spacing: more space below subtitle, less above (visual hierarchy) */
    margin-bottom: var(--spacing-xl);
    margin-top: 0;
    /* Slight letter spacing for clarity */
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .hero {
        padding-top: var(--spacing-sm);
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-title {
        line-height: 1.25;
        margin-bottom: var(--spacing-sm);
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        line-height: 1.5;
        margin-bottom: var(--spacing-lg);
    }
}

.hero-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-orange) 100%);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(204, 11, 120, 0.3);
    /* Optimized spacing: balanced top margin for visual separation */
    margin-top: var(--spacing-md);
    margin-bottom: 0;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 11, 120, 0.5);
}

.hero-cta-button:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .hero-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }
}

/* ===================================
   FEATURED VIDEO SECTION
   =================================== */

.featured-video-section {
    margin-bottom: var(--spacing-3xl);
    padding-top: var(--spacing-md);
}

.featured-video-container {
    margin-bottom: var(--spacing-3xl);
}

.featured-video-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--brand-pink);
    box-shadow: 0 0 40px rgba(204, 11, 120, 0.5),
                0 0 80px rgba(253, 80, 38, 0.3);
    max-width: 75%;
    margin: 0 auto;
}

/* Full width on mobile */
@media (max-width: 768px) {
    .featured-video-card {
        max-width: 100%;
    }
}

.featured-video-header {
    padding: 1.25rem 1.5rem 1.25rem;
    text-align: center;
}

.featured-intro-line {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.featured-video-name {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.featured-video-company {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.featured-video-results {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--brand-orange);
    font-weight: 600;
    margin-bottom: 0.95rem;
    line-height: 1.4;
}

.featured-video-quote-inline {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    color: var(--text-primary);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 1.25rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(204, 11, 120, 0.1) 0%, rgba(253, 80, 38, 0.1) 100%);
    border-left: 3px solid var(--brand-pink);
    border-radius: 0 6px 6px 0;
    position: relative;
}

.featured-video-quote-inline::before {
    content: '"';
    position: absolute;
    top: -6px;
    left: 8px;
    font-size: 2.5rem;
    color: var(--brand-pink);
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
}



.featured-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.featured-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================
   OTHER VIDEOS SECTION
   =================================== */

.other-videos-section {
    margin-top: var(--spacing-3xl);
}

.other-videos-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.other-videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 480px) {
    .other-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.other-video-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
}

.other-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(204, 11, 120, 0.4),
                0 0 0 1px rgba(204, 11, 120, 0.2);
    border-color: rgba(204, 11, 120, 0.4);
}

.other-video-card:active {
    transform: translateY(-2px);
}

.other-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.other-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevent accidental clicks on thumbnails */
}

.other-video-info {
    padding: var(--spacing-md);
}

.other-video-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.other-video-company {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.other-video-results {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.other-video-quote {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(204, 11, 120, 0.08) 0%, rgba(253, 80, 38, 0.08) 100%);
    border-left: 2px solid var(--brand-pink);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.other-video-quote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 6px;
    font-size: 2rem;
    color: var(--brand-pink);
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ===================================
   DEFAULT VIDEO GRID
   =================================== */

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Highlight effect for URL parameter */
.video-card.highlighted {
    border: 2px solid var(--brand-pink);
    box-shadow: 0 0 30px rgba(204, 11, 120, 0.4),
                0 0 60px rgba(253, 80, 38, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(204, 11, 120, 0.4),
                    0 0 60px rgba(253, 80, 38, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(204, 11, 120, 0.6),
                    0 0 80px rgba(253, 80, 38, 0.3);
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    cursor: default; /* Video plays inline, doesn't navigate */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    position: relative;
}

/* Only make clickable on main hub page (not on individual pages) */
.video-grid .video-info {
    cursor: pointer;
}

.video-grid .video-info:hover {
    background: rgba(204, 11, 120, 0.05);
    border-top: 1px solid rgba(204, 11, 120, 0.2);
}

.video-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.video-company {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.video-results {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.video-quote {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(204, 11, 120, 0.08) 0%, rgba(253, 80, 38, 0.08) 100%);
    border-left: 3px solid var(--brand-pink);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.video-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 8px;
    font-size: 3rem;
    color: var(--brand-pink);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.video-quote-link {
    display: block;
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--brand-pink);
    text-decoration: none;
    font-weight: 600;
    font-style: normal;
    transition: color var(--transition), transform var(--transition);
    padding-left: var(--spacing-md);
}

.video-quote-link:hover {
    color: var(--brand-orange);
    transform: translateX(4px);
}

.video-quote-link::after {
    content: ' →';
    display: inline-block;
    transition: transform var(--transition);
    margin-left: 2px;
}

.video-quote-link:hover::after {
    transform: translateX(2px);
}

/* ===================================
   BOTTOM SECTION
   =================================== */

.bottom-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-2xl) 0;
}

.bottom-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-orange) 100%);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(204, 11, 120, 0.3);
    margin-bottom: var(--spacing-lg);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 11, 120, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.bottom-link {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.main-site-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.main-site-link:hover {
    color: var(--brand-pink);
}

/* ===================================
   MODAL / POPUP FORM
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(10, 14, 39, 0.95) 100%);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(12px) saturate(180%);
    }
}

.modal-content {
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.98) 0%, rgba(18, 23, 46, 0.98) 100%);
    padding: 0;
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 80px rgba(204, 11, 120, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-pink) 0%, var(--brand-orange) 100%);
    opacity: 0.8;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* ===================================
   MODAL TWO-COLUMN LAYOUT
   =================================== */

.modal-layout {
    display: flex;
    min-height: 550px;
    max-height: 650px;
    overflow: hidden;
}

.modal-left {
    flex: 0 0 58%;
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-headline {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 var(--spacing-md) 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: left;
}

.modal-subhead {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
    flex: 1;
}

.modal-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.modal-benefits li:last-child {
    margin-bottom: 0;
}

.checkmark {
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
    line-height: 1.4;
}

.modal-benefits li span:not(.checkmark) {
    flex: 1;
    padding-top: 2px;
}

.modal-social-proof {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
    text-align: left;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-separator {
    flex: 0 0 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
    margin: var(--spacing-xl) 0;
}

.modal-right {
    flex: 0 0 42%;
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.contact-form input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: rgba(18, 23, 46, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-family);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.contact-form input:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(18, 23, 46, 0.8);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--brand-pink);
    background: rgba(18, 23, 46, 0.9);
    box-shadow: 
        0 0 0 4px rgba(204, 11, 120, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.contact-form input:focus::placeholder {
    opacity: 0.5;
}

.contact-form input:invalid:not(:placeholder-shown) {
    border-color: rgba(253, 80, 38, 0.5);
}

.contact-form input:valid:not(:placeholder-shown) {
    border-color: rgba(204, 11, 120, 0.3);
}

.form-submit {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-orange) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(204, 11, 120, 0.3),
        0 0 0 0 rgba(204, 11, 120, 0.5);
    letter-spacing: 0.01em;
    width: 100%;
}

.form-reinforcement {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin: var(--spacing-sm) 0 0.25rem 0;
    line-height: 1.4;
}

.form-reinforcement-secondary {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(204, 11, 120, 0.5),
        0 0 0 0 rgba(204, 11, 120, 0.7);
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px rgba(204, 11, 120, 0.4),
        0 0 0 0 rgba(204, 11, 120, 0.5);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.form-submit:disabled:hover {
    transform: none;
    box-shadow: 
        0 4px 20px rgba(204, 11, 120, 0.3),
        0 0 0 0 rgba(204, 11, 120, 0.5);
}

.thank-you-message {
    display: none;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-2xl);
    animation: fadeInScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.thank-you-message.active {
    display: block;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-message h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-message {
    display: none;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-xl);
    margin-top: var(--spacing-md);
    background: rgba(253, 80, 38, 0.1);
    border: 1px solid rgba(253, 80, 38, 0.3);
    border-radius: 12px;
    animation: fadeInScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-message.active {
    display: block;
}

.error-message p {
    font-size: 0.9375rem;
    color: var(--brand-orange);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile optimizations for modal - Two-column layout stacks vertically */
@media (max-width: 767px) {
    .modal {
        padding: var(--spacing-sm);
        align-items: flex-start;
        padding-top: var(--spacing-lg);
    }
    
    .modal-content {
        max-width: 100%;
        border-radius: 20px;
        margin: 0;
        /* Single scroll container - 85-90% of viewport height */
        max-height: 90vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .modal-layout {
        flex-direction: column;
        min-height: auto;
        max-height: none;
        overflow: visible; /* Remove any overflow restrictions */
    }
    
    .modal-left {
        flex: 0 0 auto; /* Don't force height, let content determine */
        padding: var(--spacing-xl) var(--spacing-lg);
        order: 1;
        /* CRITICAL: Remove nested scrolling on mobile */
        overflow: visible;
        overflow-y: visible;
        overflow-x: visible;
        height: auto;
        max-height: none;
        /* Remove space-between on mobile for natural flow */
        justify-content: flex-start;
    }
    
    .modal-headline {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .modal-subhead {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.5;
    }
    
    .modal-benefits {
        margin-bottom: var(--spacing-md);
        flex: 0 0 auto; /* Don't force flex growth */
    }
    
    .modal-benefits li {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.4;
    }
    
    .checkmark {
        font-size: 1rem;
        margin-right: var(--spacing-xs);
    }
    
    .modal-social-proof {
        font-size: 0.8125rem;
        padding-top: var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }
    
    .modal-separator {
        display: none;
    }
    
    .modal-right {
        flex: 0 0 auto; /* Don't force height, let content determine */
        padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
        order: 2;
        /* CRITICAL: Remove nested scrolling on mobile */
        overflow: visible;
        overflow-y: visible;
        overflow-x: visible;
        height: auto;
        max-height: none;
    }
    
    .contact-form {
        gap: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .contact-form input {
        padding: 0.9375rem 1.125rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }
    
    .form-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: var(--spacing-xs);
        border-radius: 10px;
    }
    
    .form-reinforcement,
    .form-reinforcement-secondary {
        font-size: 0.75rem;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 1.375rem;
    }
    
    .thank-you-message {
        padding: var(--spacing-2xl) var(--spacing-xl);
    }
}

/* Tablet optimizations - Keep two-column but adjust width */
@media (min-width: 768px) and (max-width: 1023px) {
    .modal-content {
        max-width: 900px;
    }
    
    .modal-left {
        flex: 0 0 55%;
    }
    
    .modal-right {
        flex: 0 0 45%;
    }
}

/* Focus visible for accessibility */
.contact-form input:focus-visible,
.form-submit:focus-visible,
.modal-close:focus-visible {
    outline: 2px solid var(--brand-pink);
    outline-offset: 2px;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */

@media (max-width: 767px) {
    /* Show simplified header on mobile */
    .header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
    }
    
    /* Hide the text CTA on mobile, keep phone only */
    .header-cta {
        display: none;
    }
    
    /* Optimize phone display for mobile */
    .header-phone {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.125rem;
    }
    
    .phone-label {
        font-size: 0.625rem;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        opacity: 0.8;
    }
    
    .phone-number {
        font-size: 0.875rem;
        font-weight: 700;
        padding: 0.25rem 0.5rem;
        background: linear-gradient(135deg, rgba(204, 11, 120, 0.15) 0%, rgba(253, 80, 38, 0.15) 100%);
        border-radius: 6px;
        transition: all var(--transition);
    }
    
    .phone-number:hover,
    .phone-number:active {
        background: linear-gradient(135deg, rgba(204, 11, 120, 0.25) 0%, rgba(253, 80, 38, 0.25) 100%);
        transform: scale(1.02);
    }
    
    /* Adjust logo size on mobile */
    .logo {
        width: 60px;
    }
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (min-width: 768px) {
    .container {
        padding: var(--spacing-3xl) var(--spacing-xl);
        padding-top: calc(80px + var(--spacing-3xl));
    }

    .logo {
        width: 100px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-2xl);
    }

    .other-videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */

@media (min-width: 1024px) {
    .header {
        padding: var(--spacing-lg) var(--spacing-2xl);
    }

    .video-grid {
        gap: var(--spacing-xl);
    }
}

/* ===================================
   STICKY FLOATING CTA BUTTON
   =================================== */

.sticky-cta {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 999;
    
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-orange) 100%);
    border: none;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    
    box-shadow: 0 4px 20px rgba(204, 11, 120, 0.4),
                0 8px 40px rgba(253, 80, 38, 0.2);
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Initial state - visible by default */
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sticky-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(204, 11, 120, 0.6),
                0 12px 50px rgba(253, 80, 38, 0.3);
}

.sticky-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.sticky-cta-text {
    font-family: var(--font-family);
    white-space: nowrap;
}

.sticky-cta-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.sticky-cta:hover .sticky-cta-arrow {
    transform: translateX(4px);
}

/* Hide when scrolling near bottom CTA to avoid overlap */
.sticky-cta.hidden-for-bottom {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .sticky-cta {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .sticky-cta-text {
        max-width: 150px;
        white-space: normal;
        line-height: 1.2;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .sticky-cta {
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
    }
}

/* For users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: opacity 0.15s ease;
    }
    
    .sticky-cta:hover {
        transform: none;
    }
}

/* ===================================
   LEGAL FOOTER
   =================================== */

.legal-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-3xl);
    text-align: center;
}

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

.legal-disclosure {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.legal-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.legal-separator {
    color: var(--text-muted);
    margin: 0 var(--spacing-xs);
}

.legal-copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
}

@media (max-width: 767px) {
    .legal-footer {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .legal-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .legal-separator {
        display: none;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

