/* =========================================
   CURE LAB RECONSTRUCTION
   Theme: Dark / Medical Tech
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* --- Colors --- */
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;
    --color-accent: #29c6cc;
    --color-accent-hover: #1ca8ad;
    --color-border: #333333;

    /* --- Fonts --- */
    --font-heading: 'Roboto', sans-serif;
    /* Fallback for Geometos */
    --font-body: 'Roboto', sans-serif;

    /* --- Spacing --- */
    --container-padding: 2rem;
    --max-width: 1400px;
    --header-height: 80px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-accent {
    color: var(--color-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    /* Explicit height */
    padding: 0 28px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
    /* Include padding/border in height */
    line-height: normal;
    /* Reset line-height */
}

/* Variant: Full */
.btn-full {
    background: var(--color-accent);
    color: var(--color-bg);
    border: 2px solid var(--color-accent);
    /* Explicit 2px border */
}

.btn-full:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    box-shadow: 0 0 20px rgba(41, 198, 204, 0.4);
    color: var(--color-bg);
}

/* Variant: Outline */
.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    /* Explicit 2px border */
}

.btn-outline:hover {
    background: rgba(41, 198, 204, 0.1);
    color: #fff;
    border-color: var(--color-accent);
}

.section-padding {
    padding: 100px 0;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-accent);
}

/* Minimal Hamburger Menu for Desktop (as per original site) */
.nav-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.nav-toggle:hover span {
    background: var(--color-accent);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Simulate the 3D dark atmosphere */
    background: radial-gradient(circle at 60% 50%, #1a1a1a 0%, #000000 70%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hero__buttons {
    display: flex;
    gap: 20px;
}

.hero__graphic {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    background: url('../assets/img/hero-placeholder.png') no-repeat center center;
    background-size: contain;
    z-index: 1;
    opacity: 0.8;
}

/* =========================================
   CONTENT SECTIONS
   ========================================= */
.about {
    border-bottom: 1px solid var(--color-border);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.image-block {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    height: 100%;
    min-height: 400px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer__links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer__links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--color-accent);
}

/* =========================================
   CLEAN TOP SECTION
   ========================================= */

.top-section {
    padding-top: 50px;
    /* Space for top spacing since header is gone */
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Hero Grid: 60% Content / 40% Video */
.grid-hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
}

.top-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* =========================================
   REDESIGNED HERO SECTION
   ========================================= */
.hero-section {
    padding: 60px 0 80px;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-logo {
    margin-bottom: 60px;
    text-align: left;
}

.hero-logo img {
    height: 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(41, 198, 204, 0.1);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(41, 198, 204, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    align-items: stretch;
    /* Force equal height */
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: nowrap;
}

/* Button overrides removed - using global .btn classes */

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.stat {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(41, 198, 204, 0.1);
}

.trust-bar {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #444;
    letter-spacing: 2px;
    font-weight: 700;
}

.trust-logos {
    display: flex;
    gap: 40px;
    filter: grayscale(1) opacity(0.4);
}

.trust-logos span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: column;
    }
}

.top-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 40px;
}

.top-logo span {
    color: var(--color-accent);
}

/* =========================================
   CONVERSION UPDATES (Urgency & Modal)
   ========================================= */

/* Top Urgency Bar */
.urgency-bar {
    background: #ff4d4d;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        background: #ff4d4d;
    }

    50% {
        background: #e60000;
    }

    100% {
        background: #ff4d4d;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

/* =========================================
   LEAD GEN ELEMENTS
   ========================================= */

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #000;
    /* Even narrower as requested */
    max-width: 380px;
}

/* Hero Video - Smaller Box */
.video-wrapper.hero-video {
    max-width: 400px;
    padding-bottom: 225px;
    /* Fixed height for small box */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(41, 198, 204, 0.2);
}

/* YouTube-Style Video Embed */
.video-embed {
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-thumb-img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #ff0000;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.video-thumbnail:hover .video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Stock Bar (FOMO) */
.stock-status {
    margin-bottom: 25px;
}

.stock-track {
    width: 100%;
    height: 12px;
    background: #333;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 8px;
    border: 1px solid #555;
    position: relative;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4d4d, #ff9900);
    width: 78%;
    /* 78/100 sold */
    position: relative;
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.stock-text {
    font-size: 0.85rem;
    color: #ccc;
    display: flex;
    justify-content: space-between;
}

.video-wrapper iframe,
.video-wrapper video,
.video-wrapper .placeholder-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #222 0%, #000 100%);
}

/* Trust Slider (Marquee) */
.trust-slider {
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.trust-item {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0.6;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Full Width Trust Slider (Below Hero) */
.trust-slider-fullwidth {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-slider-fullwidth .trust-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.trust-slider-fullwidth .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 1rem;
    white-space: nowrap;
}

.trust-slider-fullwidth .trust-logo-icon {
    font-size: 1.3rem;
    color: var(--color-accent);
}

.trust-slider-fullwidth .trust-logo-text span {
    color: #fff;
}

/* Musterbox Section */
.musterbox-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--color-border);
}

.musterbox-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.limit-badge {
    display: inline-block;
    background: rgba(255, 50, 50, 0.15);
    color: #ff4d4d;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 50, 50, 0.3);
}

.price-strike {
    text-decoration: line-through;
    color: var(--color-text-muted);
    margin-right: 10px;
    margin-bottom: 40px;
}

.price-free {
    color: var(--color-accent);
    font-size: 1.3rem;
    font-weight: 700;
}

.top-logo span {
    color: var(--color-accent);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 16px;
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    margin-top: 10px;
}

.btn-full:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 0 30px rgba(41, 198, 204, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero__content,
    .hero__visual {
        width: 100%;
    }

    /* =========================================
   CLASSIC LP ELEMNTS & REFINEMENTS
   ========================================= */

    /* Adjusted Header Layout */
    .header__content {
        justify-content: space-between;
    }

    .header .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
        background: var(--color-accent);
        color: #000;
        border: none;
    }

    .header .btn:hover {
        background: var(--color-accent-hover);
        color: #000;
    }

    /* Video Box Style (Classic LP) */
    .video-wrapper {
        /* Landscape / Flexible */
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
        background: #000;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        margin-bottom: 20px;
    }


    /* Sticky Float Button */
    .sticky-cta {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: var(--color-accent);
        color: #000;
        padding: 15px 30px;
        border-radius: 50px;
        font-family: var(--font-heading);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        box-shadow: 0 10px 30px rgba(41, 198, 204, 0.4);
        z-index: 900;
        display: flex;
        align-items: center;
        gap: 10px;
        animation: bounce 2s infinite;
        cursor: pointer;
        border: 2px solid #fff;
    }

    .sticky-cta:hover {
        background: #fff;
        color: var(--color-accent);
        border-color: var(--color-accent);
        animation: none;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }
    }

    /* Typography Scale Down */
    .hero__title {
        font-size: clamp(2rem, 4vw, 3.5rem);
        /* Scaled down from 4.5rem */
    }

    .section-title {
        font-size: 2rem;
        /* Scaled down from 2.5rem */
    }

    /* Pain Section Styling */
    .pain-list li {
        background: rgba(255, 50, 50, 0.05);
        border-left: 3px solid #ff4d4d;
        padding: 15px;
        margin-bottom: 15px;
        color: #ddd;
    }

    .pain-list li strong {
        color: #ff4d4d;
        display: block;
        margin-bottom: 5px;
    }
}

/* =========================================
   CONTENT EXPANSION (Comparison & Steps)
   ========================================= */

/* Comparison Table */
.comparison-section {
    background: #0a0a0a;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
}

/* Mobile responsive comparison */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comp-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.comp-card.bad {
    border-top: 4px solid #ff4d4d;
}

.comp-card.good {
    border-top: 4px solid var(--color-accent);
    background: #0f1818;
    /* Slight tint */
    transform: scale(1.02);
    border: 1px solid var(--color-accent-dim);
    box-shadow: 0 10px 40px rgba(41, 198, 204, 0.1);
}

.comp-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 2.5em;
    /* Align heights across cards */
    display: flex;
    align-items: center;
}

.comp-list {
    list-style: none;
    padding: 0;
}

.comp-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.95rem;
}

.comp-list li:last-child {
    border-bottom: none;
}

.icon-bad {
    color: #ff4d4d;
}

.icon-good {
    color: var(--color-accent);
}

/* Process Steps / Info Boxes */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: #111;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #222;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    border-color: #333;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.step-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

.cal-mockup {
    background: #fff;
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
}

.cal-header {
    background: #f0f0f0;
    padding: 15px;
    color: #333;
    font-weight: 700;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    gap: 5px;
}

.cal-day {
    padding: 10px;
    color: #333;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}

.cal-day:hover {
    background: #eee;
}

.cal-day.active {
    background: var(--color-accent);
    color: #fff;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.testimonial-quote p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), #1a8a8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    color: #fff;
    margin-bottom: 3px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.85rem;
}

/* =========================================
   TECHNOLOGY SECTION
   ========================================= */
.tech-features {
    margin-top: 30px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.tech-feature:hover {
    border-color: var(--color-accent);
}

.tech-feature i {
    font-size: 2rem;
    color: var(--color-accent);
    width: 50px;
    text-align: center;
}

.tech-feature strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.tech-feature span {
    color: #888;
    font-size: 0.9rem;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-question {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question i {
    color: var(--color-accent);
}

.faq-answer {
    color: #888;
    margin-top: 15px;
    padding-left: 32px;
    line-height: 1.7;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), #1a8a8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.team-card h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--color-accent);
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.expertise-tags span {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Privacy Checkbox Styling */
.privacy-group {
    margin: 15px 0 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #888;
    text-align: left;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.checkbox-container a {
    color: var(--color-accent);
    text-decoration: underline;
}

.checkbox-container a:hover {
    color: #fff;
}

/* Media/Video Placeholders */
.media-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    border: 1px dashed #333;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.media-placeholder:hover {
    border-color: var(--color-accent);
    background: #151515;
}

.media-placeholder.video::before {
    content: '\f04b';
    /* FontAwesome Play Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.media-placeholder.video:hover::before {
    transform: scale(1.1);
}

.media-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.media-placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

.media-placeholder.portrait {
    aspect-ratio: 3/4;
}