:root {
    --color-primary: #E13D3D;
    --color-primary-dark: #b92b2b;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F9FA;
    --color-text-main: #111111;
    --color-text-secondary: #4B5563;
    --color-border: #E5E7EB;

    --color-dark-bg: #0A0A0A;
    --color-dark-surface: #141414;
    --color-text-on-dark: #FFFFFF;
    --color-text-muted-on-dark: #9CA3AF;

    --font-main: 'Outfit', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --spacing-container: 1200px;
    --spacing-section: 6rem;
    --spacing-section-mobile: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--spacing-section) 0;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    /* Full rounded pills like Mirakle reference */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 61, 61, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-icon {
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    /* Dark transparent nav */
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo-studio {
    font-weight: 500;
    color: #9CA3AF;
    margin-left: 0.5rem;
}

.logo-mark {
    position: relative;
    display: inline-block;
    color: white;
    /* Maintain white color for the letter */
}

/* Suble micro-dot above the I and O for a distinctive signature */
.logo-mark::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 12rem 0 8rem;
    background-color: var(--color-dark-bg);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    text-align: center;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(225, 61, 61, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(225, 61, 61, 0.05) 0%, transparent 25%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    /* Balanced size */
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    font-weight: 800;
    /* Extra bold */
    color: white;
    letter-spacing: -0.03em;
    /* Tight "Apple-like" tracking */
}

/* Empty ruleset removed */

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    color: var(--color-text-muted-on-dark);
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-brands {
    margin-top: auto;
    opacity: 0.6;
}

.hero-brands p {
    font-size: 0.875rem;
    color: var(--color-text-muted-on-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Floating Tags */
.floating-tag {
    position: absolute;
    padding: 0.75rem 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    /* Fully rounded pills per Mirakle reference */
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    /* Let clicks pass through */
    white-space: nowrap;
}

.tag-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.tag-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

.tag-3 {
    top: 25%;
    right: 8%;
    animation-delay: 3s;
}

.tag-4 {
    bottom: 25%;
    right: 12%;
    animation-delay: 4.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Projection Section */
.projection-section {
    position: relative;
    padding: 10rem 0;
    background-color: var(--color-bg-alt);
    /* Slightly off-white/gray contrast */
    overflow: hidden;
}

.projection-section .container {
    position: relative;
    z-index: 2;
}

.projection-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.p-icon-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    color: #3b82f6;
    /* Blueish for "Imagine" */
}

.p-icon-2 {
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
    color: var(--color-primary);
    /* Red/Brand for "Produce" */
}

.p-icon-3 {
    top: 15%;
    right: 25%;
    animation-delay: 4s;
    color: #10b981;
    /* Greenish for "Deliver/Success" */
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.projection-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--color-text-main);
    font-family: var(--font-display);
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.title-line .dot {
    color: var(--color-primary);
}

.projection-subtitle {
    font-size: 1.5rem;
    color: #9CA3AF;
    /* Light gray to match "Pendant que tu scales..." vibe */
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .projection-title {
        font-size: 5rem;
    }

    .projection-subtitle {
        font-size: 1.75rem;
    }
}

/* Social Proofs Section - Bento Layout */
.proofs-section {
    background-color: #0A0A0A;
    padding: 10rem 0;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proofs-header {
    margin-bottom: 6rem;
}

.proofs-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
}

.proofs-subtitle {
    font-size: 1.125rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

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

.bento-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-card.tall {
    border-radius: 28px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 9/16;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card.tall:hover {
    transform: scale(1.03) translateY(-5px);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stat-card.small {
    background: #161616;
    padding: 3.5rem 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    text-align: left;
}

.stat-card.small:hover {
    background: #1A1A1A;
    border-color: var(--color-primary);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.75rem;
    color: white;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Bento Grid Responsiveness */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
        /* Tighter gap like Mirakle mobile */
        padding: 0 1rem;
    }

    .bento-col {
        gap: 0.85rem;
    }

    .stat-card.small {
        padding: 2.5rem 1.25rem;
        border-radius: 20px;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .video-card.tall {
        border-radius: 20px;
    }

    .proofs-section {
        padding: 5rem 0;
    }

    .proofs-title {
        font-size: 2rem;
        padding: 0 1.5rem;
    }

    .proofs-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
}

/* Problem Section Improvements */
.problem-section {
    background-color: var(--color-bg-alt);
    padding: 8rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

.problem-item h2 {
    font-size: 2.5rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.floating-tag-ui {
    animation: floatingTag 4s ease-in-out infinite;
}

.floating-tag-ui-alt {
    animation: floatingTag 5s ease-in-out infinite reverse;
}

@keyframes floatingTag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.problem-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.problem-text {
    border-left: 4px solid var(--color-primary);
    padding-left: 2rem;
}

.problem-text p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
}

.problem-text .highlight-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.2;
    margin-top: 2.5rem;
}

.problem-visual-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    background: white;
    transition: transform 0.4s ease;
}

/* The Budget Leak Animation Engine */
.visual-engine-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #0D0D0D;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5), 0 30px 60px rgba(0, 0, 0, 0.1);
}

.engine-core {
    position: relative;
    z-index: 5;
}

.core-inner {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #E13D3D 0%, #300 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(225, 61, 61, 0.4);
    position: relative;
}

.fatigue-label {
    font-size: 0.7rem;
    font-weight: 900;
    color: white;
    text-align: center;
    letter-spacing: 0.1em;
    animation: textFlicker 3s infinite;
}

.pulse-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(225, 61, 61, 0.3);
    border-radius: 50%;
    animation: ringGrow 3s infinite linear;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

.pulse-ring.delay-2 {
    animation-delay: 2s;
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    color: #FFD700;
    font-weight: 900;
    font-size: 1.5rem;
    opacity: 0;
    filter: drop-shadow(0 0 10px gold);
}

.p1 {
    top: 10%;
    left: 10%;
    animation: suckIn1 4s infinite;
}

.p2 {
    top: 80%;
    left: 20%;
    animation: suckIn2 5s infinite 1s;
}

.p3 {
    top: 30%;
    right: 10%;
    animation: suckIn3 4.5s infinite 0.5s;
}

.p4 {
    top: 70%;
    right: 15%;
    animation: suckIn1 4.2s infinite 1.5s;
}

.p5 {
    top: 50%;
    left: -10%;
    animation: suckIn2 6s infinite;
}

/* performance Meter */
.performance-meter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.meter-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.meter-fill {
    width: 90%;
    height: 100%;
    background: var(--color-primary);
    animation: meterCrash 4s infinite alternate ease-in-out;
}

.meter-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-text {
    color: #9CA3AF;
}

.status-value {
    color: var(--color-primary);
}

.leak-indicator {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #E13D3D;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    animation: blink 0.5s infinite alternate;
}

/* Animations */
@keyframes ringGrow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes suckIn1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        transform: translate(150px, 150px) scale(0);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes suckIn2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        transform: translate(100px, -150px) scale(0);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes suckIn3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        transform: translate(-180px, 100px) scale(0);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes meterCrash {
    0% {
        width: 80%;
        background: #4ADE80;
    }

    100% {
        width: 15%;
        background: #E13D3D;
    }
}

@keyframes textFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes blink {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.3;
    }
}


@media (max-width: 992px) {
    .problem-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .problem-visual-column {
        order: -1;
        /* Image first on mobile */
    }
}

/* Reality Section Improvements */
.reality-section {
    background-color: #FFFFFF;
    padding: 10rem 0;
}

.reality-text-column {
    padding-right: 4rem;
}

.reality-text-column .section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.reality-content p {
    font-size: 1.4rem;
    color: #4B5563;
    margin-bottom: 1.75rem;
    line-height: 1.5;
    max-width: 90%;
}

.reality-punchline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 4rem;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: punchlinePulse 3s ease-in-out infinite;
}

@keyframes punchlinePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

/* The Vertical Trust Monolith */
.monolith-container {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    padding-bottom: 2rem;
}

.marketing-debris {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.debris {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    filter: blur(1px);
    transition: all 0.5s ease;
}

.d1 {
    top: 15%;
    left: 10%;
    animation: floatDebris 6s infinite ease-in-out;
}

.d2 {
    top: 75%;
    left: 15%;
    animation: floatDebris 8s infinite ease-in-out 1s;
}

.d3 {
    top: 25%;
    right: 10%;
    animation: floatDebris 7s infinite ease-in-out 0.5s;
}

.d4 {
    top: 70%;
    right: 12%;
    animation: floatDebris 9s infinite ease-in-out 1.5s;
}

@keyframes floatDebris {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.3;
    }
}

.trust-monolith {
    position: relative;
    z-index: 10;
    width: 280px;
    height: 500px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 50px rgba(225, 61, 61, 0.15);
}

.monolith-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-window {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.glass-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.trust-tag-floating {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(225, 61, 61, 0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.engagement-orbits {
    position: absolute;
    inset: -50px;
    pointer-events: none;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(225, 61, 61, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.o1 {
    width: 400px;
    height: 400px;
    animation: rotateOrbit 15s linear infinite;
}

.o2 {
    width: 500px;
    height: 500px;
    animation: rotateOrbit 25s linear infinite reverse;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.trust-stat {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    z-index: 20;
}

@media (max-width: 992px) {
    .monolith-container {
        height: 500px;
        margin-top: 3rem;
    }

    .trust-monolith {
        width: 220px;
        height: 400px;
    }

    .orbit {
        display: none;
    }
}

/* Positioning Section Improvements */
.positioning-section {
    background-color: #0A0A0A;
    color: white;
    padding: 8rem 0;
}

.positioning-section p {
    color: #9CA3AF;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.positioning-title {
    font-size: 3rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.specialty {
    font-size: 1.75rem;
    color: var(--color-primary) !important;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.text-block p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.split-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-mockup {
    position: relative;
    width: 100%;
    max-width: 300px;
    /* Thinner phone look */
    margin: 0 auto;
}

.phone-screen {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    border: 8px solid #1A1A1A;
    aspect-ratio: 9/19;
    background: #000;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 70%, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.perf-stats-overlay {
    position: absolute;
    top: 20%;
    right: -25%;
    z-index: 20;
}

.perf-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 24px;
    width: 180px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 5s ease-in-out infinite alternate;
}

.perf-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.perf-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 1rem;
}

.perf-chart {
    height: 35px;
    width: 100%;
    filter: drop-shadow(0 0 3px var(--color-primary));
}

.perf-chart path {
    stroke: var(--color-primary);
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: chartProgress 2s ease-out forwards 1s;
}

@keyframes chartProgress {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 992px) {
    .perf-stats-overlay {
        position: relative;
        top: 0;
        right: 0;
        margin-top: -3rem;
        display: flex;
        justify-content: center;
    }
}

/* Why Section Grid */
.why-section {
    background-color: #fcfcfc;
    padding: 10rem 0;
}

.why-section .section-title {
    font-size: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 6rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.why-card {
    background: #F9FAFB;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid #F3F4F6;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-12px);
    background: white;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
    border-color: rgba(225, 61, 61, 0.2);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #111;
    letter-spacing: -0.02em;
}

.why-card p {
    font-size: 1.15rem;
    color: #4B5563;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

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

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .positioning-title {
        font-size: 2.25rem;
    }
}



/* Method Section */
.method-section {
    background-color: var(--color-bg-alt);
    padding: 8rem 0;
}

.method-header {
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Make featured card slightly wider */
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    position: relative;
    background: #fff;
    /* Keep white or slight tint */
    padding: 4rem 3rem;
    /* Slightly larger padding */
    box-shadow: 0 20px 50px rgba(225, 61, 61, 0.08);
    /* Red tint shadow */
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(225, 61, 61, 0.3);
}

.step-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    color: #9CA3AF;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.card-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.card-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
    min-height: 48px;
    /* Alignment fix */
}

.price {
    font-size: 3rem;
    /* Bigger price */
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.price-range {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.full-width {
    width: 100%;
    margin: 1.5rem 0 2.5rem;
    padding: 1rem;
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-text-main);
    border: 2px solid var(--color-text-main);
}

.btn-outline-dark:hover {
    background: var(--color-text-main);
    color: white;
}

.features-list {
    list-style: none;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    text-align: left;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.features-list li::before {
    content: "✓";
    /* Checkmark instead of bullet */
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.2rem;
}

.features-list strong {
    color: var(--color-text-main);
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--color-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    text-align: center;
}

.checkmark {
    display: block;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin: 0;
    font-size: 1.5rem;
}

/* Target Section */
.target-section {
    background-color: var(--color-bg);
    padding: 8rem 0 6rem;
}

.target-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.target-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.target-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
}

.pill-icon {
    font-size: 1.5rem;
}

/* Calendly Section - Lava Lamp Effect */
.calendly-section {
    background-color: #FAFAFA;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Moving Lava Background */
.calendly-section::before,
.calendly-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: lava-flow 20s infinite alternate;
}

.calendly-section::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(#ffe4e4, transparent);
    top: -10%;
    left: -10%;
}

.calendly-section::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(#e13d3d1a, transparent);
    bottom: -10%;
    right: -10%;
    animation-direction: alternate-reverse;
    animation-duration: 25s;
}

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

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

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.inverted-relative {
    position: relative;
    z-index: 2;
}

.highlight-text-red {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.highlight-text-red::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary);
    z-index: -1;
    transform: skewX(-10deg);
    opacity: 0.2;
}

/* Magic Border Beam Card */
.calendly-wrapper {
    margin-top: 4rem;
    background: white;
    border-radius: 16px;
    /* Slightly more rounded */
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    /* Deep Shadow */
    overflow: hidden;
    min-height: 700px;
    position: relative;
    z-index: 10;
    padding: 3px;
    /* Space for the border beam */
}

/* The Rotating Beam */
.calendly-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            transparent,
            var(--color-primary));
    animation: rotate-beam 4s linear infinite;
    z-index: -2;
}

/* The White Mask (Inner Content Background) */
.calendly-wrapper::after {
    content: "";
    position: absolute;
    inset: 3px;
    /* Matches padding */
    background: white;
    border-radius: 14px;
    /* 16px - padding */
    z-index: -1;
}

@keyframes rotate-beam {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Placeholder styles if widget doesn't load or for layout preview */
.calendly-placeholder {
    display: none;
    /* Hidden when widget loads, purely for structure */
    padding: 3rem;
    text-align: center;
}

/* Footer CTA (Simplified) */
.footer-cta-section {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0;
}

.final-cta-text {
    font-size: 2rem;
    margin: 0;
    color: white;
    line-height: 1.4;
}

.final-cta-text strong {
    font-weight: 800;
}

/* FAQ Section */
.faq-section {
    background-color: #FFFFFF;
    padding: 8rem 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.faq-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    max-width: 400px;
}

.faq-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    background: #F3F4F6;
}

.faq-item.active {
    background: #FFFFFF;
    border-color: var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-text-main);
    user-select: none;
}

.faq-trigger {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trigger-icon {
    position: absolute;
    inset: 0;
}

.trigger-icon::before,
.trigger-icon::after {
    content: '';
    position: absolute;
    background: #9CA3AF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Horizontal line */
.trigger-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical line */
.trigger-icon::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .trigger-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .trigger-icon::before {
    background: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 2rem 2.5rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.faq-answer-content p {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.faq-answer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.faq-answer-content li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.faq-answer-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.faq-answer-content strong {
    color: var(--color-text-main);
    font-weight: 700;
}

/* Button with arrow refinement */
.btn-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .faq-title {
        font-size: 2.75rem;
    }

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

/* Base Responsive Container Fix */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Footer (Base) */
.footer {
    background-color: #111;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.footer p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Animations (Global) */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Final CTA Section (Base) */
.final-cta-section {
    padding: 8rem 0;
    background-color: #F9FAFB;
}

.final-cta-card {
    background: white;
    padding: 5.5rem 4rem;
    border-radius: 40px;
    border: 1px solid var(--color-border);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.06);
}

.final-cta-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--color-text-main);
    line-height: 1.1;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.final-contact-info {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid #F3F4F6;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.contact-link svg {
    color: var(--color-primary);
}

/* --- MOBILE RESPONSIVE (768px) --- */
@media (max-width: 768px) {
    .section {
        padding: 4.5rem 1.25rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .logo {
        font-size: 1.15rem;
    }

    .navbar .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Section 1: Hero - Clean up overlapping animations */
    .floating-tag {
        display: none !important;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-xl {
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
    }

    /* Section 2: Bento Grid - Mirakle Style (2 Columns) */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .stat-card.small {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .stat-value {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .video-card.tall {
        border-radius: 16px;
    }

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

    .problem-item h2 {
        font-size: 2rem;
    }

    .projection-title {
        font-size: 2.22rem;
    }

    .projection-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .p-icon-1 {
        top: 18%;
        left: 3%;
    }

    .p-icon-3 {
        top: 12%;
        right: 8%;
        width: 35px;
        height: 35px;
    }

    .p-icon-2 {
        bottom: 25%;
        right: 5%;
    }

    .title-line {
        display: block;
        margin-bottom: 0.5rem;
    }

    .projection-subtitle {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .reality-text-column {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .section-badge {
        margin-bottom: 1rem;
        display: inline-block;
    }

    /* Section 3: Reality - Shrink text & improve coherence */
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    .reality-section .section-title {
        font-size: 1.85rem !important;
        margin-bottom: 1.5rem;
    }

    .reality-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .reality-punchline {
        font-size: 1.15rem;
        margin-top: 1.5rem;
    }

    .reality-visual-column {
        padding: 1.5rem 0;
    }

    .trust-monolith {
        width: 220px;
        height: 380px;
    }

    .o1 {
        width: 280px;
        height: 280px;
    }

    .o2 {
        width: 340px;
        height: 340px;
    }

    .marketing-debris {
        display: none;
    }

    /* Section 4: Why - Adaptive layout */
    .why-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }

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

    .why-card {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .why-icon svg {
        width: 18px;
        height: 18px;
    }

    .why-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .why-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .faq-title {
        font-size: 2.1rem;
        text-align: center;
    }

    .faq-left-col {
        text-align: center;
        margin-bottom: 3.5rem;
    }

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

    .final-cta-card {
        padding: 3.5rem 1.5rem;
        border-radius: 28px;
    }

    .final-cta-title {
        font-size: 2.25rem;
    }

    .final-contact-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer {
        padding: 4rem 1.5rem;
    }
}