/* Reset & Basics */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a0f24;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Layers */
.bg-layer {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(circle at 40% 30%, #3a1c5d 0%, #0a0b12 70%);
}

.bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1542204165-65bf26472b9b?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Reduced opacity to darken image and let purple gradient show more */
    filter: blur(2px);
    z-index: -1;
}

/* Subtle Glow for sections */
.hero, .proof-section {
    position: relative;
}

.hero::before, .proof-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(126, 59, 237, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1400px;
    height: 64px;
     background: rgba(10, 5, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 24px;
    z-index: 100;
}

.nav-logo-img {
    display: block;
    width: auto;
    height: 50px;
}

.nav-marquee {
    flex: 1;
    margin: 0 24px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 99px;
    overflow: hidden;
    /* Fading edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

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

.marquee-logo {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

/* Optical alignment to ensure consistent visual weight */
.marquee-logo[src*="be-real"] {
    height: 24px;
}

.marquee-logo[src*="join-friday"] {
    height: 28px;
}

.marquee-logo[src*="moon-pay"] {
    height: 28px;
}

.marquee-logo[src*="revo-madic"] {
    height: 24px;
}

.marquee-logo[src*="national-debt-relief"] {
    height: 52px;
}

.marquee-logo[src*="american-hartford-gold"] {
    height: 54px;
}

.marquee-logo[src*="polymarket"] {
    height: 24px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.btn-book {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 24px;
    border-radius: 100px;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

.btn-hamburger {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-hamburger:hover {
    transform: scale(1.05);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #0d111a;
    border-radius: 20px;
    width: 240px;
    padding: 16px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.nav-dropdown.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.nav-dropdown a:hover {
    background-color: rgba(0, 255, 204, 0.05);
    color: #00ffcc;
}

.nav-dropdown svg {
    color: #8892b0;
    transition: color 0.2s;
}

.nav-dropdown a:hover svg {
    color: #00ffcc;
}

.nav-dropdown li.separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 8px 24px;
}

.nav-dropdown li.highlight a {
    color: #00ffcc;
}

.nav-dropdown li.highlight a svg {
    color: #00ffcc;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px 100px 40px;
    min-height: 100vh;
    gap: 60px;
}

.hero-left {
    flex: 1;
    max-width: 900px;
    padding-left: 50px;
}

/* Pretitle Pill */
.pretitle-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00ffcc;
    margin-bottom: 32px;
}

.pretitle-pill #pretitle-text {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.pretitle-letter {
    display: inline-block;
    white-space: pre;
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    filter: blur(0);
}

.pretitle-letter.is-entering {
    opacity: 0;
    animation: liftInWavy 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.pretitle-letter.is-exiting {
    opacity: 1;
    animation: liftOutWavy 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.pretitle-pill .dot {
    width: 6px;
    height: 6px;
    background-color: #00ffcc;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ffcc;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes liftInWavy {
    0% {
        opacity: 0;
        transform: translateY(15px) rotate(-12deg);
        filter: blur(2px);
    }
    40% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(-3px) rotate(6deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes liftOutWavy {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }
    70% {
        opacity: 0;
        filter: blur(1px);
        transform: translateY(-10px) rotate(6deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) rotate(-6deg);
        filter: blur(2px);
    }
}

@keyframes dot-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #00ffcc;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
        box-shadow: 0 0 12px #00ffcc, 0 0 4px #00ffcc;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #00ffcc;
    }
}

/* Headline */
.hero-headline {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3em;
}

.hero-headline .line-1 {
    color: #ffffff;
    white-space: nowrap;
}

/* CONVERTS Word Text Effect */
.line-2-wrapper {
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

/* Glassmorphic Box behind word */
.box-behind {
    position: absolute;
    top: -5px;
    left: -20px;
    right: -20px;
    bottom: -5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    z-index: 1;
}

.word-converts {
    position: relative;
    display: inline-block;
    z-index: 2;
    white-space: nowrap;
}

.letter {
    display: inline-block;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Staggered Cascading Wavy Animations */
.letter.is-entering {
    opacity: 0;
    animation: headlineLiftInWavy 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.letter.is-exiting {
    animation: headlineLiftOutWavy 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes headlineLiftInWavy {
    0% {
        opacity: 0;
        transform: translateY(40px) rotate(-12deg);
        filter: blur(4px);
    }
    40% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(-8px) rotate(6deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes headlineLiftOutWavy {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }
    70% {
        opacity: 0;
        filter: blur(2px);
        transform: translateY(-15px) rotate(6deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) rotate(-8deg);
        filter: blur(4px);
    }
}

/* Outline Text - Base */
.word-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

/* Solid Text of bottom half, animated waving */
.word-solid {
    display: block;
    color: #facc16;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-text-stroke: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.word-solid.is-waving {
    /* 
       To adjust the wave:
       - Speed: Change '1.5s' in the animation line below (smaller number = faster).
       - Wave Height / Crest & Trough (using cubic Beziers 'C'):
         - Our SVG viewBox is 0 to 100 vertically (Y=0 is top, Y=100 is bottom).
         - The path starts and crosses the baseline at Y=35 ('M 0 35', '... 100 35', '... 200 35').
         - The crest (highest wave point, nearest to the top) is Y=25 (around the '50 25' control points).
         - The trough (lowest wave point, nearest to the bottom) is Y=50 (around the '150 50' control points).
           To lower the trough physically, increase Y=50 (e.g., to 52 or 55). To raise it, decrease Y=50.
       - Wave Count: Change 'mask-size: 250px' (smaller = more waves visible, larger = fewer).
       - Note: For a smooth loop, the 'mask-position' in @keyframes must match the 'mask-size' px value.
    */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100' preserveAspectRatio='none'%3E%3Cpath d='M 0 35 C 25 35, 25 25, 50 25 C 75 25, 75 35, 100 35 C 125 35, 125 53, 150 53 C 175 53, 175 35, 200 35 L 200 100 L 0 100 Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-size: 250px 100%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100' preserveAspectRatio='none'%3E%3Cpath d='M 0 35 C 25 35, 25 25, 50 25 C 75 25, 75 35, 100 35 C 125 35, 125 53, 150 53 C 175 53, 175 35, 200 35 L 200 100 L 0 100 Z' fill='black'/%3E%3C/svg%3E");
    mask-repeat: repeat-x;
    mask-size: 250px 100%;
    animation: wave-flow 2s linear infinite;
}

@keyframes wave-flow {
    0% {
        -webkit-mask-position: 0px 0px;
        mask-position: 0px 0px;
    }
    100% {
        -webkit-mask-position: -250px 0px;
        mask-position: -250px 0px;
    }
}

/* Subline */
.hero-subline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #bfaed1;
    margin-bottom: 40px;
    max-width: 500px;
}

/* CTA Button */
.cta-main {
    padding: 16px 32px;
    font-size: 1rem;
    display: inline-flex;
    border-radius: 8px; /* More rectangular than navbar pill */
}

/* Phone Mockup */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-frame {
    --phone-radius: 48px;
    --phone-border: 8px;
    width: 335px;
    height: 680px;
    background-color: #000;
    border-radius: var(--phone-radius);
    border: var(--phone-border) solid #1a1a1a;
    box-shadow: 
        0 0 0 2px #333,
        20px 30px 60px rgba(0,0,0,0.6),
        inset 0 0 0 4px #000;
    position: relative;
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    
    /* Perfect clipping masks */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    isolation: isolate;
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
}

.inner-shadow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    z-index: 10;
    pointer-events: none;
    border-radius: calc(var(--phone-radius) - var(--phone-border));
}

.phone-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    border-radius: calc(var(--phone-radius) - var(--phone-border));
}

.phone-ui {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    border-radius: calc(var(--phone-radius) - var(--phone-border));
    overflow: hidden;
}

.video-center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 18;
}

.video-center-play svg {
    margin-left: 3px;
}

.phone-frame.paused-state .video-center-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.caption-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff200;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.right-actions {
    position: absolute;
    right: 16px;
    bottom: 25%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.action-btn {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.action-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.share-btn {
    background: rgba(138, 43, 226, 0.8);
}

.share-btn:hover {
    background: rgba(138, 43, 226, 1);
}

/* Play/Pause / Next Button Specific Styles */
#next-btn {
    background: #7e3bed;
    color: #ffffff;
}

#next-btn svg {
    transition: color 0.2s;
}

#next-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

#next-btn:hover svg {
    color: #7e3bed;
    stroke: #7e3bed;
    fill: #7e3bed;
}

/* Heart Button & Reactions */
#heart-btn:hover {
    background: rgba(255, 0, 0, 0.2);
}

#heart-btn.loved svg,
#heart-btn:hover svg {
    fill: #ff4d4d;
    stroke: #ff4d4d;
}

.reactions-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    overflow: hidden;
}

.flying-heart {
    position: absolute;
    pointer-events: none;
    animation: flyUp var(--duration, 4.5s) linear forwards, sway var(--sway-duration, 2.2s) ease-in-out infinite;
}

@keyframes flyUp {
    0% {
        transform: translateY(0) scale(0.4);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translateY(-20px) scale(0.9);
    }
    100% {
        transform: translateY(-380px) scale(1.4);
        opacity: 0;
    }
}

@keyframes sway {
    0%, 100% {
        margin-right: 0;
    }
    50% {
        margin-right: 15px;
    }
}

/* Proof Section */
.proof-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.proof-header {
    text-align: center;
}

.proof-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.02em;
}

.proof-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.proof-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background-color: #111;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
}

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

.proof-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.play-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: auto;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.proof-caption {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    color: #ffd700;
    -webkit-text-stroke: 2px #000;
    text-shadow: 2px 2px 0 #000, 4px 4px 10px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    transform: translateY(10px);
}

.view-all-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    opacity: 0.5;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.view-all-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.arrow-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.proof-card:hover .arrow-icon-wrapper {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.view-all-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
}

.services-header-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.gradient-text-services {
    background: linear-gradient(90deg, #b485ff, #85e8d5, #5ea5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0 0 0;
}

.book-call-btn-services {
    white-space: nowrap;
    padding: 16px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    align-self: center;
    background: #fff;
    color: #000;
    border-radius: 100px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.book-call-btn-services:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

@media (min-width: 1025px) {
    .service-card:nth-child(2) {
        margin-top: -40px;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.22;
    z-index: 0;
}

/* Background Gradients */
.theme-purple {
    background: linear-gradient(180deg, #371b6d 0%, #000000 100%);
}
.theme-purple::before {
    background: radial-gradient(circle at top left, #8a4bff 0%, transparent 70%);
}

.theme-green {
    background: linear-gradient(180deg, #124f3c 0%, #000000 100%);
}
.theme-green::before {
    background: radial-gradient(circle at top left, #2ecc99 0%, transparent 70%);
}

.theme-blue {
    background: linear-gradient(180deg, #163c75 0%, #000000 100%);
}
.theme-blue::before {
    background: radial-gradient(circle at top left, #4b94ff 0%, transparent 70%);
}

/* Specific theme text colors */
.theme-purple h3 { color: #b485ff; }
.theme-green h3 { color: #85e8d5; }
.theme-blue h3 { color: #85baff; }

.theme-purple .service-icon { background: #7a3add; }
.theme-green .service-icon { background: linear-gradient(135deg, #4ceea6, #23bc7f); }
.theme-blue .service-icon { background: linear-gradient(135deg, #6cafff, #3a7ce8); }

.theme-purple .check-icon { background: rgba(138, 75, 255, 0.35); color: #b485ff; }
.theme-green .check-icon { background: rgba(46, 204, 153, 0.35); color: #85e8d5; }
.theme-blue .check-icon { background: rgba(75, 148, 255, 0.35); color: #85baff; }

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.service-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.check-icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* How We Get Results Section */
.how-section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.how-header {
    text-align: center;
}

.how-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: #fff;
    letter-spacing: -0.02em;
}

.how-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
}

.how-card {
    position: relative;
    padding: 80px 48px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-purple-outline {
    border: 1px solid rgba(138, 75, 255, 0.5);
}

.theme-green-outline {
    border: 1px solid rgba(46, 204, 153, 0.5);
}

.how-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    position: absolute;
    top: 32px;
    left: 32px;
}

.theme-purple-outline .how-number {
    color: rgba(138, 75, 255, 0.4);
}

.theme-green-outline .how-number {
    color: rgba(46, 204, 153, 0.4);
}

.how-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    gap: 20px;
}

.how-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 8px;
}

.theme-purple-outline .how-icon-wrapper {
    background: #8a4bff;
    box-shadow: 0 0 40px rgba(138, 75, 255, 0.6);
}

.theme-green-outline .how-icon-wrapper {
    background: #2ecc99;
    box-shadow: 0 0 40px rgba(46, 204, 153, 0.6);
}

.how-icon-wrapper svg {
    color: #fff;
}

.how-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.how-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 769px) {
    .how-card:nth-child(even) {
        transform: translateY(120px);
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 120px 20px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.case-studies-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 60px;
}

.cs-header-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #fff;
    letter-spacing: -0.02em;
    display: flex;
    gap: 12px;
}

.gradient-text-cs {
    background: linear-gradient(90deg, #8a4bff, #4b94ff, #2ecc99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-header-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cs-book-btn {
    white-space: nowrap;
    padding: 16px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    align-self: center;
    background: #fff;
    color: #000;
    border-radius: 100px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cs-book-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cs-card {
    text-decoration: none;
    background: #0f1014;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05); /* base border */
    cursor: pointer;
}

.cs-card:hover {
    transform: translateY(-8px);
}

/* Card Themes */
.theme-purple-card {
    background: linear-gradient(180deg, rgba(138, 75, 255, 0.1) 0%, #0a0b0f 50%);
    border: 1px solid rgba(138, 75, 255, 0.45);
    border-bottom: none;
    box-shadow: 0 10px 40px rgba(138, 75, 255, 0.05);
}
.theme-purple-card:hover {
    box-shadow: 0 20px 60px rgba(138, 75, 255, 0.25);
    border: 1px solid rgba(138, 75, 255, 0.65);
    border-bottom: none;
}

.theme-green-card {
    background: linear-gradient(180deg, rgba(46, 204, 153, 0.1) 0%, #0a0b0f 50%);
    border: 1px solid rgba(46, 204, 153, 0.45);
    border-bottom: none;
    box-shadow: 0 10px 40px rgba(46, 204, 153, 0.05);
}
.theme-green-card:hover {
    box-shadow: 0 20px 60px rgba(46, 204, 153, 0.25);
    border: 1px solid rgba(46, 204, 153, 0.65);
    border-bottom: none;
}

.theme-blue-card {
    background: linear-gradient(180deg, rgba(75, 148, 255, 0.1) 0%, #0a0b0f 50%);
    border: 1px solid rgba(75, 148, 255, 0.45);
    border-bottom: none;
    box-shadow: 0 10px 40px rgba(75, 148, 255, 0.05);
}
.theme-blue-card:hover {
    box-shadow: 0 20px 60px rgba(75, 148, 255, 0.25);
    border: 1px solid rgba(75, 148, 255, 0.65);
    border-bottom: none;
}


.cs-media-container {
    position: relative;
    padding: 24px 24px 0 24px;
}

.cs-media-container::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 0;
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
    transition: background 0.3s ease;
}

.theme-purple-card .cs-media-container::after {
    background: linear-gradient(180deg, rgba(21, 11, 43, 0.3) 0%, rgba(21, 11, 43, 0.85) 100%), rgba(138, 75, 255, 0.2);
}

.theme-green-card .cs-media-container::after {
    background: linear-gradient(180deg, rgba(8, 33, 26, 0.3) 0%, rgba(8, 33, 26, 0.85) 100%), rgba(46, 204, 153, 0.2);
}

.theme-blue-card .cs-media-container::after {
    background: linear-gradient(180deg, rgba(11, 26, 51, 0.3) 0%, rgba(11, 26, 51, 0.85) 100%), rgba(75, 148, 255, 0.2);
}

.cs-media-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    background: #000;
    transition: opacity 0.3s ease;
}

.cs-card:hover .cs-media-placeholder {
    opacity: 0.9;
}

.cs-logo-wrapper {
    position: absolute;
    bottom: -24px;
    left: 48px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: #0a0b0f;
}

.cs-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
    overflow: hidden;
}

.cs-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-purple {
    border: 2px solid #8a4bff;
    box-shadow: 0 0 20px rgba(138, 75, 255, 0.5);
}
.logo-green {
    border: 2px solid #2ecc99;
    box-shadow: 0 0 20px rgba(46, 204, 153, 0.5);
}
.logo-blue {
    border: 2px solid #4b94ff;
    box-shadow: 0 0 20px rgba(75, 148, 255, 0.5);
}


.cs-content {
    padding: 48px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cs-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.cs-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.cs-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}

.cs-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.right-stat {
    text-align: right;
    align-items: flex-end;
}

.cs-stat h4 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.stat-highlight-purple { color: #8a4bff; }
.stat-highlight-green { color: #2ecc99; }
.stat-highlight-blue { color: #4b94ff; }
.cs-stat h4:not([class^="stat-highlight"]) { color: #fff; }

.cs-stat span {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Founder Section */
.founder-section {
    padding: 120px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.founder-card {
    display: flex;
    background: #0a0b0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a4bff, transparent);
    opacity: 0.7;
}

.founder-content {
    padding: 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-content h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    color: #fff;
}

.gradient-text-founder {
    background: linear-gradient(90deg, #b485ff, #85e8d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-subtitle {
    font-size: 1rem;
    font-weight: 800;
    color: #2ecc99;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.founder-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 600px;
}

.founder-link {
    color: #b485ff;
    text-decoration: none;
    position: relative;
    font-weight: 600;
}

.founder-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #b485ff;
}

.founder-link-alt {
    color: #fff;
    text-decoration: none;
    position: relative;
    font-weight: 600;
}

.founder-link-alt::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #fff;
}

.founder-book-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 6px 0 #b0b5be;
    transition: all 0.2s ease;
}

.founder-book-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #b0b5be;
}

.founder-book-btn:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #b0b5be;
}

.founder-image-wrapper {
    flex: 1;
    position: relative;
    min-height: 500px;
    padding: 40px;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.founder-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(10, 11, 15, 0.65);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.founder-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.badge-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Why Section */
.why-section {
    padding: 120px 20px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(138, 75, 255, 0.3);
    background: rgba(10, 11, 15, 0.4);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.why-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #8a4bff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px #8a4bff;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.why-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
}

.why-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 1100px;
    margin: 0 0 40px 0;
}

@media (min-width: 1200px) {
    .why-headline {
        min-width: 1150px;
        max-width: 1250px;
    }
}

.gradient-text-why-purple {
    background: linear-gradient(90deg, #b485ff, #8a4bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #b485ff;
}

.gradient-text-why-cyan {
    background: linear-gradient(90deg, #85e8d5, #4b94ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #85e8d5;
}

.why-description-box {
    border-left: 2px solid #8a4bff;
    padding-left: 28px;
    max-width: 1000px;
}

.why-description-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.why-description-box strong {
    font-weight: 700;
}

/* Why Stats Grid */
.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    width: 100%;
}

.stat-card {
    background: #0a0b0f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.clickable-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.clickable-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.clickable-card:hover .icon-ig {
    background: rgba(138, 75, 255, 0.1);
    box-shadow: 0 0 15px rgba(138, 75, 255, 0.2);
}
.clickable-card:hover .icon-fb {
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}
.clickable-card:hover .icon-yt {
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}
.clickable-card:hover .icon-x {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Chart Card Specific */
.chart-card {
    grid-column: 1;
    padding: 40px;
}

.card-header {
    margin-bottom: 40px;
}

.card-overline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.text-cyan {
    color: #2ecc99;
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.performance-chart-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 32px;
    min-height: 250px;
}

.performance-chart {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    padding: 0 20px;
}

.chart-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 0;
}

.grid-line {
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    width: 100%;
    height: 1px;
}

.bar-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
    width: 60px;
}

.bar-wrapper {
    height: 160px;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.bar {
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bar-x {
    height: 15%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.bar-yt {
    height: 40%;
    background: rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.3);
}

.bar-fb {
    height: 70%;
    background: rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.bar-ig {
    height: 100%;
    background: linear-gradient(180deg, rgba(138, 75, 255, 0.4) 0%, rgba(138, 75, 255, 0.2) 100%);
    border: 1px solid rgba(138, 75, 255, 0.6);
    box-shadow: 0 0 35px rgba(138, 75, 255, 0.3);
}

.bar-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

/* Tooltip */
.tooltippable {
    cursor: pointer;
}

.tooltip-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}

.tooltip-content {
    background: #fff;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}

.tooltippable:hover .tooltip-container {
    opacity: 1;
    visibility: visible;
    top: -48px;
}

.chart-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.chart-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.chart-desc strong {
    color: #fff;
}

/* Small Stat Cards */
.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-ig {
    background: rgba(138, 75, 255, 0.05);
    color: #b485ff;
    border-color: rgba(138, 75, 255, 0.2);
}

.icon-fb {
    background: rgba(59, 130, 246, 0.05);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.2);
}

.icon-yt {
    background: rgba(239, 68, 68, 0.05);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.2);
}

.icon-x {
    background: rgba(255, 255, 255, 0.03);
    color: #e5e7eb;
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pill-purple { color: #b485ff; }
.pill-blue { color: #60a5fa; }
.pill-red { color: #f87171; }
.pill-gray { color: #e5e7eb; }

.stat-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-value-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value-group h4 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.stat-value-group span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-metric {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 24px;
    background: #050505;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gradient-text-faq {
    background: linear-gradient(90deg, #b485ff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.faq-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    width: 100%;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #0a0b0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-summary:hover {
    color: #b485ff;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.faq-link {
    color: #b485ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-link:hover {
    color: #d1b3ff;
}

/* Prefooter CTA Section */
.prefooter-cta-section {
    padding: 120px 24px;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prefooter-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    position: relative;
    z-index: 1;
}

.prefooter-text {
    font-size: clamp(1.15rem, 3vw, 1.4rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

.prefooter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.prefooter-btn svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.prefooter-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.35);
}

.prefooter-btn:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 32px;
    }
    
    .case-studies-header-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 32px;
    }
    
    .cs-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        flex-direction: column-reverse;
    }
    
    .founder-content {
        padding: 40px;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 480px), (max-width: 768px) and (orientation: portrait) {
    .mobile-only {
        display: block;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 16px;
    }
    
    .why-headline {
        font-size: 2.2rem;
        margin-bottom: 24px;
        line-height: 1.2;
    }
    
    .why-description-box {
        padding-left: 16px;
        margin-top: 24px;
    }
    
    .why-description-box p {
        font-size: 1.05rem;
    }

    .why-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-card {
        grid-column: 1;
        padding: 24px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .performance-chart {
        padding: 0;
    }
    
    .bar-group {
        width: 40px;
    }
    
    .stat-small-grid {
        grid-template-columns: 1fr;
    }
    
    @media (max-width: 768px) and (orientation: landscape) {
        .stat-small-grid {
            grid-template-columns: 1fr 1fr;
        }
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .stat-value-group h4 {
        font-size: 1.75rem;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .how-section {
        padding: 60px 16px;
    }
    
    .how-card {
        padding: 32px;
        min-height: auto;
        height: auto;
    }
    
    .how-number {
        top: 24px;
        left: 24px;
        font-size: 3rem;
    }
    
    .how-header h2 {
        font-size: 2.25rem;
    }
    
    .services-section {
        padding: 60px 16px;
    }

    .services-header-content h2 {
        font-size: 2.5rem;
    }
    
    .services-header-content p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .book-call-btn-services {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-section {
        padding: 60px 16px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-summary {
        padding: 20px 16px;
        font-size: 1rem;
    }

    .faq-content {
        padding: 0 16px 20px 16px;
    }

    .prefooter-cta-section {
        padding: 80px 16px;
    }

    .prefooter-content {
        gap: 24px;
    }
    
    .case-studies-section {
        padding: 60px 16px;
    }
    
    .case-studies-header-box {
        padding: 24px;
        border-radius: 20px;
    }
    
    .cs-header-text h2 {
        font-size: 2.5rem;
    }
    
    .cs-header-text p {
        font-size: 1rem;
    }
    
    .cs-grid {
        gap: 24px;
    }
    
    .cs-card {
        border-radius: 24px;
    }
    
    .cs-content {
        padding: 32px 24px 24px 24px;
    }
    
    .cs-stat h4 {
        font-size: 1.5rem;
    }
    
    .cs-book-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .founder-section {
        padding: 60px 16px;
    }
    .founder-content {
        padding: 32px 24px;
    }
    .founder-content h2 {
        font-size: 3rem;
    }
    .founder-image-wrapper {
        padding: 24px;
        min-height: 400px;
    }
    .founder-badge {
        bottom: 24px;
        left: 24px;
        right: 24px;
        padding: 16px;
    }
    .founder-card::before {
        left: 10%;
        right: 10%;
    }
}

.desk-only {
    display: inline-flex;
}

.mob-only {
    display: none;
}

@media (max-width: 768px) {
    .desk-only {
        display: none;
    }
    .mob-only {
        display: block;
    }
}

.card-watermark {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 14rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: left;
        padding: 110px 24px 80px 24px;
        gap: 40px;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }

    .hero-headline {
        justify-content: flex-start;
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }

    .hero-subline {
        margin: 0 0 32px 0;
    }

    .nav-marquee {
        display: flex;
    }
}

@media (max-width: 768px) {
    .proof-section {
        padding: 60px 16px;
        gap: 30px;
    }
    .proof-header h2 {
        font-size: 2.2rem;
    }
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3.2rem);
        gap: 0.25em;
    }
    .phone-frame {
        --phone-radius: 46px;
        --phone-border: 7px;
        width: 320px;
        height: 648px;
    }
    .dynamic-island {
        width: 90px;
        height: 26px;
    }
}

@media (max-width: 600px) {
    .navbar {
        top: clamp(8px, 2vw, 16px);
        width: calc(100% - clamp(16px, 4vw, 32px));
        height: clamp(42px, 10vw, 54px);
        padding: 0 clamp(4px, 1vw, 8px) 0 clamp(10px, 3vw, 18px);
    }
    .navbar .btn-book {
        display: none; /* Already present inside hamburger menu dropdown */
    }
    .nav-logo-img {
        height: clamp(26px, 6.5vw, 36px);
    }
    
    .nav-marquee {
        height: clamp(30px, 8vw, 40px);
        margin: 0 clamp(8px, 2vw, 16px);
    }
    
    .marquee-track {
        gap: clamp(40px, 10vw, 60px);
    }
    
    .marquee-logo {
        height: clamp(16px, 4vw, 22px);
    }

    .marquee-logo[src*="be-real"] { height: clamp(14px, 3.5vw, 18px); }
    .marquee-logo[src*="join-friday"] { height: clamp(18px, 4.5vw, 24px); }
    .marquee-logo[src*="moon-pay"] { height: clamp(18px, 4.5vw, 24px); }
    .marquee-logo[src*="revo-madic"] { height: clamp(14px, 3.5vw, 18px); }
    .marquee-logo[src*="national-debt-relief"] { height: clamp(30px, 8vw, 40px); }
    .marquee-logo[src*="american-hartford-gold"] { height: clamp(32px, 8.5vw, 42px); }
    .marquee-logo[src*="polymarket"] { height: clamp(14px, 3.5vw, 18px); }

    .btn-hamburger {
        width: clamp(32px, 8vw, 42px);
        height: clamp(32px, 8vw, 42px);
    }
    .btn-hamburger .icon-ham, 
    .btn-hamburger .icon-close {
        width: clamp(18px, 4.5vw, 24px);
        height: clamp(18px, 4.5vw, 24px);
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .pretitle-pill {
        padding: 6px 12px;
        font-size: 0.7rem;
        margin-bottom: 20px;
    }
    .hero-headline {
        font-size: clamp(2.3rem, 11.5vw, 3.2rem);
        gap: 0.15em;
    }
    .line-2-wrapper {
        width: calc(100% + 8px);
        margin-left: -4px;
        justify-content: flex-start;
        padding-left: 16px;
        margin-top: 8px;
    }
    .box-behind {
        top: -3px;
        left: 0;
        right: 0;
        bottom: -3px;
        border-radius: 12px;
    }
    .hero-subline {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    .phone-frame {
        --phone-radius: 38px;
        --phone-border: 6px;
        width: 280px;
        height: 567px;
    }
    .dynamic-island {
        width: 80px;
        height: 22px;
        top: 8px;
    }
    .caption-text {
        font-size: 1.6rem;
    }
    .video-center-play {
        width: 48px;
        height: 48px;
    }
    .right-actions {
        right: 12px;
        gap: 16px;
    }
    .action-btn {
        width: 38px;
        height: 38px;
    }
    .action-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .proof-grid {
        gap: 12px;
    }
}

/* Footer Section */
.site-footer {
    background: #050505;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 320px 1fr 380px;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.4;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.mt-contact {
    align-items: center;
}

.mt-contact svg {
    margin-top: 0;
}

.footer-social {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    color: #fff;
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: #b485ff;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-links-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-links-col a:hover {
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

.mt-8 {
    margin-top: 48px;
}

.mt-8-comparison {
    margin-top: 68px; /* To align with the comparison block visually */
}

/* Newsletter */
.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.newsletter-form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px 20px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: #e5e5e5;
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.newsletter-form button:hover {
    background: #fff;
}

.newsletter-card p.newsletter-spam {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsiveness for Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 16px;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mt-8-comparison, .mt-8 {
        margin-top: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile landscape mode only: Align the second line headline pill similar to mobile portrait */
@media (max-width: 950px) and (orientation: landscape) {
    .hero-headline .line-1 {
        width: 100%;
    }
    .line-2-wrapper {
        display: inline-block !important;
        width: auto !important;
        margin-left: -4px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-top: 8px !important;
    }
    .box-behind {
        top: -3px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: -3px !important;
        border-radius: 12px !important;
    }
}
