* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #050505; 
    color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    z-index: -3;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.7;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, #050505 100%);
    z-index: -1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 36px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}


.manifesto {
    padding: 150px 20px;
    text-align: center;
    position: relative;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: -1;
    filter: blur(60px);
    pointer-events: none;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #777777 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manifesto p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #888888;
}

.bento-section {
    padding: 50px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}



.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-card {
    grid-column: span 2;
}

.bento-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.bento-card p {
    color: #888888;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.bento-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}


.bento-card {
    padding: 50px 40px; 
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    position: relative;
    overflow: hidden;
    min-height: 350px;
    background-color: #050505; 
    transform: translateZ(0); 
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 60%, #050505 100%);
    z-index: 1;
    border-radius: 30px; 
    transition: background 0.4s ease;
}

.bento-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 60%, #050505 100%);
}

.bento-card > * {
    position: relative;
    z-index: 2; 
}

.card-owners {
    background: url('campus.jpeg') center/cover no-repeat;
}

.card-buyers {
    background: url('kvart.png?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
}

.card-investors {
    background: url('iq.jpg?auto=format&fit=crop&q=80&w=800') center/cover no-repeat;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.bento-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.bento-card p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.concierge-section {
    padding: 150px 20px; 
    position: relative;
}
.concierge-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.concierge-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; 
    position: relative;
    z-index: 2;
}

.concierge-text {
    flex: 1;
}

.concierge-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.concierge-text p {
    font-size: 1.2rem;
    color: #888;
    line-height: 1.6;
}

.glass-panel {
    flex: 1;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 30px;
    padding: 40px 50px;
    backdrop-filter: blur(40px); 
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.quiz-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 35px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: #ffffff;
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.quiz-step {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quiz-step.active {
    display: block;
    opacity: 1;
}

.quiz-step h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.quiz-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); 
}

.quiz-btn::after {
    content: "→";
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.quiz-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.quiz-btn:active {
    transform: scale(0.98);
}

.quiz-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.quiz-input:focus {
    border-color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
}

.btn-submit {
    width: 100%;
}

.team-section {
    padding: 100px 0; 
    max-width: 100%;
    overflow: hidden;
}

.team-section h2, .team-section > p {
    padding: 0 20px;
}

.team-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 40px 60px;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    cursor: grab;
}

.team-carousel::-webkit-scrollbar {
    display: none; 
}

.team-carousel:active {
    cursor: grabbing;
}

.team-member-card {
    flex: 0 0 320px;
    height: 450px;  
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start; 
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.team-member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.5s ease, transform 0.8s ease;
}

.team-member-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.15);
}

.team-member-card:hover img {
    filter: grayscale(0%) brightness(1); 
    transform: scale(1.05); 
}

.member-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
}

.member-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 20px;
    pointer-events: none;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.team-member-card:hover .member-info {
    transform: translateY(0); 
}

.member-info h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: -1px;
    color: #fff;
}

.member-info p {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .team-carousel {
        padding: 20px 20px 40px;
    }
    .team-member-card {
        flex: 0 0 280px;
        height: 400px;
    }
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 50px 30px;
    margin-top: 100px;
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 100px;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-main h2 {
    font-size: 2.5rem;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.footer-main p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-email {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
}

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

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    text-align: center;
    color: #444;
    font-size: 0.9rem;
}

.fade-in { opacity: 0; animation: fadeIn 1.5s forwards ease-out; }
@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-scroll.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .concierge-container { 
        flex-direction: column; 
    }
    .concierge-text {
        margin-bottom: 40px; 
        text-align: center; 
    }
    .glass-panel {
        width: 100%;
        padding: 30px 20px; 
    }
    .tech-card { 
        grid-column: span 1; 
    }
    .hero-content h1 { 
        font-size: 2.8rem; 
    }
}

.nav-links a.active-nav {
    color: #ffffff;
}

.owners-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: #000000;
    overflow: hidden; 
}

.owners-hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.owners-hero .hero-content {
    position: relative;
    z-index: 2; 
}

.owners-hero h1 {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.owners-hero p {
    font-size: 1.3rem;
    color: #888888;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.media-showcase-section {
    padding: 100px 20px;
    background: #050505;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.showcase-text p {
    font-size: 1.2rem;
    color: #888888;
    line-height: 1.7;
}

.showcase-video-box {
    flex: 1.2;
    width: 100%;
}

.video-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 30px 60px rgba(0,0,0,0.6);
    background: #111;
    transform: translateZ(0);
}

.mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.mockup-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-overlay span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.process-section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.process-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    padding: 50px 40px;
    border-radius: 30px;
    
     box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0,0,0,0.5);
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    position: relative;
    overflow: hidden;
    min-height: 380px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    transform: translateZ(0);
}

.process-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 20px 40px rgba(0,0,0,0.8);
}

.card-step-1 { background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, #050505 100%), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&q=80&w=600') center/cover no-repeat; }
.card-step-2 { background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, #050505 100%), url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&q=80&w=600') center/cover no-repeat; }
.card-step-3 { background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, #050505 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=600') center/cover no-repeat; }


.step-num {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 30px;
    left: 40px;
}

.process-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.process-card p {
    color: #888888;
    line-height: 1.6;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .owners-hero h1 { font-size: 2.8rem; }
    .showcase-container { flex-direction: column; gap: 40px; }
    .showcase-text { text-align: center; }
    .section-title { font-size: 2.2rem; }
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    backdrop-filter: blur(10px);
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
    cursor: col-resize;
    user-select: none;
    transform: translateZ(0);
}

.ba-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

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

.before-img {
    width: 50%; 
    overflow: hidden;
    z-index: 2;
    border-right: 2px solid #fff;
}

.before-img img {
    width: 200%; 
    max-width: none;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    z-index: 3;
}

.label-before { left: 20px; }
.label-after { right: 20px; }

.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 0;
    z-index: 4;
    pointer-events: none;
}

.ba-handle-button {
    position: absolute;
    top: 50%; left: 0;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process-card {
    background: #080808;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.4s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.step-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 15px; right: 20px;
}

.cases-section {
    padding: 120px 20px;
    background: radial-gradient(ellipse at top, #111111 0%, #050505 80%);
}

.cases-container {
    max-width: 1200px; margin: 0 auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 50px; 
}
.split-card:nth-child(even) {
    flex-direction: row-reverse;
}

.case-image {
    flex: 1;
    position: relative;
    min-height: 450px; 
}

@media (max-width: 900px) {
    .split-card:nth-child(even) {
        flex-direction: column;
    }
}

.case-card {
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.4) 0%, rgba(10, 10, 10, 0.6) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12); 
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

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

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ccc;
}

.case-card h3 {
    font-size: 1.6rem; margin-bottom: 30px; font-weight: 600;
}

.case-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat { display: flex; flex-direction: column; }
.stat-val { font-size: 1.41rem; font-weight: 800; margin-bottom: 5px; }
.stat-label { font-size: 0.9rem; color: #666; }

.case-card p { color: #888; line-height: 1.6; }

@media (max-width: 768px) {
    .cases-grid { grid-template-columns: 1fr; }
    .ba-slider { aspect-ratio: 1 / 1; }
}
.interactive-compare-section {
    padding: 100px 20px;
    background: #050505;
}

.compare-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compare-header {
    text-align: center;
    margin-bottom: 40px;
}

.compare-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.compare-header p {
    color: #888;
    font-size: 1.1rem;
}
.custom-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.switch-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
}

.switch-label.active {
    color: #fff;
}

.switch-track {
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.4s;
}

.switch-track.premium-mode {
    background: #fff; 
}

.switch-thumb {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.switch-track.premium-mode .switch-thumb {
    transform: translateX(40px);
    background: #000;
}

.compare-content-box {
    width: 100%;
    display: flex;
    gap: 40px;
    background: #0a0a0a;
    border-radius: 30px;
    padding: 50px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: all 0.5s ease;
}

.compare-content-box.premium-mode {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 20px 60px rgba(255,255,255,0.05);
}

.compare-data {
    flex: 1;
}

.compare-data h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.compare-data p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 80px; 
}

.compare-list {
    list-style: none;
}

.compare-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #aaa;
    position: relative;
    padding-left: 25px;
}

.compare-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ff4444;
}

.compare-content-box.premium-mode .compare-list li::before {
    content: "✓";
    color: #fff;
}
.compare-content-box.premium-mode .compare-list li {
    color: #fff;
}


.compare-visual {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.visual-placeholder.standard-vibe {
    background: url('homestage_before.PNG') center/cover;
    filter: grayscale(80%) contrast(80%);
}

.visual-placeholder.premium-vibe {
    background: url('homestage_after.jpg') center/cover;
    filter: grayscale(0%) contrast(110%);
    transform: scale(1.05);
}

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

.process-card {
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    transition: transform 0.4s ease;
    transform: translateZ(0);
}

@media (max-width: 900px) {
    .compare-content-box { flex-direction: column; }
    .process-grid { grid-template-columns: 1fr; }
    .card-step-3 { grid-column: span 1 !important; }
}

.cinematic-divider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%); 
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 50px;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cinematic-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

.cinematic-text {
    position: relative;
    z-index: 3;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -1px;
    padding: 0 20px;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 900px) {
    .cinematic-text { font-size: 2.2rem; }
    .cinematic-divider { height: 40vh; margin-top: 50px; }
}

.ambient-blob {
    position: fixed; 
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0; 
    opacity: 0.5; 
    animation: floatBlob 20s infinite alternate ease-in-out;
    pointer-events: none;
}

.blob-1 {
    top: 15%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.blob-2 {
    top: 55%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 200px) scale(1.2); }
}

.card-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3; 
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.process-card:hover .card-video-bg {
    opacity: 0.6;
    transform: scale(1.05);
}

.split-card {
    padding: 0 !important; 
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.case-image {
    flex: 1;
    position: relative;
    min-height: 350px;
}

.case-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(110%);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.split-card:hover .case-image img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

.case-content {
    flex: 1.2;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


@media (max-width: 900px) {
    .split-card {
        flex-direction: column;
    }
    .case-image {
        min-height: 250px;
    }
    .case-content {
        padding: 30px 20px;
    }
}

.black-card-mockup {
    width: 340px;
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.2);
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: perspective(1000px) rotateY(-20deg) rotateX(10deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    overflow: hidden;
}

.black-card-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.05);
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #aa8000 100%); 
    border-radius: 6px;
    opacity: 0.8;
}

.card-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    align-self: flex-end;
}

.card-text {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #888;
}

.card-glow {
    position: absolute;
    top: -50px; left: -50px;
    width: 150px; height: 150px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    border-radius: 50%;
    animation: sweep 4s infinite linear;
}

@keyframes sweep {
    0% { transform: translate(0, 0); }
    50% { transform: translate(300px, 200px); }
    100% { transform: translate(0, 0); }
}

.locations-section {
    padding: 80px 20px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.location-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translateZ(0);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(30%) brightness(0.7);
}

.location-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    transition: transform 0.4s ease;
}

.location-overlay h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.location-overlay p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.location-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(0.9);
}

.location-card:hover .location-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-mockup {
    width: 380px;
    height: 260px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    z-index: 2;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.05);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.dash-title {
    font-size: 1rem;
    color: #aaa;
    font-weight: 500;
}

.dash-title span {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

.dash-value {
    font-size: 2rem;
    font-weight: 800;
    color: #4CAF50; 
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex: 1;
    gap: 15px;
}

.bar-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    height: 100%;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, rgba(255,255,255,0.1), rgba(255,255,255,0.4));
    border-radius: 6px;
    transform-origin: bottom;
    animation: growBar 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.bar-col:last-child .bar {
    background: linear-gradient(to top, #2E7D32, #4CAF50);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.dash-glow {
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 100px;
    background: rgba(76, 175, 80, 0.15);
    filter: blur(50px);
    pointer-events: none;
}

.metrics-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.metric-card {
    border-radius: 30px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.metric-card.style-dark {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.4) 0%, rgba(5, 5, 5, 0.6) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.metric-card.highlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.metric-icon {
    font-size: 2.5rem;
    color: #888;
    margin-bottom: 20px;
}

.metric-num {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.metric-card p {
    color: #888;
    line-height: 1.6;
    font-size: 1.05rem;
}

.metric-card:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.metric-card.highlight-card:hover {
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.marquee-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    margin-bottom: 80px;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-content span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content .dot {
    color: #888;
    margin: 0 40px;
}

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

.offices-section {
    padding: 80px 20px 150px;
    width: 100%;
}

.offices-container {
    max-width: 1200px;
    margin: 0 auto;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.office-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateZ(0);
}

.office-map {
    height: 280px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background-color: #111;
}

.office-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%) grayscale(20%);
    transition: filter 0.5s ease;
    pointer-events: none; 
}
.office-card:hover .office-map iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(100%) grayscale(0%);
    pointer-events: auto;
}

.office-info {
    padding: 40px;
}

.office-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.office-address {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.office-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.office-contacts a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.office-contacts a:hover {
    color: #2AABEE;
}

.ecosystem-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.eco-badge {
    padding: 16px 32px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
    cursor: default;
}

.eco-badge:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), inset 0 1px 2px rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .eco-badge {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
        flex-direction: column;
        gap: 15px;
        background: rgba(5, 5, 5, 0.98); 
    }
    .logo {
        width: 100%;
        text-align: center;
    }
    .nav-links {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        gap: 25px;
        overflow-x: auto;
        padding: 0 20px 10px 20px;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links::-webkit-scrollbar { display: none; }

    .hero, .owners-hero {
        height: auto !important;
        min-height: 100vh;
        padding-top: 140px; 
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-content h1, .owners-hero h1 {
        font-size: 2.3rem;
        letter-spacing: -1px;
        margin-bottom: 15px;
    }
    .hero-content p, .owners-hero p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .showcase-text p {
        font-size: 1.05rem;
        line-height: 1.5;
        color: #aaa;
        text-align: left; 
        margin-bottom: 25px;
    }
    .manifesto h2, .section-title, .concierge-text h2, .showcase-text h2, .compare-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .manifesto, .bento-section, .concierge-section, .metrics-section, .offices-section, .interactive-compare-section, .cases-section, .process-section, .locations-section, .media-showcase-section, .team-section {
        padding: 60px 15px;
    }

    .locations-section p, .team-section p {
        margin: 15px auto 40px !important; 
        padding: 0 10px;
    }

    .cinematic-divider {
        height: auto;
        min-height: 300px;
        padding: 60px 20px;
    }
    .cinematic-text {
        font-size: 1.6rem;
        line-height: 1.4;
        text-shadow: 0 4px 20px rgba(0,0,0,0.9);
    }
    .cinematic-text br {
        display: none; 
    }

    .tech-card { grid-column: span 1 !important; }
    .process-card[style*="grid-column: span 2"] { grid-column: span 1 !important; }
    .process-card {
        min-height: auto;
        padding: 40px 25px;
    }
    .dashboard-mockup, .black-card-mockup {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        transform: none !important;
        padding: 25px;
    }
    
    .custom-switch-wrapper {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    .compare-content-box { padding: 30px 20px; }
    .visual-placeholder { min-height: 220px; }
    .metric-card { min-height: auto; padding: 40px 25px; }
    .metric-num { font-size: 2.8rem; }
    .step-num { font-size: 2.5rem; }
    .concierge-container { gap: 40px; }
    .glass-panel { padding: 30px 20px; }
    .quiz-step h3 { font-size: 1.5rem; }
    
    .footer { padding: 60px 20px 30px; margin-top: 50px; }
    .footer-content { flex-direction: column; gap: 40px; text-align: center; }
    .footer-main h2 { font-size: 1.8rem; margin: 0 auto 20px; }
    .footer-links { align-items: center; }
}

img,
video,
iframe {
    max-width: 100%;
}

img,
video {
    display: block;
}

section,
header,
footer,
.navbar,
.bento-card,
.process-card,
.case-card,
.metric-card,
.glass-panel,
.compare-content-box,
.office-card,
.location-card {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 18px 28px;
    }

    .nav-links a {
        margin-left: 20px;
    }

    .hero-content,
    .owners-hero .hero-content,
    .hero-content[style] {
        width: min(100%, 920px) !important;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-content h1,
    .owners-hero h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }

    .showcase-container,
    .concierge-container {
        gap: 48px;
    }

    .process-grid,
    .metrics-grid,
    .locations-grid,
    .offices-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        min-width: 0;
    }

    .navbar {
        left: 0;
        right: 0;
        width: 100%;
        padding: 12px 0 10px !important;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .logo {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        line-height: 1.2;
    }

    .nav-links {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 14px 4px !important;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        flex: 0 0 auto;
        margin-left: 0 !important;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 0.82rem;
        line-height: 1;
        background: rgba(255, 255, 255, 0.045);
    }

    .nav-links a.active-nav {
        background: rgba(255, 255, 255, 0.12);
    }

    .hero,
    .owners-hero {
        height: auto !important;
        min-height: 100svh;
        padding: 138px 16px 64px !important;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-content,
    .owners-hero .hero-content,
    .hero-content[style] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content h1,
    .owners-hero h1,
    .owners-hero h1[style] {
        font-size: clamp(2.15rem, 10vw, 3rem) !important;
        line-height: 1.06 !important;
        letter-spacing: -1.3px !important;
        margin-bottom: 18px !important;
        text-wrap: balance;
    }

    .hero-content p,
    .owners-hero p,
    .hero-content p[style],
    .owners-hero p[style] {
        max-width: 100% !important;
        font-size: 1.02rem !important;
        line-height: 1.55 !important;
        margin: 0 auto 28px !important;
        color: #aaa !important;
    }

    .btn {
        width: 100%;
        max-width: 360px;
        padding: 15px 22px;
        text-align: center;
        font-size: 0.98rem;
    }

    .manifesto,
    .bento-section,
    .concierge-section,
    .metrics-section,
    .offices-section,
    .interactive-compare-section,
    .cases-section,
    .process-section,
    .locations-section,
    .media-showcase-section,
    .team-section,
    .ecosystem-section {
        padding: 64px 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .section-title,
    .manifesto h2,
    .manifesto h2[style],
    .concierge-text h2,
    .showcase-text h2,
    .compare-header h2,
    .footer-main h2,
    .section-title[style] {
        font-size: clamp(2rem, 8vw, 2.45rem) !important;
        line-height: 1.12 !important;
        letter-spacing: -0.9px !important;
        margin-bottom: 22px !important;
        text-wrap: balance;
    }

    .manifesto p,
    .content-wrapper p,
    .showcase-text p,
    .concierge-text p,
    .compare-header p,
    .metric-card p,
    .process-card p,
    .case-card p,
    .location-overlay p,
    .office-address,
    .team-section > p,
    .locations-section > p,
    .ecosystem-section p,
    .cases-section > p,
    p[style] {
        font-size: 1rem !important;
        line-height: 1.58 !important;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .locations-section > p,
    .team-section > p,
    .cases-section p[style],
    .locations-section p[style] {
        margin: 12px auto 34px !important;
        max-width: 100% !important;
    }

    .bento-grid,
    .process-grid,
    .metrics-grid,
    .locations-grid,
    .offices-grid,
    .cases-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 18px !important;
        width: 100%;
    }

    .tech-card,
    .card-step-3,
    .process-card,
    .process-card[style*="grid-column"],
    .metric-card[style*="min-height"] {
        grid-column: auto !important;
    }

    .bento-card,
    .process-card,
    .metric-card,
    .case-card,
    .office-card,
    .glass-panel,
    .compare-content-box,
    .location-card {
        border-radius: 22px !important;
    }

    .bento-card {
        min-height: 280px !important;
        padding: 32px 24px !important;
    }

    .bento-card h3,
    .process-card h3,
    .metric-card h3,
    .case-card h3,
    .office-info h3,
    .location-overlay h3 {
        font-size: 1.45rem !important;
        line-height: 1.18 !important;
    }

    .process-card {
        min-height: 320px !important;
        padding: 34px 24px !important;
        justify-content: flex-end;
    }

    .process-card p {
        color: #c7c7c7 !important;
    }

    .step-num {
        top: 18px !important;
        right: 22px !important;
        left: auto !important;
        font-size: 2.6rem !important;
    }

    .metric-card {
        min-height: auto !important;
        padding: 34px 24px !important;
    }

    .metric-num,
    .metric-num[style] {
        font-size: 2.4rem !important;
        letter-spacing: -1px !important;
    }

    .split-card,
    .split-card:nth-child(even) {
        flex-direction: column !important;
    }

    .case-card {
        padding: 0 !important;
        overflow: hidden;
    }

    .case-image {
        width: 100%;
        min-height: 230px !important;
        flex: none;
    }

    .case-content {
        padding: 28px 22px !important;
    }

    .case-stats {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px !important;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .stat-val {
        font-size: 1.18rem !important;
    }

    .stat-label {
        font-size: 0.78rem !important;
    }

    .showcase-container,
    .concierge-container,
    .compare-content-box {
        flex-direction: column !important;
        gap: 30px !important;
        align-items: stretch !important;
    }

    .showcase-text,
    .concierge-text,
    .compare-header {
        text-align: left !important;
    }

    .tech-badges,
    .ecosystem-tags {
        justify-content: flex-start !important;
    }

    .showcase-video-box,
    .showcase-video-box[style] {
        min-height: auto !important;
        width: 100%;
    }

    .dashboard-mockup,
    .black-card-mockup {
        width: min(100%, 330px) !important;
        height: auto !important;
        min-height: 220px;
        margin: 0 auto !important;
        transform: none !important;
    }

    .dashboard-mockup:hover,
    .black-card-mockup:hover {
        transform: none !important;
    }

    .dash-header {
        gap: 16px;
    }

    .dash-value {
        font-size: 1.55rem !important;
    }
    .glass-panel {
        width: 100% !important;
        padding: 28px 20px !important;
    }

    .quiz-step h3,
    .glass-panel h3,
    .glass-panel h3[style] {
        font-size: 1.45rem !important;
        line-height: 1.22 !important;
        margin-bottom: 22px !important;
    }

    .quiz-btn,
    .quiz-input,
    select.quiz-input {
        min-height: 54px;
        padding: 16px 18px !important;
        font-size: 1rem !important;
        border-radius: 14px !important;
    }

    .custom-switch-wrapper {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        gap: 10px !important;
        margin-bottom: 28px !important;
    }

    .switch-label {
        font-size: 0.9rem !important;
        text-align: center;
    }

    .compare-content-box {
        padding: 26px 20px !important;
    }

    .compare-data p {
        min-height: 0 !important;
    }

    .visual-placeholder {
        min-height: 220px !important;
    }

    .location-card {
        height: auto !important;
        min-height: 330px;
    }

    .location-overlay {
        padding: 78px 22px 24px !important;
        background: linear-gradient(to top, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.55) 62%, rgba(0,0,0,0.08) 100%) !important;
    }

    .location-overlay p {
        opacity: 1 !important;
        transform: none !important;
    }

    .office-map {
        height: 220px !important;
    }

    .office-info {
        padding: 28px 22px !important;
    }

    .office-contacts a,
    .footer-email {
        font-size: 1rem !important;
        overflow-wrap: anywhere;
    }

    .cinematic-divider {
        height: auto !important;
        min-height: 300px !important;
        padding: 64px 20px !important;
        margin-top: 20px !important;
    }

    .cinematic-text {
        font-size: clamp(1.55rem, 7vw, 2rem) !important;
        line-height: 1.18 !important;
        padding: 0 10px;
        text-shadow: 0 5px 24px rgba(0, 0, 0, 0.95);
    }

    .marquee-section {
        margin-bottom: 42px !important;
        padding: 14px 0 !important;
    }

    .marquee-content span {
        font-size: 0.88rem !important;
        letter-spacing: 1px !important;
    }

    .marquee-content .dot {
        margin: 0 22px !important;
    }

    .team-carousel {
        width: calc(100% + 32px);
        margin-left: -16px;
        padding: 10px 16px 34px !important;
        gap: 16px !important;
    }

    .team-member-card {
        flex-basis: 78vw !important;
        max-width: 310px;
        height: 390px !important;
    }

    .member-info h4 {
        font-size: 1.6rem !important;
    }

    .member-info p {
        font-size: 0.85rem !important;
    }

    .ambient-blob {
        opacity: 0.22 !important;
        filter: blur(70px) !important;
    }

    .footer {
        padding: 58px 18px 28px !important;
        margin-top: 40px !important;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 36px !important;
        margin-bottom: 56px !important;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero,
    .owners-hero {
        padding-top: 132px !important;
        min-height: auto;
    }

    .hero-content h1,
    .owners-hero h1,
    .owners-hero h1[style] {
        font-size: clamp(2rem, 11vw, 2.55rem) !important;
    }

    .nav-links a {
        font-size: 0.78rem;
        padding: 8px 10px;
    }

    .bento-card,
    .process-card,
    .metric-card,
    .glass-panel,
    .compare-content-box {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .process-card {
        min-height: 300px !important;
    }

    .case-stats {
        grid-template-columns: 1fr;
    }

    .black-card-mockup,
    .dashboard-mockup {
        max-width: 290px !important;
    }

    .custom-switch-wrapper {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .switch-track {
        order: 2;
    }
}
