/* --- 1. CORE THEME & RESET --- */
:root {
    --font-main: 'Inter', sans-serif;
    --glass: rgba(0, 0, 0, 0.9);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body, html {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    font-family: var(--font-main);
}

/* --- UPDATED NAVBAR: FLOATING MONOLITH DESIGN --- */
#mainNav {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem 0;
    z-index: 2000;
}

#mainNav.scrolled {
    padding: 0.8rem 0;
}

#mainNav.scrolled .container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.5rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* --- BRANDING (FIXED & RESTORED) --- */
.brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    line-height: 0.9;
}

.brand-name {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 800;
    color: #ffffff !important;
}

.brand-sub {
    font-size: 0.55rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.1rem;
}

/* Floating Links Logic */
.nav-floating-links .nav-link {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6) !important;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    transition: 0.3s;
}

.nav-floating-links .nav-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Initiate Button (CTA) */
.nav-cta-btn {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 12px 28px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.nav-cta-btn svg { width: 14px; transition: 0.4s; }

.nav-cta-btn:hover {
    box-shadow: 0 0 25px rgba(255,255,255,0.4);
    transform: scale(1.05);
}

/* Hamburger Icon */
.hamburger-icon {
    width: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: 0.3s;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    #mainNav.scrolled .container { border-radius: 25px; padding: 0.8rem 1.5rem; }
    .navbar-collapse {
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(20px);
        margin-top: 15px;
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(255,255,255,0.1);
    }
} 














/* --- 3. HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    padding: 140px 0 100px;
    background-image: radial-gradient(circle at 50% -20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

#hero-canvas {
    opacity: 0.4;
    pointer-events: none;
}

.tech-title {
    font-size: clamp(2.2rem, 8vw, 5.2rem); /* Keeps it to 2 lines on Desktop */
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #fff 50%, rgba(255,255,255,0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* FUTURE Text: Out of the world Glowing Transition */
.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0));
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); /* Slow smooth glow */
}

.tech-title:hover .text-outline {
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke: 1px #ffffff;
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.8));
}

.hero-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.6);
}

/* --- 4. BUTTONS & ELEMENTS --- */
.btn-prime {
    background: #ffffff;
    color: #000000 !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 15px 35px;
    border-radius: 0;
    border: 1px solid #ffffff;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-prime:hover {
    background: transparent;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.btn-link-glass {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.btn-link-glass:hover {
    border-color: #ffffff;
    opacity: 0.8;
}

/* --- 5. STATS SECTION --- */
.stat-item {
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(to right, #ffffff, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
}

/* --- 6. BADGE & ANIMATIONS --- */
.glass-badge-wrapper {
    position: relative;
    display: inline-flex;
    padding: 1px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.glass-badge-wrapper::before {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, transparent, #fff, transparent);
    animation: rotateBeam 4s linear infinite;
    top: -50%; left: -50%;
}

.glass-badge {
    position: relative;
    background: #000;
    padding: 8px 25px;
    border-radius: 100px;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes rotateBeam { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes breatheGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* Centering Logic */
.hero-section .row {
    justify-content: center;
    text-align: center;
}













/* --- 1. TRANSITION DIVIDER --- */
.hero-portfolio-divider {
    height: 150px;
    background: linear-gradient(to bottom, #000000, #05050a);
    position: relative;
    z-index: 4;
}

/* --- 2. PORTFOLIO COSMOS SECTION --- */
.portfolio-cosmos {
    position: relative;
    background-color: #05050a; 
    padding: 100px 0;
    overflow: hidden;
}

/* Auto-moving Plasma Background */
.plasma-field {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(183, 0, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 242, 0.1) 0%, transparent 40%);
    filter: blur(80px);
    z-index: 1;
    animation: plasmaShift 20s ease-in-out infinite alternate;
}

.plasma-field-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5, 5, 10, 0) 0%, #05050a 85%);
    z-index: 2;
}

@keyframes plasmaShift {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.15) translate(-3%, 5%); }
    100% { transform: scale(1) translate(3%, -3%); }
}

/* --- 3. BADGE & TITLES --- */
.badge-dot-cyan {
    width: 8px; height: 8px;
    background: #00fff2;
    border-radius: 50%;
    box-shadow: 0 0 12px #00fff2;
    display: inline-block;
    margin-right: 10px;
    animation: pulse-cyan 2s infinite;
}

@keyframes pulse-cyan { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.tech-title-sm {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    transition: all 0.4s ease;
}

.text-outline-cyan {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.781);
    -webkit-text-fill-color: transparent;
    transition: all 0.6s ease;
}

.magnetic-glow:hover .text-outline-cyan {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.15);
    -webkit-text-stroke: 1.5px #ffffff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

/* --- 4. COSMIC CARDS (2x2) --- */
.cosmic-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.cosmic-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.card-image-window {
    position: relative;
    width: 100%; height: 380px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.auto-slider img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
}

.auto-slider img.active {
    opacity: 1;
    transform: scale(1.15);
}

/* --- 5. DYNAMIC TAGS --- */
.card-tag {
    position: absolute;
    top: 20px; left: 20px;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.2);
}

.tag-cyan { background: rgba(0, 255, 242, 0.2); color: #00fff2; border-color: #00fff2; }
.tag-purple { background: rgba(183, 0, 255, 0.2); color: #b700ff; border-color: #b700ff; }
.tag-green { background: rgba(0, 255, 128, 0.2); color: #00ff80; border-color: #00ff80; }
.tag-blue { background: rgba(0, 102, 255, 0.2); color: #0066ff; border-color: #0066ff; }

.card-info h3 { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.card-info p { color: rgba(255,255,255,0.5); font-size: 1.05rem; }

/* Behance Button */
.btn-behance {
    padding: 14px 30px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.4s;
}

.btn-behance:hover {
    background: #fff;
    color: #000;
}






















/* testimonials */
/* Section Theme */
.testimonial-hologram {
    background: #05050a; /* Deep Navy, not Jet Black */
    padding: 120px 0;
    overflow: hidden;
}

.main-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 50px;
}

/* LEFT SIDE: YOUR ORIGINAL STYLES (DO NOT CHANGE) */
.hologram-pod { position: relative; width: 350px; text-align: center; transition: all 0.6s ease; }
.pod-platform { position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%) rotateX(75deg); width: 200px; height: 200px; background: radial-gradient(circle, rgba(223, 206, 229, 0.4) 0%, transparent 70%); border-radius: 50%; border: 2px solid rgba(183, 0, 255, 0.2); box-shadow: 0 0 50px rgba(183, 0, 255, 0.3); }
.client-avatar-wrapper { position: relative; height: 250px; z-index: 5; }
.client-svg { width: 150px; height: 150px; filter: drop-shadow(0 0 15px rgba(183, 0, 255, 0.5)); transition: transform 0.4s ease; }
.hologram-projection { position: absolute; top: -20px; left: 50%; transform: translateX(-50%) scale(0); width: 120px; height: 120px; background: rgba(0, 255, 242, 0.1); backdrop-filter: blur(5px); border: 1px solid rgba(0, 255, 242, 0.3); border-radius: 15px; display: flex; flex-direction: column; justify-content: center; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 10; }
.hologram-pod:hover .hologram-projection { transform: translateX(-50%) scale(1) translateY(-20px); }
.hologram-pod:hover .client-svg { transform: scale(1.1) translateY(-10px); }
.holo-stat { font-size: 1.5rem; font-weight: 900; color: #f9fdfd; text-shadow: 0 0 10px #00fff2; }
.holo-label { font-size: 0.6rem; color: #fff; letter-spacing: 2px; }
.holo-rays { position: absolute; top: 100%; left: 50%; width: 100px; height: 150px; background: conic-gradient(from 180deg at 50% 100%, transparent 160deg, rgba(0, 255, 242, 0.2) 180deg, transparent 200deg); transform: translateX(-50%); pointer-events: none; opacity: 0; }
.hologram-pod:hover .holo-rays { opacity: 1; }

/* DIVIDER */
.electric-divider {
    width: 2px;
    height: 300px;
    background: linear-gradient(to bottom, transparent, #ececec, #585858, transparent);
    box-shadow: 0 0 20px rgba(253, 255, 255, 0.4);
}

/* RIGHT SIDE: GLASS & BUZZ */
.testimonial-column { flex: 1; }
.glass-carousel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(214, 214, 214, 0.2);
    border-radius: 30px;
    padding: 60px;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.main-quote { font-size: 1.5rem; color: #fff; font-style: italic; line-height: 1.6; margin: 20px 0; }
.client-role { color: #b7b7b7; font-family: monospace; letter-spacing: 1px; }

/* ELECTRIC BUZZ ANIMATION */
.buzzing {
    animation: electric-vibrate 0.3s linear infinite;
    filter: drop-shadow(0 0 8px #c7c9c9);
    color: #bae0f4 !important;
}

@keyframes electric-vibrate {
    0% { transform: translate(0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-2px, -2px); }
    100% { transform: translate(2px, 2px); }
}



/* --- RESPONSIVE LOGIC --- */
@media (max-width: 991px) {
    .main-layout {
        flex-direction: column; /* Stacks items vertically */
        gap: 30px;
        text-align: center;
    }

    .avatar-column {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1; /* Ensures Avatar is first */
        margin-bottom: 40px;
    }

    .hologram-pod {
        width: 100%;
        max-width: 300px; /* Prevents overflow on very small phones */
    }

    /* Change divider from vertical to horizontal */
    .electric-divider {
        width: 80%;
        height: 2px;
        order: 2; /* Divider in middle */
        background: linear-gradient(to right, transparent, #00fff2, #b700ff, transparent);
        margin: 20px auto;
    }

    .testimonial-column {
        width: 100%;
        order: 3; /* Testimonial at bottom */
    }

    .glass-carousel {
        padding: 40px 20px;
        min-height: auto; /* Allow box to shrink/grow based on text */
    }

    .main-quote {
        font-size: 1.2rem; /* Slightly smaller text for mobile */
    }
}

/* Fix for the pod-platform positioning on mobile */
@media (max-width: 576px) {
    .pod-platform {
        width: 150px;
        height: 150px;
        bottom: 80px;
    }
    .client-avatar-wrapper {
        height: 200px;
    }
    .client-svg {
        width: 120px;
        height: 120px;
    }
}







/* --- UPDATED MIDNIGHT GRADIENT BG --- */
.partners-split-modern {
    /* Using a deep, rich gradient inspired by your request */
    background: radial-gradient(circle at 30% 50%, #0a0a12 0%, #05050a 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.partners-ambient-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 2;
    pointer-events: none;
}

/* --- HEADING & SILVER HOVER GLOW --- */
.tech-title-v2 {
    font-size: clamp(2rem, 3.8vw, 3rem); /* Sized to stay away from logos */
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
}

.text-outline-silver {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    position: relative;
    transition: all 0.4s ease;
    cursor: default;
}

/* THE MOUSE HOVER GLOW EFFECT */
.interactive-glow:hover {
    color: #fff;
    -webkit-text-stroke: 1px #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2);
}

/* --- VERTICAL LOGO VIEWPORT --- */
.vertical-viewport {
    display: flex;
    gap: 30px;
    height: 600px;
    position: relative;
    z-index: 5;
    /* Clean fade for infinite look */
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.v-img {
    width: 100%;
    height: 135px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.25);
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 30px;
}

.v-img:hover {
    filter: brightness(0) invert(1) opacity(1);
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.05);
}

/* Vertical Scrolling */
@keyframes scrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@keyframes scrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }

.col-down .v-track { animation: scrollDown 25s linear infinite; }
.col-up .v-track { animation: scrollUp 30s linear infinite; }

/* Responsive Styling */
@media (max-width: 991px) {
    .partners-split-modern { padding: 80px 0; }
    .content-side { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }
    .tech-title-v2 { font-size: 2.5rem; }
    .vertical-viewport { height: 450px; }
}





















/* --- SECTION BASE: DEEP BLACK/DARK GRAY --- */
.services-future-grid {
    background: radial-gradient(circle at 30% 50%, #0d0d0d 0%, #000000 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Atmospheric Silver Light */
.services-ambient-glow {
    position: absolute;
    top: 50%; left: 20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

/* --- THE BENTO GRID ENGINE --- */
.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 25px;
    margin-top: 50px;
}

.card-tall { grid-row: span 2; }
.card-wide { grid-column: span 2; }

/* --- GLASS PANELS: SILVER & WHITE --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.glass-panel h3 {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: 0.4s ease;
    letter-spacing: -0.5px;
}

/* THE SILVER HOVER GLOW */
.glass-panel:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.4); /* Silver border pulse */
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.05);
}

.glass-panel:hover h3 {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(255, 255, 255, 0.3);
}

/* Updated Badge Dot to Silver/White */
.badge-dot-cyan { 
    background: #ffffff !important; 
    box-shadow: 0 0 15px #ffffff !important;
}

.service-number {
    font-family: 'Space Mono', monospace;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 2px;
}

/* --- TAGS SYSTEM: RESPONSIVE & CLEAN --- */
.tool-tags {
    display: flex;
    flex-wrap: wrap; /* CRITICAL: Prevents mess on mobile */
    gap: 10px;
    width: 100%;
}

.tag {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 0.3s ease;
}

.glass-panel:hover .tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE OPTIMIZATIONS --- */
@media (max-width: 1200px) {
    .glass-panel { padding: 30px; }
    .glass-panel h3 { font-size: 1.4rem; }
}

@media (max-width: 991px) {
    .services-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
    }
    /* Neutralize bento spans for mobile stacking */
    .card-tall, .card-wide { grid-column: span 1; grid-row: span 1; }
    
    .glass-panel { 
        min-height: 280px; 
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .services-future-grid { padding: 80px 0; }
    .glass-panel h3 { font-size: 1.25rem; }
    .tool-tags { gap: 8px; }
    .tag { font-size: 0.65rem; padding: 5px 12px; }
} 
















/* --- SECTION BASE --- */
.protocol-future-grid {
    background: radial-gradient(circle at 10% 50%, #0a0a0a 0%, #000 100%);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* --- LEFT SIDE REFINEMENT --- */
.sticky-top-custom {
    position: sticky;
    top: 100px;
}

.luxury-description {
    max-width: 350px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

.protocol-metadata-box {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    width: 250px;
}

.meta-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

.meta-value {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: #fff;
    font-weight: 600;
}

/* --- RIGHT SIDE TIMELINE --- */
.protocol-timeline {
    position: relative;
    padding-left: 40px;
}

.vertical-laser-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 90%, transparent);
}

.protocol-step-card {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: default;
    /* REMOVED: No translation here to prevent jerking */
}

/* THE FULL CONTENT GLOW EFFECT (STATIC POSITION) */
.protocol-step-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* All text inside the card glows together on hover */
.protocol-step-card:hover .step-body h3,
.protocol-step-card:hover .step-body p,
.protocol-step-card:hover .step-id {
    color: #fff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.2);
}

.protocol-step-card:hover .step-body p {
    opacity: 1;
}

/* Step ID Styling */
.step-id {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
    transition: 0.4s;
}

.protocol-step-card h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: 0.4s;
}

.protocol-step-card p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
    transition: 0.4s;
}

/* Node Styling - PERFECTLY ANCHORED */
.step-indicator {
    position: absolute;
    left: -44.5px;
    top: 50px;
    width: 10px;
    height: 10px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.4s ease;
}

.protocol-step-card:hover .step-indicator {
    background: #fff;
    box-shadow: 0 0 15px #fff, 0 0 30px rgba(255,255,255,0.3);
    border-color: #fff;
    transform: scale(1.5); /* Just scales up, no horizontal move */
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .sticky-top-custom { position: relative; top: 0; margin-bottom: 60px; }
    .protocol-step-card { padding: 30px 0; background: none !important; }
    .step-indicator { left: -44.5px; }
}



















/* --- SECTION STYLES --- */
.pricing-clean-v4 {
    background: #000;
    padding: 120px 0;
    color: #fff;
}

/* --- GRID SYSTEM --- */
.pricing-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch; /* Forces equal height columns */
}

/* --- CARD STRUCTURE --- */
.pricing-column-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 45px 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.p-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column; /* Key for button alignment */
}

/* --- HOVER REFINEMENT --- */
.pricing-column-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

.pricing-column-card:hover .p-title, 
.pricing-column-card:hover .p-price {
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.pricing-column-card.featured {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
}

/* --- TYPOGRAPHY (UI/UX FOCUSED) --- */
.p-id {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.p-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.p-price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.p-price span { font-size: 0.9rem; opacity: 0.4; }

.p-meta {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 35px;
    display: block;
}

/* --- FEATURES LIST --- */
.p-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the footer/button to bottom */
}

.p-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.lbl { color: rgba(255,255,255,0.3); font-size: 0.65rem; text-transform: uppercase; }

.p-why {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 25px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* --- BUTTONS (LOCKED BOTTOM) --- */
.btn-p-action {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-p-action.primary {
    background: #fff;
    color: #000;
}

.btn-p-action:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .pricing-main-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-column-card { margin-bottom: 20px; }
}

@media (min-width: 1400px) {
    .container { max-width: 1200px; }
} 



















.footer-monolith {
    background: #000;
    padding: 100px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* --- FOOTER TOP CTA --- */
.footer-cta-box {
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px; /* Sharp technical edge */
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.btn-footer-contact {
    display: inline-block;
    padding: 18px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.4s;
}

.btn-footer-contact:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* --- BRANDING & LINKS --- */
.brand-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.dot-silver { color: #fff; text-shadow: 0 0 10px #fff; }

.footer-heading {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-email {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
}

.footer-socials a {
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    margin-right: 20px;
    transition: 0.3s;
}

.footer-socials a:hover { color: #fff; }

/* --- BOTTOM BAR --- */
.footer-bottom-bar {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.7rem;
    font-family: 'Space Mono', monospace;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

.system-status {
    font-size: 0.7rem;
    font-family: 'Space Mono', monospace;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.status-dot {
    height: 6px;
    width: 6px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px #00ff88;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@media (max-width: 991px) {
    .footer-cta-box { padding: 40px 30px; text-align: center; }
    .footer-brand { text-align: center; margin-bottom: 40px; }
    .footer-brand p { margin: 15px auto; }
    .footer-socials { justify-content: center; display: flex; }
    .footer-heading { margin-top: 20px; }
}




















.faq-concierge {
    background: #000;
    padding: 100px 0;
    color: #fff;
}

.faq-wrapper {
    max-width: 900px; /* UX Focus: Shorter line length for readability */
    margin: 0 auto;
}

/* --- THE ACCORDION ITEM --- */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.faq-question {
    padding: 30px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-right: 30px;
}

.faq-question h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem); /* Responsive but not too big */
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
    transition: 0.3s;
}

/* --- THE ICON (Minimalist + / -) --- */
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: 0.3s transform ease;
}

.faq-icon::before { width: 100%; height: 1px; top: 50%; } /* Horizontal line */
.faq-icon::after { width: 1px; height: 100%; left: 50%; } /* Vertical line */

/* --- OPEN STATE --- */
.faq-item.active {
    background: rgba(255, 255, 255, 0.02);
    padding: 0 20px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg); /* Makes the + a - */
    opacity: 0;
}

.faq-item.active h3 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* --- ANSWER ANIMATION --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding-bottom: 30px;
    padding-left: 55px; /* Aligns with the question text */
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 700px;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .faq-number { margin-right: 15px; }
    .faq-answer p { padding-left: 30px; }
}















.booking-section {
    background: #000;
    padding: 100px 0;
    position: relative;
}

/* THE CALENDAR FRAME */
.calendar-monolith {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px; /* Matches your card design */
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: border-color 0.4s ease;
}

.calendar-monolith:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Removing any weird scrollbars on the embed */
.calendly-inline-widget iframe {
    border-radius: 4px;
}

/* Responsive Scaling for the Header */
@media (max-width: 768px) {
    .booking-section { padding: 60px 0; }
    .calendar-monolith { height: 850px; } /* More height for mobile stack */
    .calendly-inline-widget { height: 850px !important; }
}  / *   - - -   A I   I n n o v a t i o n   S e c t i o n   - - -   * /   . a i - i n n o v a t i o n   {   p a d d i n g :   1 0 0 p x   0 ;   }   . a i - c a r d   {   b a c k g r o u n d :   r g b a ( 1 0 ,   9 ,   8 ,   0 . 8 ) ;   b o r d e r :   1 p x   s o l i d   r g b a ( 1 6 9 ,   1 4 6 ,   1 2 5 ,   0 . 2 ) ;   b o r d e r - r a d i u s :   2 0 p x ;   p a d d i n g :   3 0 p x ;   t e x t - a l i g n :   c e n t e r ;   t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;   }   . a i - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 1 0 ,   9 ,   8 ,   0 . 3 ) ;   } 
 
 . f o o t e r - m o n o l i t h   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y )   0 % ,   v a r ( - - s e c o n d a r y )   1 0 0 % ) ;   } 
 
 