/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Premium & Modern */
    --color-black: #080808;
    --color-dark: #121212;
    --color-darker: #0d0d0d;
    --color-orange: #ff6b35;
    --color-orange-glow: rgba(255, 107, 53, 0.5);
    --color-yellow: #ffb703;
    --color-yellow-glow: rgba(255, 183, 3, 0.4);
    --color-white: #ffffff;
    --color-gray: #a0a0a0;
    --color-gray-light: #e0e0e0;
    --color-text: #f0f0f0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;

    /* Effects */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   BACKGROUND DECORATION
   =================================== */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-orange-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: float-glow 20s infinite alternate ease-in-out;
}

.bg-glow-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--color-orange-glow) 0%, transparent 70%);
}

.bg-glow-2 {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--color-yellow-glow) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float-glow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 2rem 0 4rem;
    /* Reduced padding for mobile optimization */
    position: relative;
    min-height: auto;
    /* Allow content to dictate height on small screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at center 30%, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
}

.hero-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Reduced to prevent wrapping */
    margin-bottom: 1rem;
    /* Reduced space */
    padding: 0.6rem 1.4rem;
    /* Reduced padding */
    background: rgba(255, 107, 53, 0.05);
    border-radius: 100px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    line-height: 1.4;
    max-width: 90%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.8rem);
    /* Massive Impact */
    font-weight: 800;
    /* Bold */
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 5;
}

.hero-title .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    font-weight: 700;
    font-style: italic;
    /* Distinctive premium touch */
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
    /* Glow effect */
    padding: 0 0.1em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-gray);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    font-weight: 300;
    line-height: 1.6;
}

/* New Problem Awareness Box */
.problem-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    /* Reduced space */
}

.problem-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: 16px;
    padding: 1.2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(8px);
    max-width: 650px;
    text-align: center;
    transition: var(--transition);
}

.problem-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.problem-line {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.problem-highlight {
    color: var(--color-orange);
    /* Highlighted "brand deals" etc */
    font-weight: 600;
    font-style: italic;
}

.problem-separator {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Big Hero Subtitle (The Solution Value) */
.hero-subtitle.big-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Value Proposition */
.value-box {
    background: rgba(15, 15, 15, 0.7);
    /* Deep dark glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Sophisticated border */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Top highlight */
    border-left: none;
    /* Remove old accent */
    border-radius: 30px;
    padding: 3.5rem 4rem;
    max-width: 950px;
    /* Wider presence */
    margin: 0 auto var(--spacing-xl);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.9),
        /* Deep shadow */
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Inner light */
    position: relative;
    overflow: hidden;
}

/* Subtle spotlight glow */
.value-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Removed the heavy left bar pseudo-element in favor of border-left */
.value-box::before {
    display: none;
}

.value-box p {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    /* Larger, more confident text */
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

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

.value-box strong {
    color: var(--color-white);
    font-weight: 700;
}

.highlight-text {
    color: var(--color-yellow);
}

.ccc-framework {
    color: var(--color-orange);
    font-weight: 800;
    letter-spacing: 1px;
}

/* Benefits List */
.benefits {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    /* Changed from grid to flex for better flow */
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.8rem;
    /* larger pill */
    background: rgba(255, 255, 255, 0.02);
    border-radius: 100px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    letter-spacing: 0.3px;
    backdrop-filter: blur(5px);
}

.benefit-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(255, 107, 53, 0.2);
    color: var(--color-white);
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-orange);
    flex-shrink: 0;
}

/* ===================================
   VIDEO SECTION
   =================================== */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

/* Mockup thumbnail styling */
.video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.video-placeholder>* {
    position: relative;
    z-index: 2;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.6);
}

.play-icon {
    width: 35px;
    height: 35px;
    color: white;
    margin-left: 5px;
}

.video-placeholder p {
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-subtitle {
    font-size: 1rem !important;
    color: var(--color-gray-light) !important;
    font-weight: 400 !important;
    margin-top: -1rem;
}

/* ===================================
   TESTIMONIAL INTERVIEW
   =================================== */
.testimonial-interview {
    padding: var(--spacing-xl) 0;
    background: var(--color-darker);
}

/* ===================================
   PHOTO & ABOUT SECTION
   =================================== */
.photo-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-darker);
    position: relative;
}

.photo-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.photo-image-container {
    position: relative;
}

.photo-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-image:hover img {
    transform: scale(1.05);
}

.photo-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.5;
}

.photo-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.photo-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
}

.signature {
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    display: inline-block;
    padding-top: 1rem;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-orange);
    font-weight: 700;
}

/* ===================================
   SOCIAL PROOF
   =================================== */
.social-proof {
    padding: var(--spacing-xl) 0;
    background: var(--color-black);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.proof-card {
    background: rgba(255, 255, 255, 0.08);
    /* Increased opacity for better visibility */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* More visible border */
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.proof-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.proof-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    /* Slightly larger */
    font-weight: 800;
    color: var(--color-orange);
    /* Solid color for maximum contrast */
    background: none;
    /* Removed gradient for better readability on all screens */
    -webkit-text-fill-color: var(--color-orange);
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    /* Add subtle glow */
}

.proof-text {
    font-size: 1.25rem;
    /* Larger text */
    color: var(--color-white);
    /* Pure white for max contrast */
    font-weight: 500;
    /* Bolder */
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-darker), var(--color-black));
    text-align: center;
    position: relative;
}

.cta-content {
    background: var(--gradient-glass);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-benefit {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-benefit:nth-child(1) {
    color: var(--color-orange);
}

.cta-benefit:nth-child(2) {
    color: var(--color-yellow);
}

.cta-benefit:nth-child(3) {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-primary);
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 1.2rem 3.5rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 100%;
    /* Prevent overflow */
    text-align: center;
    /* Center text if it wraps */
    justify-content: center;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(8px);
}

/* ===================================
   CONSULTATION DETAILS
   =================================== */
.consultation-details {
    padding: var(--spacing-xl) 0;
    background: var(--color-black);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    /* Reduced margin */
}

.section-subtitle {
    text-align: center;
    color: var(--color-white);
    /* Pure white for max visibility */
    font-size: 1.25rem;
    /* Larger font */
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.detail-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.detail-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-orange);
    font-weight: 800;
    opacity: 0.3;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.detail-item h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 80%;
}

.detail-description {
    color: var(--color-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-darker);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--gradient-glass);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-dark);
    border: 2px solid var(--color-orange);
    overflow: hidden;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--color-orange);
    font-weight: 600;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-black);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.about-photo {
    position: sticky;
    top: 2rem;
}

.photo-placeholder-box {
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}

.photo-placeholder-box:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.5);
}

.photo-placeholder-box svg {
    width: 80px;
    height: 80px;
    color: var(--color-gray);
    opacity: 0.4;
}

.photo-placeholder-box p {
    color: var(--color-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.about-content {
    max-width: 100%;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--color-yellow);
    margin-bottom: 3rem;
    font-weight: 600;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--color-gray-light);
}

.dependency-list {
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--color-orange);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.dependency-list p {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
    color: var(--color-white);
}

.dependency-list p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-yellow);
    font-weight: 800;
}

.mission-statement {
    font-size: 1.4rem;
    color: #fff;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 183, 3, 0.1));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 183, 3, 0.2);
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 4rem 0;
    background: var(--color-darker);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: var(--color-gray);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .photo-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .photo-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .photo-text {
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-photo {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-2xl: 5rem;
    }

    .cta-benefits {
        gap: 1rem;
    }

    .cta-benefit {
        font-size: 1.2rem;
    }

    .proof-number {
        font-size: 3rem;
    }
}

/* Mobile specific fixes */
@media (max-width: 480px) {
    .cta-button {
        padding: 1rem 1.5rem !important;
        /* Smaller padding */
        font-size: 0.95rem !important;
        /* Smaller font */
        width: 100%;
        /* Full width */
        flex-direction: column;
        /* Stack if needed */
        gap: 0.8rem;
        border-radius: 50px;
        white-space: normal;
        /* Allow text wrapping */
        height: auto;
        text-align: center;
    }

    .cta-title,
    .section-title {
        font-size: 2rem !important;
        /* Smaller titles */
        line-height: 1.2;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .proof-number {
        font-size: 3.5rem !important;
    }

    .container {
        padding: 0 1.2rem;
        /* Ensure side spacing */
    }

    .video-placeholder p {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        width: 24px;
        height: 24px;
    }
}

::selection {
    background: var(--color-orange);
    color: white;
}

/* Animation utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MODAL STYLES
   =================================== */
.cal-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.cal-modal-content {
    background-color: var(--color-darker);
    margin: auto;
    padding: 20px;
    border: 1px solid var(--color-orange);
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

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

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

.close-modal {
    color: var(--color-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-orange);
    text-decoration: none;
    cursor: pointer;
}

/* ===================================
   CELEBRITY CAROUSEL SECTION
   =================================== */
.celeb-carousel-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-darker) 50%, var(--color-black) 100%);
    overflow: hidden;
    position: relative;
}

.celeb-carousel-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 var(--spacing-md);
}

.celeb-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.5rem 1.4rem;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 100px;
    margin-bottom: 1rem;
}

.celeb-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.celeb-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Outer wrapper — clips the track and holds the fade overlays */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Left & Right fade-out edges */
.carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--color-black), transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--color-black), transparent);
}

/* Scrollable container */
.carousel-track-container {
    width: 100%;
    overflow: hidden;
}

/* The moving strip of cards */
.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: carousel-scroll 35s linear infinite;
    will-change: transform;
    padding: 1rem 0 2rem;
}

/* Pause on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Keyframe — slides the entire row left by exactly half (the original set) */
@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Individual photo card */
.celeb-card {
    position: relative;
    width: 280px;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.45s ease;
    background: var(--color-dark);
}

.celeb-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.celeb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.celeb-card:hover img {
    transform: scale(1.08);
}

/* Dark gradient overlay at bottom of each card */
.celeb-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    transform: translateY(5px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.celeb-card:hover .celeb-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.celeb-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.3px;
}

/* Responsive — narrower cards on small screens */
@media (max-width: 768px) {
    .celeb-card {
        width: 220px;
        height: 270px;
    }

    .carousel-fade {
        width: 60px;
    }

    .celeb-title {
        font-size: 1.8rem;
    }
}

/* ===================================
   SCROLL REVEAL SYSTEM
   =================================== */

/* Default hidden state — every .reveal section starts invisible */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When the IntersectionObserver fires, .active is added */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Carousel-specific reveal ──────────────────────────────── */

/* Header block slides up with a slight extra delay */
.celeb-carousel-section.reveal .celeb-carousel-header {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.celeb-carousel-section.active .celeb-carousel-header {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel wrapper fades in after header */
.celeb-carousel-section.reveal .carousel-wrapper {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.celeb-carousel-section.active .carousel-wrapper {
    opacity: 1;
    transform: translateY(0);
}

/* Cards stagger in — each card fades + rises individually */
.celeb-card {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.45s ease;
}

/* When section is active, cards become visible */
.celeb-carousel-section.active .celeb-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger each card — first 12 cards get individual delays */
.celeb-carousel-section.active .celeb-card:nth-child(1) {
    transition-delay: 0.30s;
}

.celeb-carousel-section.active .celeb-card:nth-child(2) {
    transition-delay: 0.38s;
}

.celeb-carousel-section.active .celeb-card:nth-child(3) {
    transition-delay: 0.46s;
}

.celeb-carousel-section.active .celeb-card:nth-child(4) {
    transition-delay: 0.54s;
}

.celeb-carousel-section.active .celeb-card:nth-child(5) {
    transition-delay: 0.62s;
}

.celeb-carousel-section.active .celeb-card:nth-child(6) {
    transition-delay: 0.70s;
}

.celeb-carousel-section.active .celeb-card:nth-child(7) {
    transition-delay: 0.78s;
}

.celeb-carousel-section.active .celeb-card:nth-child(8) {
    transition-delay: 0.86s;
}

.celeb-carousel-section.active .celeb-card:nth-child(9) {
    transition-delay: 0.94s;
}

.celeb-carousel-section.active .celeb-card:nth-child(10) {
    transition-delay: 1.00s;
}

.celeb-carousel-section.active .celeb-card:nth-child(11) {
    transition-delay: 1.05s;
}

.celeb-carousel-section.active .celeb-card:nth-child(12) {
    transition-delay: 1.10s;
}

/* Auto-scroll STARTS only after cards have appeared (1.3s delay) */
.carousel-track {
    animation: carousel-scroll 35s linear 1.4s infinite;
    animation-play-state: paused;
    /* paused by default */
}

/* Run scroll only once the parent section is active */
.celeb-carousel-section.active .carousel-track {
    animation-play-state: running;
}

/* Still pause on hover */
.celeb-carousel-section.active .carousel-track:hover {
    animation-play-state: paused;
}

/* ── Other sections reveal with staggered children ─────────── */
.proof-card,
.detail-item,
.testimonial-card,
.benefit-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.reveal.active .proof-card,
.reveal.active .detail-item,
.reveal.active .testimonial-card,
.reveal.active .benefit-item {
    opacity: 1;
    transform: translateY(0);
}