/* 
   Conex+ Branding & Design System
   Restructured: Deep Black & Galactic Glassmorphism
*/

:root {
    /* Primary Color Palette (Deep Black Foundation) */
    --deep-black: #0b0514;
    --mid-purple: #51238b;
    --vibrant-purple: #7d2fdc;
    --soft-pink: #c85ee6;
    --accent-purple: #d8a8f0;

    /* Semantic Colors */
    --bg-primary: var(--deep-black);
    --surface-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);

    /* Text Colors */
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-titles: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Effects */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    --neon-glow: 0 0 20px rgba(125, 47, 220, 0.4);
    --neon-border-glow: 0 0 10px rgba(200, 94, 230, 0.2);

    /* Reveal Defaults */
    --reveal-duration: 1s;
    --reveal-delay: 0.3s;
}

/* Reset & Global Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-titles);
    font-weight: 800;
    /* Sora Extra Bold */
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    display: block;
}

/* Shared UI Components */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 8%;
}

.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 13px 28px;
    background: transparent;
    border: 1px solid var(--vibrant-purple);
    color: var(--white);
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shared Border Beam Flash Effect Base */
.border-beam {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(125, 47, 220, 0.4);
}

.border-beam::before {
    content: "";
    position: absolute;
    width: 250%;
    height: 350%;
    top: -125%;
    left: -75%;
    background: conic-gradient(from 0deg,
            transparent 0 60deg,
            rgba(255, 255, 255, 1) 90deg,
            transparent 120deg 360deg);
    animation: rotate-flash 4s linear infinite;
    z-index: -2;
    transition: opacity 0.3s ease;
}

.border-beam::after {
    content: "";
    position: absolute;
    inset: 1.5px;
    background: var(--deep-black);
    border-radius: inherit;
    z-index: -1;
    transition: background 0.4s ease;
}

.border-beam:hover::before {
    opacity: 0;
    /* Hide flash on hover as requested */
}

.border-beam:hover::after {
    background: var(--vibrant-purple);
}

@keyframes rotate-flash {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Header & Floating Pill Nav Branding */
.main-header {
    width: 100%;
    position: fixed;
    top: 30px;
    left: 0;
    display: flex;
    justify-content: center;
    /* Center the pill-nav */
    align-items: center;
    z-index: 1000;
    pointer-events: none;
    /* Allow clicks through to logo if they overlap */
}

.pill-nav-container {
    pointer-events: auto;
    /* Re-enable for the nav itself */
}

.hero-logo {
    position: absolute;
    top: 50px;
    left: 10%;
    z-index: 10;
}

.pill-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px;
    background: rgba(11, 5, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Global Transition Utility & Advanced Animations */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-open {
    opacity: 0;
    will-change: transform, opacity, filter;
    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(10px);
}

.reveal {
    transform: translateY(35px) scale(0.98);
}

.reveal-left {
    transform: translateX(-40px) rotate(-1deg);
}

.reveal-right {
    transform: translateX(40px) rotate(1deg);
}

.reveal-scale {
    transform: scale(0.9) translateY(20px);
}

.reveal-open {
    transform: perspective(1000px) rotateX(10deg) translateY(35px);
    transform-origin: center;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-open.active {
    opacity: 1;
    transform: translate(0) rotate(0) rotateX(0) scale(1);
    filter: blur(0);
}

.nav-links {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 100px;
    transition: color 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.nav-item:hover {
    color: var(--white);
}

.nav-indicator {
    position: absolute;
    height: calc(100% - 12px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    top: 6px;
    left: 0;
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.logo-text {
    background: linear-gradient(135deg, var(--soft-pink), var(--vibrant-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

.footer {
    padding: 6rem 5% 3rem;
    background: var(--deep-black);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 60px 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    /* Reduced gap */
    align-items: center;
    height: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    /* Slightly tighter badge */
    background: rgba(125, 47, 220, 0.1);
    border: 1px solid rgba(125, 47, 220, 0.3);
    border-radius: 100px;
    color: var(--soft-pink);
    font-size: 0.8rem;
    /* Slightly smaller font */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    /* Reduced margin */
}

.hero-title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.05;
}

.hero-title span {
    background: linear-gradient(135deg, var(--soft-pink), var(--vibrant-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* More compact gap between button and promises */
    margin-bottom: 2rem;
    /* Reduced margin */
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 1.1rem;
    align-self: flex-start;
}

.hero-promises {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.hero-promises span {
    font-size: 0.8rem;
    color: var(--accent-purple);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-promises span::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--vibrant-purple);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--vibrant-purple);
}

.hero-interrupt {
    font-size: 0.9rem;
    /* Slightly smaller */
    color: var(--text-muted);
    font-style: italic;
    border-left: 2px solid var(--vibrant-purple);
    padding-left: 1.25rem;
    max-width: 500px;
}

/* Hero Media Area */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    /* Slightly narrower for a more vertical, elegant look */
    margin-left: auto;
}

.partners-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5.5;
    object-fit: cover;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    filter: contrast(1.05) brightness(1.02);
    /* Slight HD pop */
    display: block;
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(125, 47, 220, 0.15) 0%, transparent 60%);
    z-index: -1;
    filter: blur(40px);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-wrapper {
        margin: 2rem auto 0;
        max-width: 320px;
        /* More focused on mobile */
    }

    .hero-text-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary.large {
        align-self: center;
    }

    .hero-interrupt {
        border-left: none;
        border-top: 2px solid var(--vibrant-purple);
        padding-top: 1.5rem;
        padding-left: 0;
    }

    .hero-promises {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Pain Section Styling */
.pain {
    padding: 60px 0;
    background-color: var(--deep-black);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1.5rem;
}

.section-title span {
    color: var(--soft-pink);
    display: block;
}

.pain-scenarios {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    margin-bottom: 4rem;
}

.scenario-title {
    font-size: 1rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scenario-title::after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(to right, var(--vibrant-purple), transparent);
}

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

.pain-card {
    padding: 1.25rem 1.75rem;
    text-align: left;
    transition: all 0.5s ease;
}

.pain-card.full-width {
    grid-column: span 2;
}

.pain-card:hover {
    border-color: var(--soft-pink);
    box-shadow: 0 0 40px rgba(200, 94, 230, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1.5rem;
}

.pain-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.consequence-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cons-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cons-dot {
    width: 6px;
    height: 6px;
    background: var(--vibrant-purple);
    border-radius: 50%;
}

.cons-item span {
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-titles);
    font-size: 0.95rem;
}

.pain-quote {
    text-align: center;
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-text {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-family: var(--font-titles);
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

.overflow-visible {
    overflow: visible;
}

@media (max-width: 1024px) {
    .pain-scenarios {
        grid-template-columns: 1fr;
    }
}

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

    .pain-card.full-width {
        grid-column: span 1;
    }
}

/* Method Section (Restructured - Globe/3D Edition) */
.method {
    padding: 120px 0;
    position: relative;
    perspective: 1500px;
    /* For 3D feel */
}

.method-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
}

.orbital-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
    /* Smaller height for first fold */
    position: relative;
    z-index: 1;
}

.orbital-diagram {
    width: 480px;
    /* More compact */
    height: 480px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    animation: rotateContinuous 45s linear infinite;
}

/* Pause all rotations when focusing on the method */
.orbital-wrapper:hover .orbital-diagram,
.orbital-wrapper:hover .orbit-item {
    animation-play-state: paused;
}

.orbital-center {
    width: 140px;
    height: 140px;
    background: var(--deep-black);
    border: 3px solid var(--vibrant-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    box-shadow: 0 0 50px rgba(125, 47, 220, 0.6);
    animation: pulse-glow 3s infinite alternate;
    position: absolute;
    /* Static horizontally because it's sibling to diagram */
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    /* Thicker line */
}

.ring-1 {
    width: 250px;
    height: 250px;
}

.ring-2 {
    width: 480px;
    height: 480px;
}

.orbit-item {
    position: absolute;
    width: 130px;
    height: 38px;
    white-space: nowrap;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--white);
    background: rgba(11, 5, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    /* Planetary rotation: Item orbits but stays horizontal */
    animation: rotateContinuousInverse 45s linear infinite;
}

.orbit-item span {
    display: block;
    pointer-events: none;
    text-align: center;
}

.orbit-item.active,
.orbit-item:hover {
    transform: scale(1.1);
    border-color: var(--soft-pink);
    box-shadow: 0 0 30px var(--soft-pink);
    background: var(--vibrant-purple) !important;
    color: #fff;
}

/* Precise 5 Node Positioning relative to 480px ring-2 */
.item-1 {
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.item-2 {
    top: 25%;
    right: -60px;
}

.item-3 {
    bottom: 0px;
    right: 0px;
}

.item-4 {
    bottom: 0px;
    left: 0px;
}

.item-5 {
    top: 25%;
    left: -60px;
}

/* Continuous rotation animations */
@keyframes rotateContinuous {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateContinuousInverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.method-panel {
    padding: 3rem;
    border-radius: 30px;
}

.panel-label {
    display: block;
    font-size: 0.75rem;
    color: var(--soft-pink);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.method-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.method-panel p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.method-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.method-tags li {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    list-style: none;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 20px rgba(125, 47, 220, 0.4);
    }

    to {
        box-shadow: 0 0 40px rgba(125, 47, 220, 0.7);
    }
}

@keyframes rotate-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-ccw {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@media (max-width: 1100px) {
    .method-layout {
        grid-template-columns: 1fr;
    }
}

/* Authority Section Styling */
.authority {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.authority-philosophy {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 550px;
}

.philosophy-box {
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--vibrant-purple);
}

.philosophy-quote {
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.4;
}

.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pillar-card {
    padding: 1.5rem 2.5rem;
    position: relative;
}

.pillar-card.border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pillar-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .authority-layout {
        grid-template-columns: 1fr;
    }
}

/* Services Journey Styling (Timeline Restructure) */
.services-journey {
    padding: 120px 0;
    position: relative;
}

.journey-timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.journey-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--soft-pink), var(--vibrant-purple), transparent);
    z-index: 0;
}

.journey-stage {
    position: relative;
    padding-left: 100px;
    margin-bottom: 6rem;
    z-index: 1;
}

.journey-stage::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 40px;
    width: 18px;
    height: 18px;
    background: var(--bg-primary);
    border: 3px solid var(--vibrant-purple);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--vibrant-purple);
    z-index: 2;
}

.stage-info {
    padding: 3.5rem;
    border-radius: 30px;
}

.stage-number {
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 40px;
}

.stage-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.stage-transformation {
    font-size: 1rem;
    font-weight: 700;
    color: var(--soft-pink);
    margin-bottom: 2rem;
    padding: 10px 20px;
    background: rgba(200, 94, 230, 0.05);
    display: inline-block;
    border-radius: 10px;
    border: 1px solid rgba(200, 94, 230, 0.1);
}

.stage-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stage-items li {
    list-style: none;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stage-items li::before {
    content: '→';
    color: var(--vibrant-purple);
}

.system-badge {
    color: var(--vibrant-purple);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* Specific stage glows */
.stage-3 .stage-info {
    border: 1px solid var(--vibrant-purple);
    box-shadow: 0 0 40px rgba(125, 47, 220, 0.15);
}

@media (max-width: 768px) {
    .journey-line {
        left: 20px;
    }

    .journey-stage {
        padding-left: 60px;
    }

    .journey-stage::before {
        left: 12px;
    }

    .stage-number {
        display: none;
    }
}

/* Social Proof & Cases Styling */
.social-proof {
    padding: 120px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 8rem;
}

.stat-card {
    padding: 3rem 2rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 3rem;
    color: var(--soft-pink);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cases-section {
    margin-bottom: 8rem;
}

.cases-title {
    font-size: 1.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

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

.case-card {
    padding: 3rem;
}

.case-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--vibrant-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.case-card h4 {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.case-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.case-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.result-step p {
    color: var(--soft-pink);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-section {
    display: flex;
    justify-content: center;
}

.testimonial-box {
    padding: 3rem;
    max-width: 800px;
    text-align: center;
    border-top: 4px solid var(--vibrant-purple);
}

.test-quote {
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.test-author {
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Comparison Table Styling */
.comparison {
    padding: 80px 0 60px;
}

.comparison-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    text-align: left;
}

th,
td {
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
}

th {
    font-family: var(--font-titles);
    font-size: 1.1rem;
    color: var(--text-muted);
}

td {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

td:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px 0 0 20px;
}

td:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 20px 20px 0;
}

.highlight {
    background: rgba(125, 47, 220, 0.05) !important;
    border-color: var(--vibrant-purple) !important;
    color: var(--white) !important;
    font-weight: 700;
}

.comparison-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--soft-pink);
    text-transform: uppercase;
}

/* Objections/FAQ & Commitment Styling */
.objections {
    padding: 120px 0;
}

.small-container {
    max-width: 850px;
}

.accordion {
    margin-bottom: 6rem;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: var(--white);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 2.5rem;
}

.accordion-body p {
    padding-bottom: 2.5rem;
    color: var(--text-secondary);
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-body {
    max-height: 300px;
}

.commitment {
    padding: 4rem;
    text-align: left;
    border-radius: 30px;
}

.commitment-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.commitment-list {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.commitment-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.commitment-list li::before {
    content: '✓';
    color: var(--vibrant-purple);
    font-weight: 800;
}

.commitment-quote {
    font-family: var(--font-titles);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--soft-pink);
}

@media (max-width: 768px) {

    th:nth-child(2),
    td:nth-child(2) {
        display: none;
    }
}

/* Final CTA Styling */
.final-cta {
    padding: 100px 0;
}

.cta-box {
    padding: 4.5rem 2.5rem;
    text-align: center;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(125, 47, 220, 0.1), rgba(11, 5, 20, 1));
    border: 1px solid var(--vibrant-purple);
    box-shadow: 0 0 60px rgba(125, 47, 220, 0.15);
}

.cta-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--vibrant-purple);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 2.5rem auto 4rem;
}

.btn-primary.large.glow {
    background: var(--vibrant-purple);
    box-shadow: 0 0 40px rgba(125, 47, 220, 0.5);
}

.btn-primary.large.glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(125, 47, 220, 0.8);
}

/* Footer (Expanded Deep Black Structure) */
.footer {
    padding: 8rem 5% 4rem;
    background: #050209;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
    text-align: left;
}

.footer-info p {
    margin-top: 1.5rem;
    max-width: 400px;
    font-size: 1rem;
    line-height: 1.8;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact p,
.footer-links li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--soft-pink);
}

.footer-links ul {
    list-style: none;
}

.footer-links a:hover {
    color: var(--vibrant-purple);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--soft-pink);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    text-align: center;
}

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

    .footer-info,
    .footer-contact,
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Final Polish: Delayed Reveals & Transitions */
.reveal {
    transition-property: opacity, transform, filter;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.active:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.active:nth-child(3) {
    transition-delay: 0.3s;
}

/* Bento Card Style Reveals */
.pain-card:nth-child(2) {
    transition-delay: 0.2s;
}

.pain-card:nth-child(3) {
    transition-delay: 0.3s;
}

.pain-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Tablet & Mobile Fine-tuning */
@media (max-width: 1024px) {
    .container {
        padding: 0 8%;
    }

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

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .btn-primary.large {
        width: 100%;
        padding: 20px;
    }

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

    .cta-box {
        padding: 4rem 1.5rem;
    }

    .stage-info {
        padding: 2.5rem 1.5rem;
    }

    .case-card {
        padding: 2rem 1.5rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }
}

/* Sequential Counters styling */
.counter-value {
    display: inline-block;
    min-width: 1ch;
    transition: color 0.3s ease;
}

.counter-section.active .stat-card {
    border-color: rgba(125, 47, 220, 0.3);
}