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

:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #1a1a1a;
    --purple-color: #7C3AED;
    --purple-dark: #6D28D9;
    --heading-color: #ffffff;
    --text-light: #cccccc;
    --text-medium: #aaaaaa;
    --text-dark: #e0e0e0;
    --bg-light: #000000;
    --bg-card: #000000;
    --bg-charcoal: #000000;
    --border-color: #333333;
    --border-dark: #444444;
    --shadow-light: rgba(255, 255, 255, 0.05);
    --shadow-medium: rgba(255, 255, 255, 0.1);
    --shadow-dark: rgba(255, 255, 255, 0.15);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;
}

/* Prevent iOS zoom on input focus — font-size must be >= 16px */
@media (max-width: 768px) {
    input, select, textarea, button {
        font-size: 16px;
    }
}

/* Respect reduced motion preference */
@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;
    }
}

/* Better touch targets and tap feedback */
a, button, .nav-link, .cta-button, .option-button, .calendar-day, .time-slot {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

/* Navigation/Banner - Fixed at top while scrolling */
nav.navbar {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: none;
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: none;
    overflow: visible;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: visible;
    height: 50px;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.logo-phantom {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.logo-line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0.1rem 0;
    display: block;
}

.logo-funnelz {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.1rem;
}

.logo-icon {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Dropdown menu - compact panel from right */
.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid rgba(124, 58, 237, 0.2);
    padding: 120px 0 calc(2rem + env(safe-area-inset-bottom));
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 320px;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 60px rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    border-radius: 0 0 0 16px;
}

.nav-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 1.3rem 2.5rem;
    display: block;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: translateX(0);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    background: var(--purple-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #fff;
    transform: scale(1.08);
    letter-spacing: 6px;
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Stagger animation for menu items */
.nav-menu.active .nav-link:nth-child(1) { animation: slideInDown 0.5s 0.15s both; }
.nav-menu.active .nav-link:nth-child(2) { animation: slideInDown 0.5s 0.25s both; }
.nav-menu.active .nav-link:nth-child(3) { animation: slideInDown 0.5s 0.35s both; }
.nav-menu.active .nav-link:nth-child(4) { animation: slideInDown 0.5s 0.45s both; }
.nav-menu.active .nav-link:nth-child(5) { animation: slideInDown 0.5s 0.55s both; }
.nav-menu.active .nav-link:nth-child(6) { animation: slideInDown 0.5s 0.65s both; }

.nav-link-purple {
    color: var(--purple-color);
}

.nav-link-purple:hover {
    color: #fff;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hamburger menu - left corner, 99% bigger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 12px;
    padding: 24px;
    z-index: 1002;
    flex-shrink: 0;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    margin-right: 0;
    position: fixed;
    right: 24px;
    top: 24px;
}

.nav-toggle:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: scale(1.1);
}

.nav-toggle:active {
    transform: scale(0.9);
}

.nav-toggle span {
    width: 56px;
    height: 5px;
    background-color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    transform-origin: center;
}

.nav-toggle.active {
    transform: rotate(180deg);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(12px, 12px);
    background-color: var(--purple-color);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(12px, -12px);
    background-color: var(--purple-color);
}

/* Hero CTA Section - positioned below hero */
.hero-cta-section {
    padding: 40px 0 60px;
    text-align: center;
    background-color: var(--bg-light);
}

/* VSL Video Section */
.vsl-section {
    padding: 0 0 60px;
    text-align: center;
    background-color: var(--bg-light);
}

/* Hero Section - White headline */
.hero {
    padding: 163px 0 40px;
    text-align: center;
    background-color: var(--bg-light);
}

/* Headline should be complete white letters - no gradient */
.hero-headline {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

/* Subheadline can stay gray */
.hero-subheadline {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-dark);
    background: var(--bg-charcoal);
    border-color: var(--bg-charcoal);
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Purple background buttons - for hero and services */
.cta-button.purple {
    background: var(--purple-color);
    color: var(--secondary-color);
    border-color: var(--purple-color);
}

.cta-button.purple:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Outline button for Benefits section */
.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cta-button.large {
    padding: 0.55rem 1.3rem;
    font-size: 0.55rem;
}

.video-container {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-container video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: #000000;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Trust/Logos Section */
.trust-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trust-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.client-logos {
    overflow: hidden;
    margin-bottom: 4rem;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.client-logos::before,
.client-logos::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.client-logos::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.client-logos::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.logo-scroll-container {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
    will-change: transform;
}

.logo-item {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    padding: 0 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.6;
    min-width: 130px;
}

.logo-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-item:hover {
    opacity: 1;
}

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

/* Metrics - 4 boxes side by side, numbers purple, text white */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-color);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

/* Numbers should be purple */
.metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--purple-color);
    margin-bottom: 0.5rem;
}

/* Text below should be white */
.metric-label {
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust highlight text */
.trust-highlight {
    text-align: center;
    margin-top: 2rem;
    color: #a0a0a0;
    font-size: 1rem;
    font-weight: 500;
}

/* Problem Section - 2 rows with 2 side by side */
.problem-section {
    padding: 100px 0;
    background: #000000;
}

/* Solution Section - Purple headings and purple outlines */
.solution-section {
    padding: 100px 0;
    background: #000000;
}

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

.problem-card {
    padding: 2.5rem;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #555555;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.card-text {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
}

/* Solution Section Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.solution-card {
    padding: 2.5rem;
    background: #000000;
    border: 2px solid var(--purple-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-dark);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--purple-color);
    text-align: center;
}

.solution-text {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Services heading should be purple */
.section-headline.purple-heading {
    color: var(--purple-color);
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    max-width: 486px;
    margin: 0 auto;
}

.service-card {
    padding: 1.35rem;
    background: #000000;
    border: 2px solid var(--purple-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-dark);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.service-card:hover .show-more {
    opacity: 1;
    transform: translateY(0);
}

.show-more {
    display: block;
    color: rgba(124, 58, 237, 0.7);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    padding-top: 1rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-title {
    font-size: 0.62rem;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0.65rem;
    color: #ffffff;
    text-align: center;
}

.service-subtitle-text {
    font-size: 1rem;
    font-weight: 500;
    color: #cccccc;
}

.service-list {
    list-style: none;
    margin-bottom: 0.54rem;
    flex-grow: 1;
}

.service-list li {
    padding: 0.22rem 0;
    color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.46rem;
    line-height: 1.6;
    text-align: center;
}

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

.service-note {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

/* Tech Launches Section */
.launch-section {
    padding: 100px 0;
    background: #000000;
}

.launch-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.launch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.launch-card {
    padding: 2.5rem;
    background: #000000;
    border: 2px solid var(--purple-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.launch-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-dark);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.launch-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.launch-text {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
}

/* Benefits/Outcome Section - No checkmarks, centered text, purple hover */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Purple background on hover */
.benefit-item:hover {
    background: var(--purple-color);
    border-color: var(--purple-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.benefit-item:hover .benefit-text {
    color: var(--secondary-color);
}

.benefit-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    transition: color 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #000000;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 374px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.testimonial-card:hover {
    background: rgba(30, 30, 30, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1rem;
    align-items: center;
}

.testimonial-info {
    padding: 1.5rem;
    text-align: center;
}

.testimonial-name {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-companies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.company-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cccccc;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.testimonial-video {
    width: 100%;
}

.testimonial-video video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.about-three-col {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-center {
    text-align: center;
    flex: 1;
    max-width: 550px;
}

.about-center .section-headline {
    margin-bottom: 0.5rem;
}

.about-center .about-subtitle {
    margin-bottom: 2rem;
}

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

.portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 252px;
}

.portrait img {
    width: 252px;
    height: 336px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.portrait-name {
    font-size: 0.7rem;
    color: #999999;
    font-weight: 500;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.portrait-role {
    font-size: 0.6rem;
    color: #777777;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.image-placeholder {
    aspect-ratio: 1;
    background: #000000;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.about-text {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subheadline {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #000000;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    filter: brightness(1.2);
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--purple-color);
}

.social-link-icon {
    color: var(--purple-color);
    transition: color 0.3s ease;
}

.social-link-icon:hover {
    color: var(--purple-dark);
}

/* Booking Page Styles */
.booking-container {
    padding: 100px 20px 20px;
    background: var(--bg-light);
}

.booking-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.booking-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.question-container {
    display: none;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.question-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.question-label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.question-input,
.question-select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.question-input:focus,
.question-select:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px var(--shadow-light);
}

.question-button {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.question-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-dark);
    background: var(--bg-charcoal);
    border-color: var(--bg-charcoal);
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.option-button {
    width: 100%;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.option-button:hover {
    border-color: var(--text-dark);
    background: var(--bg-light);
    transform: translateX(5px);
}

.option-button.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.result-message {
    text-align: center;
    padding: 3rem;
}

.result-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.result-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Calendar Embed Container */
.calendar-embed-container {
    margin-top: 2rem;
    width: 100%;
}

.calendar-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border: 2px solid var(--purple-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}

.calendar-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.calendar-placeholder-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000000;
    z-index: 1;
}

.calendar-loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--purple-color);
    border-radius: 50%;
    animation: calendar-spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes calendar-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.calendar-placeholder-text {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.calendar-placeholder-subtext {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 400px;
    text-align: center;
    line-height: 1.6;
}

/* Hide placeholder when iframe loads - add this class via JavaScript when calendar is ready */
.calendar-placeholder.loading-active .calendar-iframe {
    display: none;
}

.calendar-placeholder.loaded .calendar-placeholder-content {
    display: none;
}

.calendar-placeholder.loaded .calendar-iframe {
    display: block;
}

/* ============================================
   DESKTOP OVERRIDES (min-width: 1024px)
   Mobile is the reference design. These rules
   scale things UP for desktop/ultrawide without
   touching any mobile styles.
   ============================================ */
@media (min-width: 1024px) {

    /* === CONTAINER — Fill the viewport edge-to-edge === */
    .container {
        max-width: 100%;
        padding: 0 24px;
    }

    /* === NAVBAR — Prominent logo, clean nav === */
    .logo {
        height: 100px;
    }

    .logo-img {
        height: 120px;
    }

    .logo {
        height: 100px;
    }

    nav.navbar {
        padding: 2.5rem 0;
    }

    .footer-logo-img {
        height: 110px;
    }

    .nav-toggle {
        padding: 24px;
    }

    .nav-toggle span {
        width: 56px;
        height: 5px;
    }

    /* === HERO — Big, bold, Apple-like impact === */
    .hero {
        padding: 200px 0 40px;
    }

    .hero-headline {
        font-size: 3.6rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        letter-spacing: -0.03em;
        line-height: 1.1;
    }

    .hero-subheadline {
        font-size: 1.7rem;
        margin-bottom: 1.75rem;
        letter-spacing: 0.02em;
    }

    /* === VSL — Fill most of the container width === */
    .vsl-section {
        padding: 0 0 40px;
    }

    .video-container {
        max-width: 70%;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .video-container video {
        border-radius: 16px;
        border-width: 1px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    /* === CTA — Bigger, more inviting === */
    .hero-cta-section {
        padding: 20px 0 40px;
    }

    .cta-button.large {
        padding: 1.15rem 3rem;
        font-size: 1.1rem;
        border-radius: 10px;
        letter-spacing: 1.5px;
    }

    /* === TRUST — Constrain carousel to container width === */
    .trust-section {
        padding: 80px 0 100px;
    }

    .client-logos {
        width: 100%;
        margin-left: 0;
    }

    .trust-text {
        font-size: 1.15rem;
        letter-spacing: 4px;
        margin-bottom: 2.5rem;
    }

    .logo-item {
        font-size: 1.43rem;
        min-width: 230px;
        padding: 0 3rem;
    }

    .logo-item img {
        width: 54px;
        height: 54px;
    }

    /* === METRICS — Big bold numbers, premium cards === */
    .metrics-grid {
        gap: 2rem;
        max-width: 100%;
    }

    .metric-card {
        padding: 3.15rem 2rem;
        border-radius: 16px;
    }

    .metric-number {
        font-size: 3.5rem;
        letter-spacing: -0.02em;
    }

    .metric-label {
        font-size: 1.05rem;
        letter-spacing: 2px;
    }

    /* === SECTIONS — Generous, intentional spacing === */
    .section-headline {
        font-size: 3.35rem;
        margin-bottom: 4rem;
        letter-spacing: -0.02em;
    }

    .problem-section,
    .solution-section,
    .launch-section,
    .services-section,
    .testimonials-section,
    .about-section {
        padding: 140px 0;
    }

    .final-cta-section {
        padding: 140px 0;
    }

    /* === CARDS — Larger text, more padding === */
    .problem-grid,
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .problem-card,
    .solution-card {
        padding: 3rem;
        border-radius: 16px;
    }

    .card-title,
    .solution-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .card-text,
    .solution-text {
        font-size: 1.4rem;
        line-height: 1.8;
        max-width: 55ch;
        margin-left: auto;
        margin-right: auto;
    }

    /* === LAUNCH CARDS === */
    .launch-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .launch-card {
        padding: 3rem 2.5rem;
        border-radius: 16px;
    }

    .launch-title {
        font-size: 1.7rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    /* === BENEFITS === */
    .benefit-item {
        padding: 2rem;
        border-radius: 12px;
    }

    .benefit-text {
        font-size: 1.3rem;
    }

    /* === TESTIMONIALS — Premium feel === */
    .testimonials-grid {
        max-width: 560px;
    }

    .testimonial-card {
        border-radius: 16px;
    }

    .testimonial-info {
        padding: 2rem;
    }

    .testimonial-name {
        font-size: 1.8rem;
        letter-spacing: -0.01em;
    }

    .testimonial-role {
        font-size: 1.05rem;
    }

    .testimonial-video video {
        border-radius: 12px;
    }

    /* === ABOUT === */
    .about-subtitle {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.35rem;
        line-height: 1.9;
    }

    .about-text p {
        max-width: 60ch;
    }

    .about-image img {
        border-radius: 16px;
    }

    /* === SERVICES — Polished cards === */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.81rem;
        max-width: 540px;
    }

    .service-card {
        padding: 1.62rem 1.35rem;
        border-radius: 11px;
    }

    .service-title {
        font-size: 2.7rem;
        margin-top: 1.62rem;
    }

    .show-more {
        font-size: 1.19rem;
        padding-top: 0.81rem;
    }

    .service-list li {
        font-size: 0.95rem;
        padding: 0.63rem 0;
    }

    /* === FINAL CTA === */
    .cta-headline {
        font-size: 3.75rem;
        letter-spacing: -0.02em;
    }

    .cta-subheadline {
        font-size: 1.65rem;
        margin-bottom: 3rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1440px) {
    .container {
        max-width: 100%;
        padding: 0 32px;
    }

    .hero-headline {
        font-size: 4rem;
        max-width: 1000px;
    }

    .hero {
        padding: 220px 0 50px;
    }

    .section-headline {
        font-size: 3.75rem;
    }

    .metric-number {
        font-size: 3.75rem;
    }

    .metrics-grid {
        max-width: 100%;
    }

    .testimonials-grid {
        max-width: 500px;
    }

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

    .benefits-list {
        max-width: 100%;
    }
}

/* Responsive Design — Tablet */
@media (max-width: 1024px) {
    .nav-container {
        justify-content: space-between;
        position: relative;
    }

    .nav-toggle {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        padding: 16px;
    }

    .nav-toggle span {
        width: 32px;
        height: 3px;
    }

    .nav-toggle.active {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    /* Tighter vertical rhythm on mobile */
    .trust-section,
    .services-section,
    .testimonials-section,
    .about-section,
    .free-audit-section,
    .final-cta-section {
        padding: 60px 0 !important;
    }

    .section-headline {
        margin-bottom: 2.5rem;
    }

    .logo {
        height: 70px;
        overflow: visible;
    }

    .logo-img {
        height: 50px;
    }

    .footer-logo-img {
        height: 70px;
    }

    .logo-phantom {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
    }

    .logo-funnelz {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .navbar {
        padding: 0.77rem 0;
    }

    .nav-menu {
        width: 300px;
        gap: 0.25rem;
        padding: 110px 0 calc(1.5rem + env(safe-area-inset-bottom));
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 1.1rem 1.5rem;
        letter-spacing: 2.5px;
        min-height: 52px;
    }

    .nav-link:hover {
        letter-spacing: 3.5px;
    }

    .nav-toggle {
        padding: 14px;
        gap: 7px;
    }

    .nav-toggle span {
        width: 26px;
        height: 2.5px;
    }

    .hero {
        padding: 133px 0 60px;
    }

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

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

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

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

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-three-col {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-three-col .portrait {
        margin: 0 auto;
    }

    .client-logos {
        gap: 1.5rem;
    }

    .logo-scroll-container {
        animation-duration: 15s;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
        overflow: visible;
    }

    .logo-img {
        height: 40px;
    }

    .footer-logo-img {
        height: 60px;
    }

    .navbar {
        padding: 0.65rem 0;
        padding-top: calc(0.65rem + env(safe-area-inset-top));
    }

    .hero {
        padding: 140px 0 50px;
    }

    .nav-menu {
        width: 100vw;
        max-width: 100vw;
        border-left: none;
        border-radius: 0;
        padding: 100px 0 calc(1.5rem + env(safe-area-inset-bottom));
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
        letter-spacing: 3px;
        min-height: 56px;
    }

    .nav-toggle {
        padding: 12px;
        gap: 6px;
    }

    .nav-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .hero-headline {
        font-size: clamp(1.5rem, 6vw, 2rem);
        padding: 0 0.5rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .section-headline {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .problem-grid,
    .solution-grid,
    .services-grid,
    .launch-grid {
        grid-template-columns: 1fr;
    }

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

    .container {
        padding: 0 16px;
    }
}

/* Body scroll-lock when mobile menu is open */
body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Scrim overlay when menu is open */
.nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-scrim.active {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   SCROLL & ENTRANCE ANIMATIONS
   ============================================ */

/* Elements start hidden, animate in on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade up */
.animate-fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Scale in */
.animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide from left */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Initial page load animation for hero */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    animation: heroFadeIn 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-subheadline {
    animation: heroFadeIn 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.logo-img {
    animation: heroFadeIn 0.8s 0s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Stagger delays for grid children */
.animate-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { transition-delay: 0.5s; }

/* ============================================
   MOBILE UI OVERHAUL — centering, readable cards,
   tighter vertical rhythm, denser content-per-scroll
   ============================================ */
@media (max-width: 768px) {
    /* Center everything by default */
    .container {
        padding: 0 20px;
        text-align: center;
    }

    /* Tighter sections = more content per scroll */
    .hero { padding: 110px 0 36px !important; }
    .trust-section,
    .problem-section,
    .solution-section,
    .services-section,
    .launch-section,
    .benefits-section,
    .testimonials-section,
    .about-section,
    .free-audit-section,
    .final-cta-section {
        padding: 48px 0 !important;
    }
    .vsl-section { padding: 0 0 24px !important; }
    .hero-cta-section { padding: 12px 0 24px !important; }

    /* Hero — bigger, readable, centered */
    .hero-headline {
        font-size: clamp(1.9rem, 7vw, 2.6rem) !important;
        line-height: 1.18;
        margin-bottom: 1rem;
        padding: 0 8px;
        max-width: 100%;
    }
    .hero-subheadline {
        font-size: clamp(1rem, 3.6vw, 1.15rem) !important;
        line-height: 1.55;
        margin-bottom: 1.75rem;
        padding: 0 8px;
    }

    /* Section headlines — bigger on mobile */
    .section-headline {
        font-size: clamp(1.9rem, 6.5vw, 2.4rem) !important;
        margin-bottom: 2rem !important;
        padding: 0 12px;
        line-height: 1.2;
    }

    /* CTA buttons — full-width, thumb-friendly */
    .cta-button {
        padding: 1.05rem 1.75rem;
        font-size: 0.95rem;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .cta-button.large {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    /* METRICS — 2x2 grid with readable numbers */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem;
        max-width: 100%;
    }
    .metric-card {
        padding: 1.4rem 0.75rem;
        border-radius: 14px;
    }
    .metric-number {
        font-size: 1.9rem;
        margin-bottom: 0.35rem;
    }
    .metric-label {
        font-size: 0.72rem;
        letter-spacing: 0.6px;
    }

    /* PROBLEM / SOLUTION cards — full-width, real padding */
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .problem-card,
    .solution-card {
        padding: 1.75rem 1.35rem !important;
        border-radius: 14px;
    }
    .card-title,
    .solution-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem;
    }
    .card-text,
    .solution-text {
        font-size: 1rem !important;
        line-height: 1.65;
        max-width: 100%;
    }

    /* SERVICES — single column, proper readable text */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
    }
    .service-card {
        padding: 1.75rem 1.5rem !important;
        border-radius: 14px;
        min-height: auto;
    }
    .service-title {
        font-size: 1.35rem !important;
        margin-top: 0.75rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3;
    }
    .service-list li {
        font-size: 0.95rem !important;
        padding: 0.55rem 0 !important;
        line-height: 1.5;
    }
    .show-more {
        font-size: 0.85rem;
        opacity: 1;
        transform: none;
        padding-top: 0.75rem;
        color: var(--purple-color);
    }
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 12px;
    }

    /* LAUNCH CARDS */
    .launch-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        max-width: 100%;
    }
    .launch-card {
        padding: 1.75rem 1.5rem !important;
        border-radius: 14px;
    }
    .launch-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.85rem;
    }
    .launch-text {
        font-size: 0.98rem;
        line-height: 1.65;
    }
    .launch-subtitle {
        font-size: 1rem;
        padding: 0 12px;
        margin-bottom: 2rem;
    }

    /* BENEFITS */
    .benefits-list { max-width: 100%; }
    .benefit-item {
        padding: 1.2rem 1rem;
        margin-bottom: 0.75rem;
        border-radius: 12px;
    }
    .benefit-text { font-size: 1rem; }

    /* TESTIMONIALS — wider on mobile, stacked content */
    .testimonials-grid {
        max-width: 100% !important;
        gap: 1.25rem;
    }
    .testimonial-card { border-radius: 14px; }
    .testimonial-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .testimonial-info {
        padding: 1.25rem 1.25rem 1rem !important;
    }
    .testimonial-name {
        font-size: 1.15rem !important;
    }
    .testimonial-role {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem;
    }
    .testimonial-companies {
        justify-content: center;
        gap: 0.5rem;
    }
    .company-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    /* ABOUT — centered on mobile */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        max-width: 100%;
        justify-items: center;
        text-align: center;
    }
    .about-center {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    .about-image {
        max-width: 280px;
        margin: 0 auto;
    }
    .about-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 1.25rem;
    }
    .about-text {
        font-size: 1rem !important;
        line-height: 1.7;
    }
    .about-text p { max-width: 100% !important; }
    .about-three-col {
        gap: 1.5rem !important;
        flex-direction: column;
    }
    .portrait { width: 200px; }
    .portrait img { width: 200px; height: 267px; }
    .portrait-name { font-size: 0.95rem; }
    .portrait-role { font-size: 0.8rem; }

    /* FINAL CTA */
    .cta-headline {
        font-size: clamp(1.9rem, 6.5vw, 2.4rem) !important;
        margin-bottom: 0.75rem;
        padding: 0 12px;
    }
    .cta-subheadline {
        font-size: 1rem !important;
        margin-bottom: 2rem;
        padding: 0 12px;
    }

    /* TRUST */
    .trust-text {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 1.75rem;
        padding: 0 12px;
    }
    .logo-item {
        font-size: 1rem;
        min-width: 140px;
        padding: 0 1.25rem;
    }
    .logo-item img {
        width: 36px;
        height: 36px;
    }

    /* FOOTER — centered */
    .footer { padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom)); }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem !important;
    }
}

/* ============================================
   SMALL PHONES — extra tightening & readability
   ============================================ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero { padding: 100px 0 28px !important; }
    .trust-section,
    .problem-section,
    .solution-section,
    .services-section,
    .launch-section,
    .benefits-section,
    .testimonials-section,
    .about-section,
    .free-audit-section,
    .final-cta-section {
        padding: 42px 0 !important;
    }

    .hero-headline {
        font-size: clamp(1.7rem, 7.5vw, 2.1rem) !important;
    }
    .hero-subheadline {
        font-size: 0.98rem !important;
    }

    .section-headline {
        font-size: clamp(1.65rem, 7vw, 2rem) !important;
        margin-bottom: 1.75rem !important;
    }

    /* METRICS — single column on tiny phones for readability */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem;
    }
    .metric-card { padding: 1.2rem 0.5rem; }
    .metric-number { font-size: 1.65rem; }
    .metric-label { font-size: 0.68rem; }

    .service-title { font-size: 1.2rem !important; }
    .service-list li { font-size: 0.9rem !important; }

    .launch-title { font-size: 1.1rem !important; }
    .card-title, .solution-title { font-size: 1.1rem !important; }

    .cta-headline {
        font-size: clamp(1.65rem, 7vw, 2rem) !important;
    }
    .cta-subheadline { font-size: 0.95rem !important; }
}
.animate-stagger > *:nth-child(6) { transition-delay: 0.6s; }
