/* ============================================================
   CAD DENTAL WAREHOUSE — index.css
   Brand: #6746f9 (violet-purple) · #16d7de (cyan-teal)
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    --violet:        #6746f9;
    --violet-dark:   #4f2fe0;
    --violet-deeper: #3a1fb5;
    --cyan:          #16d7de;
    --cyan-dark:     #0db8be;
    --cyan-light:    #e0fafb;
    --white:         #ffffff;
    --off-white:     #f7f6ff;
    --dark:          #0e0b1f;
    --dark-mid:      #1a1538;
    --text-body:     #3d3458;
    --text-muted:    #7b72a8;
    --border:        rgba(103, 70, 249, 0.15);
    --shadow-violet: rgba(103, 70, 249, 0.25);
    --shadow-cyan:   rgba(22, 215, 222, 0.25);
    --font-display:  'Outfit', sans-serif;
    --font-body:     'DM Sans', sans-serif;
    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     24px;
    --radius-pill:   999px;
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

@media (max-width: 768px) {
    .navbar .btn.navbar-cta {
        padding: 6px 12px;
        font-size: 0.72rem;
        letter-spacing: 0.1px;
        line-height: 1.2;
    }
}

.btn-primary {
    background: var(--violet);
    color: var(--white);
    border-color: var(--violet);
    box-shadow: 0 6px 24px var(--shadow-violet);
}
.btn-primary:hover {
    background: var(--violet-dark);
    border-color: var(--violet-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--shadow-violet);
}

.btn-outline {
    background: transparent;
    color: var(--violet);
    border-color: var(--violet);
}
.btn-outline:hover {
    background: var(--violet);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow-violet);
}

.btn-cyan {
    background: var(--cyan);
    color: var(--dark);
    border-color: var(--cyan);
    box-shadow: 0 6px 24px var(--shadow-cyan);
}
.btn-cyan:hover {
    background: var(--cyan-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--shadow-cyan);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 2px 24px rgba(103, 70, 249, 0.10);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
}
.brand-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
}
.brand-text span {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* scrolled brand text colors stay readable */
.navbar.scrolled .brand-text strong { color: var(--dark); }
.navbar:not(.scrolled) .brand-text strong { color: var(--white); }
.navbar:not(.scrolled) .brand-text span  { color: rgba(255,255,255,0.65); }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.navbar.scrolled .nav-link       { color: var(--text-body); }

.nav-link:hover,
.navbar:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.navbar.scrolled .nav-link:hover       { background: var(--off-white); color: var(--violet); }

.navbar-cta {
    background: var(--cyan);
    color: var(--dark) !important;
    font-weight: 700;
}
.navbar-cta:hover { background: var(--cyan-dark) !important; color: var(--dark) !important; }
.navbar.scrolled .navbar-cta { background: var(--violet); color: var(--white) !important; }
.navbar.scrolled .navbar-cta:hover { background: var(--violet-dark) !important; }

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .navbar-toggle span { background: var(--dark); }

/* Mobile menu */
.navbar-menu-mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.navbar-menu-mobile.open { display: flex; }
.navbar-menu-mobile .nav-link {
    font-size: 1.5rem;
    color: var(--white) !important;
    padding: 12px 24px;
}
.navbar-menu-mobile .nav-link:hover { color: var(--cyan) !important; background: transparent; }
.mobile-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    background: var(--dark);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Mesh gradient background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(103, 70, 249, 0.45) 0%, transparent 65%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(22, 215, 222, 0.30) 0%, transparent 65%);
}

/* Noise grain overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
}

/* Floating decorative shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.shape-1 {
    width: 500px; height: 500px;
    top: 10%; right: 5%;
    background: var(--violet);
    animation: float1 8s ease-in-out infinite;
}
.shape-2 {
    width: 300px; height: 300px;
    bottom: 15%; left: 5%;
    background: var(--cyan);
    animation: float2 10s ease-in-out infinite;
}
.shape-3 {
    width: 180px; height: 180px;
    top: 60%; right: 20%;
    background: var(--cyan);
    opacity: 0.08;
    animation: float1 6s ease-in-out infinite 2s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-30px) rotate(10deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(20px) rotate(-8deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 28px;
    position: relative;
}
.hero-badge::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), transparent);
}
.hero-badge svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(22,215,222,0.8));
}
.hero-badge span {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.9;
}
.hero-badge-dot {
    display: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero-title .accent {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item {}
.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-num span { color: var(--cyan); }
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero visual card */
.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.hero-card-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-card-logo-icon {
    width: 64px; height: 64px;
    background: #6746f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.hero-card-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-card-logo-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}
.hero-card-logo-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.feature-check {
    width: 24px; height: 24px;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-check svg { width: 12px; height: 12px; stroke: white; stroke-width: 3; }
.hero-feature-item p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
}
.hero-feature-item strong { color: var(--white); }

.hero-card-footer {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.hero-no1-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    border-radius: var(--radius-pill);
    padding: 8px 18px;
}
.hero-no1-badge span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── WHY US SECTION ───────────────────────────────────────── */
.why-section {
    padding: 100px 0;
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px var(--shadow-violet);
    border-color: rgba(103, 70, 249, 0.3);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.why-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 2; }

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── PRODUCTS SECTION ─────────────────────────────────────── */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px var(--shadow-violet);
    border-color: rgba(103, 70, 249, 0.3);
}

.product-image {
    width: 100%;
    height: 260px;
    background: var(--off-white);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f0eeff 0%, #e8fafc 100%);
}
.product-image-placeholder svg { width: 64px; height: 64px; opacity: 0.25; }
.product-image-placeholder span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.product-card:hover .product-image-placeholder { background: linear-gradient(135deg, #e8e4fe 0%, #d5f9fb 100%); }

.product-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--violet);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan-dark);
    margin-bottom: 8px;
}
.product-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.product-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--violet);
    transition: var(--transition);
}
.product-cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.product-card:hover .product-cta svg { transform: translateX(4px); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(103,70,249,0.35) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40%; right: -10%;
    width: 50%; height: 150%;
    background: radial-gradient(ellipse, rgba(22,215,222,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-inner .section-label { justify-content: center; margin-bottom: 24px; }
.cta-inner .section-title { color: var(--white); margin-bottom: 20px; }
.cta-inner .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 40px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    background: var(--dark-mid);
    padding: 72px 0 32px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--cyan), var(--violet));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text span   { color: rgba(255,255,255,0.4); }

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 20px 0 28px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.social-btn:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: var(--white);
    transform: translateY(-3px);
}
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--cyan);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-contact-item svg {
    width: 16px; height: 16px;
    stroke: var(--cyan);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--cyan); }

/* ── SCROLL TO TOP ─────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--violet);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px var(--shadow-violet);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); background: var(--violet-dark); }
.scroll-top svg { width: 20px; height: 20px; stroke: white; stroke-width: 2.5; }

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── SCROLL OFFSET ─────────────────────────────────────────── */
#home, #products, #why, #contact {
    scroll-margin-top: 0;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .navbar-nav { display: none; }
    .navbar-toggle { display: flex; }
    .why-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .products-header { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .btn { padding: 12px 24px; }
    .cvs-hero-actions { flex-direction: column; width: 100%; }
    .cvs-hero-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   SCROLL ANIMATIONS — Hero & Products
   ============================================================ */

/* ── HERO ENTRANCE ANIMATIONS (static hero removed; CVS section handles hero) ── */


/* ── PRODUCT CARDS — SLIDE IN FROM RIGHT ──────────────────── */


/* Stagger each card */

/* Products header slide-up (reuse fade-up but keep it consistent) */
.products-header .fade-up,
.products-header .btn {
    /* already handled by the existing fade-up system */
}


/* ============================================================
   HERO — real images + entrance animations
   ============================================================ */
.hero-chair-img {
    width: 100%; max-width: 480px; object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(103,70,249,0.4));
}
.hero-no1-badge { position: absolute; bottom: 24px; right: 24px; width: 90px; }
.hero-no1-badge img { width: 100%; }

/* CVS hero layer entrance animations */
.cvs-hero-text .hero-badge    { opacity:0; transform:translateY(-20px); animation: hFadeDown  0.6s cubic-bezier(.4,0,.2,1) 0.2s forwards; }
.cvs-hero-title  { opacity:0; transform:translateY(30px);  animation: hFadeUp    0.7s cubic-bezier(.4,0,.2,1) 0.4s forwards; }
.cvs-hero-sub    { opacity:0; transform:translateY(24px);  animation: hFadeUp    0.7s cubic-bezier(.4,0,.2,1) 0.6s forwards; }
.cvs-hero-actions{ opacity:0; transform:translateY(20px);  animation: hFadeUp    0.6s cubic-bezier(.4,0,.2,1) 0.8s forwards; }
.cvs-chair-wrap  { opacity:0; transform:translateX(60px);  animation: hSlideLeft 0.85s cubic-bezier(.4,0,.2,1) 0.45s forwards; }
@keyframes hFadeUp    { to { opacity:1; transform:translateY(0); } }
@keyframes hFadeDown  { to { opacity:1; transform:translateY(0); } }
@keyframes hSlideLeft { to { opacity:1; transform:translateX(0); } }

/* ============================================================
   3D SLIDER
   ============================================================ */
.slider-section { padding: 80px 0 0; background: #080618; overflow: hidden; }
.slider-header  { text-align: center; margin-bottom: 48px; }
.slider-header .section-title    { color: var(--white); }
.slider-header .section-subtitle { color: rgba(255,255,255,0.5); margin: 0 auto; }

.slider-stage {
    position: relative;
    background: #080618;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
}
.slider-bg-glow {
    position: absolute; inset: 0; pointer-events: none;
    transition: background 0.8s ease;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(103,70,249,0.12) 0%, rgba(103,70,249,0.04) 50%, transparent 100%);
}

/* Edge fade masks — only cover the carousel track area */
.slider-edge-left,
.slider-edge-right {
    position: absolute;
    top: 0;
    height: 400px; /* covers only the track area, not the info panel below */
    width: 200px;
    z-index: 6;
    pointer-events: none;
}
.slider-edge-left  {
    left: 0;
    background: linear-gradient(to right, #080618 0%, #080618 20%, rgba(8,6,24,0.7) 55%, transparent 100%);
}
.slider-edge-right {
    right: 0;
    background: linear-gradient(to left, #080618 0%, #080618 20%, rgba(8,6,24,0.7) 55%, transparent 100%);
}

/* Track */
.slides-track {
    position: relative; height: 340px;
    display: flex; align-items: center; justify-content: center;
    perspective: 1400px; perspective-origin: 50% 50%;
}

/* Slide base */
.slide {
    position: absolute; width: 200px; height: 300px;
    border-radius: 20px; cursor: pointer; outline: none;
    transition: transform 0.65s cubic-bezier(.4,0,.2,1),
                opacity   0.65s cubic-bezier(.4,0,.2,1),
                box-shadow 0.65s ease;
    transform-style: preserve-3d;
}
.slide:focus-visible { box-shadow: 0 0 0 3px var(--cyan); }

/* Positions */
.slide[data-pos="-4"],
.slide[data-pos="4"]  { transform: translateX(0) translateZ(-500px) scale(0.2); opacity: 0; z-index: 0; pointer-events: none; }
.slide[data-pos="-3"] { transform: translateX(-380px) translateZ(-220px) rotateY(35deg) scale(0.55); opacity: 0.12; z-index: 1; pointer-events: none; }
.slide[data-pos="3"]  { transform: translateX( 380px) translateZ(-220px) rotateY(-35deg) scale(0.55); opacity: 0.12; z-index: 1; pointer-events: none; }
.slide[data-pos="-2"] { transform: translateX(-260px) translateZ(-120px) rotateY(22deg) scale(0.72); opacity: 0.4; z-index: 2; }
.slide[data-pos="2"]  { transform: translateX( 260px) translateZ(-120px) rotateY(-22deg) scale(0.72); opacity: 0.4; z-index: 2; }
.slide[data-pos="-1"] { transform: translateX(-145px) translateZ(-40px) rotateY(12deg) scale(0.87); opacity: 0.35; z-index: 3; }
.slide[data-pos="1"]  { transform: translateX( 145px) translateZ(-40px) rotateY(-12deg) scale(0.87); opacity: 0.35; z-index: 3; }
.slide[data-pos="0"]  { transform: translateX(0) translateZ(0) rotateY(0deg) scale(1); opacity: 1; z-index: 5; box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(103,70,249,0.8); }

/* Slide inner */
.slide-inner {
    width: 100%; height: 100%; border-radius: 20px; overflow: hidden;
    position: relative; display: flex; flex-direction: column;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
}
.slide[data-pos="0"] .slide-inner {
    border-color: rgba(103,70,249,0.9);
    border-width: 2px;
    background: rgba(103,70,249,0.12);
}
.slide-img-wrap {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 16px 12px 8px; overflow: hidden;
}
.slide-img-wrap img {
    width: 100%; height: 100%; object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.slide[data-pos="0"] .slide-img-wrap img {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 32px rgba(103,70,249,0.4));
}
.slide-label {
    padding: 12px 14px 16px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}
.slide-model { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 3px; }
.slide-name  { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; font-family: var(--font-display); margin: 0; }
.slide-badge {
    position: absolute; top: 12px; right: 12px;
    font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
    background: rgba(103,70,249,0.4); color: #c4b5ff;
    border: 1px solid rgba(103,70,249,0.6);
}

/* Info panel */
.slider-info-panel {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    padding: 40px 56px 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 28px;
    transition: opacity 0.25s ease;
}
.slider-info-panel.transitioning { opacity: 0.15; }

.sip-model { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.sip-name  { font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.sip-desc  { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; }

.sip-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.sip-preview-btn {
    padding: 8px 18px; border-radius: 999px;
    font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
    background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.8); cursor: pointer;
    transition: all 0.25s ease;
}
.sip-preview-btn:hover { background: rgba(103,70,249,0.3); border-color: var(--violet); color: #fff; }

.sip-right { display: flex; flex-direction: column; gap: 20px; }
.sip-img-box { display: flex; flex-direction: column; gap: 8px; }
.sip-img-box span { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.sip-img-box img { width: 100%; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); }
.sip-clickable-img { cursor: zoom-in; transition: transform 0.3s ease, filter 0.3s ease; }
.sip-clickable-img:hover { transform: scale(1.02); filter: brightness(1.1); }

/* Slider controls */
.slider-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; padding: 28px 0 36px;
}
.ctrl-btn {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
}
.ctrl-btn:hover  { background: rgba(103,70,249,0.4); border-color: var(--violet); transform: scale(1.08); }
.ctrl-btn:active { transform: scale(0.94); }
.slider-dots { display: flex; gap: 8px; }
.dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: rgba(255,255,255,0.2); border: none;
    cursor: pointer; transition: all 0.35s ease; padding: 0;
}
.dot.active { background: var(--violet); width: 26px; }

/* ============================================================
   PRODUCT CARDS — slide in from right
   ============================================================ */
.product-card {
    opacity: 0; transform: translateX(70px);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1),
                transform 0.6s cubic-bezier(.4,0,.2,1),
                box-shadow 0.3s ease;
}
.product-card.slide-in { opacity: 1; transform: translateX(0); }
.product-card:nth-child(1) { transition-delay: 0.05s; }
.product-card:nth-child(2) { transition-delay: 0.15s; }
.product-card:nth-child(3) { transition-delay: 0.25s; }
.product-card:nth-child(4) { transition-delay: 0.35s; }
.product-card:nth-child(5) { transition-delay: 0.45s; }
.product-card:nth-child(6) { transition-delay: 0.55s; }

.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.06); }
.product-featured-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
    background: rgba(22,215,222,0.2); color: var(--cyan-dark);
    border: 1px solid rgba(22,215,222,0.4);
}

/* Features / Inclusions buttons */
.product-info-imgs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.product-info-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700;
    color: var(--violet); cursor: pointer; padding: 5px 12px;
    border-radius: 6px; background: rgba(103,70,249,0.08);
    border: 1.5px solid rgba(103,70,249,0.25);
    transition: all 0.2s ease;
}
.product-info-link:hover { background: var(--violet); color: #fff; border-color: var(--violet); }

/* ============================================================
   PRODUCT TABS
   ============================================================ */
.product-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; margin-bottom: 48px; }
.tab-btn {
    padding: 8px 20px; border-radius: 999px;
    font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
    border: 1.5px solid var(--border); background: transparent;
    color: var(--text-muted); cursor: pointer; transition: all 0.25s ease;
}
.tab-btn:hover  { border-color: var(--violet); color: var(--violet); }
.tab-btn.active { background: var(--violet); border-color: var(--violet); color: #fff; }

.products-group { margin-bottom: 64px; }
.group-title {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
    color: var(--dark); margin-bottom: 28px;
    padding-bottom: 12px; border-bottom: 2px solid var(--border);
    display: flex; align-items: center; gap: 10px;
}
.group-title::before { content: ''; display: inline-block; width: 18px; height: 3px; border-radius: 3px; background: var(--violet); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; visibility: hidden;
}
.lightbox.open { pointer-events: all; visibility: visible; }
.lightbox-backdrop {
    position: absolute; inset: 0;
    background: rgba(5,3,20,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0; transition: opacity 0.35s ease;
}
.lightbox.open .lightbox-backdrop { opacity: 1; }
.lightbox-container {
    position: relative; z-index: 1;
    width: min(96vw, 900px);
    background: #12102a;
    border: 1px solid rgba(103,70,249,0.3);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.7);
    opacity: 0; transform: translateY(40px) scale(0.95);
    transition: opacity 0.38s cubic-bezier(.4,0,.2,1),
                transform 0.38s cubic-bezier(.4,0,.2,1);
}
.lightbox.open .lightbox-container     { opacity: 1; transform: translateY(0) scale(1); }
.lightbox.closing .lightbox-backdrop   { opacity: 0; }
.lightbox.closing .lightbox-container  { opacity: 0; transform: translateY(24px) scale(0.97); }
.lightbox-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px 16px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lightbox-label { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan); }
.lightbox-close {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease; flex-shrink: 0;
}
.lightbox-close:hover { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.4); color: #f87171; transform: scale(1.08); }
.lightbox-close svg { width: 16px; height: 16px; }
.lightbox-body {
    padding: 12px; display: flex;
    align-items: center; justify-content: center;
    max-height: 84vh; overflow-y: auto;
}
.lightbox-body img {
    width: 100%; height: auto; border-radius: 10px; display: block;
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.4s ease 0.18s, transform 0.4s ease 0.18s;
}
.lightbox.open .lightbox-body img { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .slider-info-panel { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px 40px; }
    .slide { width: 200px; height: 300px; }
    .slide[data-pos="-2"] { transform: translateX(-210px) translateZ(-100px) rotateY(20deg) scale(0.72); }
    .slide[data-pos="2"]  { transform: translateX( 210px) translateZ(-100px) rotateY(-20deg) scale(0.72); }
    .slide[data-pos="-1"] { transform: translateX(-125px) translateZ(-30px) rotateY(12deg) scale(0.87); }
    .slide[data-pos="1"]  { transform: translateX( 125px) translateZ(-30px) rotateY(-12deg) scale(0.87); }
    .slide[data-pos="-3"], .slide[data-pos="3"] { opacity: 0; pointer-events: none; }
    .slider-edge-left, .slider-edge-right { width: 80px; }
}
@media (max-width: 600px) {
    .slides-track { height: 320px; }
    .slide { width: 190px; height: 280px; }
    .slide[data-pos="-2"], .slide[data-pos="2"] { opacity: 0; pointer-events: none; }
    .slide[data-pos="-1"] { transform: translateX(-112px) translateZ(-20px) rotateY(10deg) scale(0.82); opacity: 0.6; }
    .slide[data-pos="1"]  { transform: translateX( 112px) translateZ(-20px) rotateY(-10deg) scale(0.82); opacity: 0.6; }
    .slider-edge-left, .slider-edge-right { width: 50px; }
    .slide-model { font-size: 11px; }
    .slide-name  { font-size: 14px; }
}

/* ============================================================
   PRODUCT CARD — hover hint + detail btn + colors tag
   ============================================================ */
.product-card { cursor: pointer; }
.product-card-hover-hint {
    position: absolute; inset: 0;
    background: rgba(103,70,249,0.55);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.85rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase; color: #fff;
    opacity: 0; border-radius: inherit;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-card-hover-hint { opacity: 1; }

.product-colors-tag {
    font-size: 11px; color: var(--text-muted);
    margin-bottom: 14px;
}
.product-colors-tag strong { color: var(--cyan-dark); }

.product-card-actions {
    display: flex; gap: 10px; align-items: center;
}
.product-details-btn {
    flex: 1;
    padding: 10px 14px; border-radius: 10px;
    font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
    background: var(--violet); color: #fff; border: none; cursor: pointer;
    transition: all 0.25s ease;
}
.product-details-btn:hover { background: #5534e0; transform: translateY(-1px); }
.product-cta {
    padding: 10px 14px !important;
    white-space: nowrap;
}

/* ============================================================
   PRODUCT DETAIL MODAL  (.pmodal)
   ============================================================ */
.pmodal {
    position: fixed; inset: 0; z-index: 9998;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    pointer-events: none; visibility: hidden;
}
.pmodal.open { pointer-events: all; visibility: visible; }

.pmodal-backdrop {
    position: absolute; inset: 0;
    background: rgba(4,2,18,0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0; transition: opacity 0.35s ease;
}
.pmodal.open .pmodal-backdrop { opacity: 1; }

/* Scrollable wrapper — the full modal scrolls as one page */
.pmodal-container {
    position: relative; z-index: 1;
    width: 100%;
    max-width: 1020px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 20px;
    box-shadow: 0 40px 120px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1),
                transform 0.4s cubic-bezier(.4,0,.2,1);
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(103,70,249,0.5) transparent;
}
.pmodal-container::-webkit-scrollbar { width: 5px; }
.pmodal-container::-webkit-scrollbar-track { background: transparent; }
.pmodal-container::-webkit-scrollbar-thumb { background: rgba(103,70,249,0.5); border-radius: 99px; }

.pmodal.open .pmodal-container    { opacity: 1; transform: translateY(0) scale(1); }
.pmodal.closing .pmodal-backdrop  { opacity: 0; }
.pmodal.closing .pmodal-container { opacity: 0; transform: translateY(30px) scale(0.97); }

/* Close button — sticky at top-right */
.pmodal-close {
    position: sticky; top: 12px;
    float: right; margin: 12px 12px -48px 0;
    z-index: 20;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.25);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.pmodal-close:hover { background: rgba(239,68,68,0.4); border-color: #f87171; transform: scale(1.1); }
.pmodal-close svg { width: 16px; height: 16px; }

/* ── TOP — white, hero left + features right ── */
.pmodal-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
}
.pmodal-hero {
    background: linear-gradient(135deg, #f0f0f8 0%, #e4e4f4 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 48px 32px;
    min-height: 340px;
}
.pmodal-hero img {
    width: 100%; max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 16px 48px rgba(0,0,0,0.18));
    opacity: 0; transform: translateX(-30px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.pmodal.open .pmodal-hero img { opacity: 1; transform: translateX(0); }

/* Feature grid — hidden on mobile, shown on desktop as context not repetition */
.pmodal-features-wrap {
    padding: 28px 24px 24px;
    display: flex; flex-direction: column; gap: 10px;
    border-left: 1px solid #eee;
}
.pmodal-feat-img {
    width: 100%; border-radius: 8px; display: block;
    cursor: zoom-in;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.pmodal.open .pmodal-feat-img  { opacity: 1; transform: translateY(0); }
.pmodal-feat-img:hover         { filter: brightness(1.04); }

/* On mobile: collapse to full-width hero, hide feature grid */
@media (max-width: 860px) {
    .pmodal-top {
        grid-template-columns: 1fr;
    }
    .pmodal-features-wrap {
        display: none !important;
    }
    .pmodal-hero {
        min-height: 220px;
        padding: 32px 24px;
    }
    .pmodal-top.single-col {
        grid-template-columns: 1fr;
    }
}

/* ── BOTTOM — purple ── */
.pmodal-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #5c35d8;
    padding: 36px 40px 44px;
    gap: 40px;
    align-items: start;
}

.pmodal-section-label {
    font-family: var(--font-display);
    font-size: 10px; font-weight: 800;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 6px;
}
.pmodal-section-label.cyan { color: var(--cyan); margin-bottom: 14px; }

.pmodal-model-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 900; color: #fff;
    line-height: 1; margin-bottom: 4px;
    letter-spacing: -0.5px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.45s ease 0.15s, transform 0.45s ease 0.15s;
}
.pmodal.open .pmodal-model-title { opacity: 1; transform: translateY(0); }

.pmodal-colors {
    font-family: var(--font-display);
    font-size: 10px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 18px;
}

.pmodal-specs-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-bottom: 24px;
}
.pmodal-specs-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 5px;
}
.pmodal-specs-list li {
    font-size: 11.5px; color: rgba(255,255,255,0.82); line-height: 1.5;
    padding-left: 14px; position: relative;
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.pmodal.open .pmodal-specs-list li { opacity: 1; transform: translateX(0); }
.pmodal-specs-list li::before { content: '•'; position: absolute; left: 0; color: var(--cyan); }

.pmodal-cta { margin-top: 8px; display: inline-flex; }

/* Inclusions */
.pmodal-inclusions-side { display: flex; flex-direction: column; }
.pmodal-incl-img {
    width: 100%; border-radius: 10px; display: block;
    cursor: zoom-in;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}
.pmodal.open .pmodal-incl-img  { opacity: 1; transform: translateY(0); }
.pmodal-incl-img:hover         { filter: brightness(1.05); }

/* Edge cases */
.pmodal-features-wrap.no-img { display: none; }
.pmodal-top.single-col { grid-template-columns: 1fr; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .pmodal-bottom { grid-template-columns: 1fr; padding: 28px 24px 36px; gap: 28px; }
}
@media (max-width: 540px) {
    .pmodal { padding: 8px; }
    .pmodal-container { max-height: calc(100vh - 16px); border-radius: 14px; }
    .pmodal-hero { padding: 24px 16px; min-height: 200px; }
    .pmodal-bottom { padding: 24px 18px 32px; }
    .pmodal-specs-cols { grid-template-columns: 1fr; }
    .pmodal-model-title { font-size: 1.7rem; }
}

/* ============================================================
   HERO → CORE VALUES MORPH SECTION
   ============================================================ */
.cvs-section {
    /* scroll height set by GSAP */
    position: relative;
}

.cvs-pin {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #080618;
}

/* ── PHASE 1: Hero layer ── */
.cvs-hero-layer {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5vw;
    z-index: 2;
}
.cvs-hero-text {
    display: flex; flex-direction: column; gap: 24px;
    padding-right: 32px;
}
.cvs-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900; color: #fff;
    line-height: 1.1; letter-spacing: -0.5px;
}
.cvs-hero-sub {
    font-size: 0.95rem; color: rgba(255,255,255,0.55);
    line-height: 1.75; max-width: 420px;
}
.cvs-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Chair image wrap */
.cvs-chair-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    height: 100%;
}
.cvs-chair-img {
    width: 100%; max-width: 520px; max-height: 75vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(103,70,249,0.35));
    will-change: transform;
}
.cvs-badge-img {
    position: absolute; bottom: 12%; right: 8%;
    width: 80px;
}

/* ── PHASE 2: Core Values layer ── */
.cvs-values-layer {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: 40% 1fr;
    opacity: 0;
    pointer-events: none;
    z-index: 3;              /* above hero layer so values show on top */
    background: transparent; /* dark bg comes from .cvs-pin */
}
.cvs-values-layer.visible { pointer-events: all; }

/* Left spacer — the animated chair lands here, nothing extra needed */
.cvs-values-left-spacer {
    /* intentionally empty */
}

/* Right: values list — dark panel matching the overall dark bg */
.cvs-values-right {
    background: rgba(8, 6, 24, 0.95);  /* matches #080618 */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 40px 48px;
    gap: 0;
    overflow-y: auto;
    border-left: none;
}

.cvs-value-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 18px 0;
    border-bottom: none;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.cvs-value-item:last-child { border-bottom: none; }
.cvs-value-item.revealed   { opacity: 1; transform: translateY(0); }

.cvs-value-num {
    flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--cyan);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.1rem;
    font-weight: 900; color: var(--dark);
    box-shadow: 0 4px 16px rgba(22,215,222,0.35);
}

.cvs-value-body h3 {
    font-family: var(--font-display); font-size: 0.82rem;
    font-weight: 900; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--cyan);
    margin-bottom: 5px;
}
.cvs-value-body p {
    font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65;
}

/* Progress dots */
.cvs-progress-dots {
    position: absolute; bottom: 20px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.cvs-prog-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: all 0.4s ease;
}
.cvs-prog-dot.active { background: var(--violet); width: 24px; border-radius: 4px; }

/* ── Responsive ── */
@media (max-width: 860px) {
    /* Pin becomes normal flow */
    .cvs-pin {
        height: auto !important;
        min-height: unset;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    /* ── Show hero layer on mobile — stacked layout ── */
    .cvs-hero-layer {
        display: flex !important;
        position: relative !important;
        grid-template-columns: unset;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 100px 28px 0;
        gap: 0;
        z-index: 2;
    }
    .cvs-hero-text {
        padding-right: 0;
        align-items: center;
        gap: 16px;
        order: 1;
    }
    .cvs-hero-title {
        font-size: clamp(1.9rem, 7vw, 2.8rem);
    }
    .cvs-hero-sub {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .cvs-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .cvs-hero-actions .btn {
        min-width: 140px;
    }
    /* Chair below hero text */
    .cvs-chair-wrap {
        order: 2;
        height: auto;
        width: 100%;
        padding: 32px 0 0;
    }
    .cvs-chair-img {
        max-width: 280px;
        max-height: 280px;
        margin: 0 auto;
        display: block;
    }
    .cvs-badge-img {
        width: 60px;
        bottom: 8%;
        right: 10%;
    }

    /* ── Core values layer — below hero, same dark bg ── */
    .cvs-values-layer {
        position: relative !important;
        display: flex;
        flex-direction: column;
        opacity: 1 !important;
        background: #080618;
        transform: none !important;
        z-index: 2;
    }
    /* Hide spacer — we have the real chair above */
    .cvs-values-left-spacer {
        display: none;
    }
    .cvs-values-right {
        border-left: none;
        border-top: none;
        padding: 32px 28px 48px;
        background: #080618;
        justify-content: flex-start;
    }
    .cvs-value-item {
        opacity: 1 !important;
        transform: none !important;
        gap: 16px;
        padding: 14px 0;
    }
    .cvs-value-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    .cvs-value-body h3 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    .cvs-value-body p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Hide progress dots on mobile */
    .cvs-progress-dots { display: none; }
}

@media (max-width: 480px) {
    .cvs-hero-layer {
        padding: 90px 20px 0;
    }
    .cvs-hero-title {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }
    .cvs-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .cvs-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .cvs-chair-img {
        max-width: 240px;
        max-height: 240px;
    }
    .cvs-values-right {
        padding: 24px 20px 40px;
    }
    .cvs-value-num { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ============================================================
   MOBILE FIXES — Polish pass for screens ≤ 480px
   ============================================================ */

/* ── NAVBAR: hide CTA on mobile — lives inside the mobile menu instead ── */
@media (max-width: 768px) {
    .navbar-nav .navbar-cta,
    .navbar-cta,
    .navbar-inner .btn.navbar-cta,
    .navbar-inner a.navbar-cta,
    .navbar .btn.navbar-cta {
        display: none !important;
    }

    /* CTA inside mobile fullscreen menu */
    .mobile-menu-cta {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background: var(--violet);
        color: var(--white) !important;
        border-radius: var(--radius-pill);
        padding: 14px 40px;
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-decoration: none;
        margin-top: 8px;
        transition: var(--transition);
    }
    .mobile-menu-cta:hover {
        background: var(--cyan);
        color: var(--dark) !important;
    }

    /* Compact navbar padding */
    .navbar { padding: 14px 0; }
    .navbar.scrolled { padding: 10px 0; }

    /* Smaller brand logo */
    .brand-logo-icon { width: 36px; height: 36px; border-radius: 10px; }
    .brand-text strong { font-size: 0.9rem; }
    .brand-text span { font-size: 0.6rem; letter-spacing: 1px; }

    /* Hamburger more visible */
    .navbar-toggle {
        display: flex;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255,255,255,0.08);
    }
    .navbar-toggle span { width: 22px; }

    /* Mobile menu: add CTA button inside */
    .navbar-menu-mobile {
        gap: 24px;
        padding: 0 32px;
    }
    .navbar-menu-mobile .nav-link {
        font-size: 1.35rem;
        padding: 10px 20px;
    }
    .mobile-menu-cta {
        margin-top: 8px;
        display: inline-flex !important;
        background: var(--violet);
        color: var(--white) !important;
        border-radius: var(--radius-pill);
        padding: 14px 36px;
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: var(--transition);
    }
    .mobile-menu-cta:hover { background: var(--cyan); color: var(--dark) !important; }
}

/* ── HERO / CVS HERO: tighter padding, better sizing ── */
@media (max-width: 768px) {
    .cvs-hero-layer {
        padding: 90px 24px 0 !important;
        gap: 8px !important;
    }
    .cvs-hero-text {
        gap: 12px !important;
    }
    .hero-badge {
        padding: 5px 12px;
        margin-bottom: 0;
    }
    .hero-badge span { font-size: 0.68rem; letter-spacing: 1.5px; }
    .cvs-hero-title {
        font-size: clamp(1.75rem, 7.5vw, 2.4rem) !important;
        letter-spacing: -0.3px;
    }
    .cvs-hero-sub {
        font-size: 0.88rem !important;
        color: rgba(255,255,255,0.6);
        line-height: 1.65;
        max-width: 340px;
    }
    .cvs-hero-actions {
        gap: 10px !important;
        justify-content: center;
    }
    .cvs-hero-actions .btn {
        padding: 13px 28px;
        font-size: 0.88rem;
    }
    .cvs-chair-wrap {
        padding: 20px 0 0 !important;
    }
    .cvs-chair-img {
        max-width: 260px !important;
        max-height: 260px !important;
    }
}

@media (max-width: 480px) {
    .cvs-hero-layer {
        padding: 80px 18px 0 !important;
    }
    .cvs-hero-title {
        font-size: clamp(1.6rem, 8.5vw, 2rem) !important;
    }
    .cvs-hero-sub {
        font-size: 0.85rem !important;
        max-width: 100%;
    }
    .cvs-hero-actions {
        flex-direction: column !important;
        width: 100%;
        align-items: stretch;
    }
    .cvs-hero-actions .btn {
        width: 100% !important;
        justify-content: center;
        padding: 14px 20px;
    }
    .cvs-chair-img {
        max-width: 220px !important;
        max-height: 220px !important;
    }

    /* Hero stats: tighter on small screens */
    .hero-stats {
        gap: 20px;
        margin-top: 32px;
        padding-top: 24px;
    }
    .stat-num { font-size: 1.6rem; }
    .stat-label { font-size: 0.7rem; }
}

/* ── GENERAL SECTION SPACING ON MOBILE ── */
@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }
    .container {
        padding: 0 18px;
    }
}

/* ── PRODUCT CARDS ── */
@media (max-width: 480px) {
    .product-card { border-radius: 16px; }
    .product-card-body { padding: 20px; }
}

/* ── FOOTER ── */
@media (max-width: 480px) {
    .footer-bottom { gap: 12px; }
    .footer-legal { font-size: 0.78rem; }
}


/* ============================================================
   SEAM FIX — eliminate visible line between chair & values
   + Navbar CTA size fix
   ============================================================ */

/* ── SEAM: ensure entire CVS block is the same dark bg, no gaps ── */
@media (max-width: 860px) {
    /* The section wrapper itself must be dark — no white bleed */
    .cvs-section,
    .cvs-pin {
        background: #080618 !important;
    }

    /* Chair wrap: dark bg — keep padding for glow breathing room */
    .cvs-chair-wrap {
        background: #080618 !important;
        margin-bottom: 0 !important;
        /* padding-bottom handled by mobile patch — do NOT override to 0 */
    }

    /* Hero layer: dark bg, zero bottom padding */
    .cvs-hero-layer {
        background: #080618 !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Values layer: seamless continuation, no top border/gap */
    .cvs-values-layer {
        background: #080618 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
        box-shadow: none !important;
    }

    .cvs-values-right {
        background: #080618 !important;
        border-top: none !important;
        border-left: none !important;
        margin-top: 0 !important;
        padding-top: 20px !important;
    }

    /* No margin/padding on cvs-chair-img that could create white space */
    .cvs-chair-img {
        display: block;
        margin: 0 auto;
        /* keep drop shadow but kill any background bleed */
    }
}

@media (max-width: 400px) {
    /* On very small screens, fully hide it and rely on hamburger menu */
    .navbar-cta {
        display: none !important;
    }
}


/* ============================================================
   FINAL TARGETED FIXES
   ============================================================ */

/* Hide Inquire Now from navbar on mobile — desktop only */
@media (max-width: 768px) {
    .desktop-only-cta,
    .nav-cta {
        display: none !important;
    }
}

/* Modal hero full-width when feature grid is removed */
.pmodal-top--hero-only {
    grid-template-columns: 1fr !important;
}
.pmodal-top--hero-only .pmodal-hero {
    min-height: 300px;
    padding: 48px 40px;
}
.pmodal-top--hero-only .pmodal-hero img {
    max-height: 380px;
}
@media (max-width: 768px) {
    .pmodal-top--hero-only .pmodal-hero {
        min-height: 200px;
        padding: 32px 20px;
    }
    .pmodal-top--hero-only .pmodal-hero img {
        max-height: 240px;
    }
}


/* ============================================================
   I GOT CAD — Customer Gallery Section
   ============================================================ */
.igotcad-section {
    background: #080618;
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}
.igotcad-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22,215,222,0.4), transparent);
}

.igotcad-header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 60px;
}
.igotcad-header .section-title {
    color: var(--white);
}

/* ── Marquee ── */
.igotcad-marquee-wrap {
    position: relative;
    overflow: hidden;
    /* fade edges */
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.igotcad-marquee {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: igotcad-scroll 400s linear infinite;
}
.igotcad-marquee:hover {
    animation-play-state: paused;
}
@keyframes igotcad-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Cards ── */
.igotcad-card {
    flex-shrink: 0;
    width: 260px;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: default;
}
.igotcad-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #12102a;
}
.igotcad-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.igotcad-card:hover .igotcad-img-wrap img {
    transform: scale(1.04);
}
.igotcad-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,6,24,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}
.igotcad-card:hover .igotcad-overlay {
    opacity: 1;
}
.igotcad-bubble {
    background: linear-gradient(135deg, #6746f9, #9066ff);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(103,70,249,0.5);
}

/* ── Card Info — removed (image-only cards) ── */

/* ── CTA Row ── */
.igotcad-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    padding: 0 24px;
    text-align: center;
}
.igotcad-count {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}
.igotcad-empty {
    text-align: center;
    color: rgba(255,255,255,0.3);
    padding: 60px 0;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .igotcad-section { padding: 72px 0 60px; }
    .igotcad-header  { margin-bottom: 40px; }
    .igotcad-card    { width: 230px; }
}



/* ============================================================
   MOBILE POLISH PATCH v3
   ============================================================ */

/* ── FIX 1: Chair glow — allow overflow, override seam padding ── */
@media (max-width: 860px) {
    .cvs-pin {
        overflow: visible !important;
    }
    .cvs-section {
        overflow-x: hidden;
        overflow-y: visible;
    }
    /* Override the seam fix's 0 padding — glow needs breathing room */
    .cvs-chair-wrap {
        padding-bottom: 60px !important;
        padding-top: 20px !important;
        overflow: visible !important;
        background: #080618 !important;
    }
    .cvs-chair-img {
        filter:
            drop-shadow(0 0 30px rgba(103,70,249,0.8))
            drop-shadow(0 0 80px rgba(103,70,249,0.4))
            drop-shadow(0 30px 60px rgba(103,70,249,0.5)) !important;
        overflow: visible !important;
        max-width: 300px !important;
        display: block;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .cvs-chair-wrap {
        padding-bottom: 50px !important;
    }
    .cvs-chair-img {
        max-width: 260px !important;
    }
}

/* ── FIX 2: Burger toggle ─────────────────────────────────── */
@media (max-width: 768px) {
    .navbar-nav { display: none !important; }
    .desktop-only-cta, .nav-cta { display: none !important; }

    .navbar-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .navbar { padding: 12px 0 !important; }
    .navbar.scrolled { padding: 8px 0 !important; }

    .brand-logo-icon { width: 36px !important; height: 36px !important; }
    .brand-text strong { font-size: 0.88rem !important; }
    .brand-text span { font-size: 0.58rem !important; }

    /* Hamburger — clean pill icon */
    .navbar-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 12px !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1.5px solid rgba(255,255,255,0.15) !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        z-index: 1002 !important;
        position: relative !important;
    }
    .navbar-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: #fff !important;
        border-radius: 2px !important;
        pointer-events: none !important;
    }
    .navbar.scrolled .navbar-toggle span { background: var(--dark) !important; }
}

/* ── FIX 3: Full-screen mobile menu — professional ────────── */
@media (max-width: 768px) {
    .navbar-menu-mobile {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100svh !important;
        background: linear-gradient(150deg, #100d28 0%, #1c1245 50%, #100d28 100%) !important;
        z-index: 1001 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        /* Enough top padding so close button doesn't overlap links */
        padding: 72px 28px 48px !important;
    }
    .navbar-menu-mobile.open {
        display: flex !important;
    }

    /* Glow orb behind menu items */
    .navbar-menu-mobile::before {
        content: '';
        position: absolute;
        top: 35%; left: 50%;
        transform: translate(-50%, -50%);
        width: 300px; height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(103,70,249,0.15) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    /* Close button — fixed to top-right, NOT inside flow */
    .mobile-close {
        position: fixed !important;
        top: 16px !important;
        right: 16px !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 12px !important;
        background: rgba(255,255,255,0.07) !important;
        border: 1.5px solid rgba(255,255,255,0.14) !important;
        color: rgba(255,255,255,0.75) !important;
        font-size: 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        z-index: 1100 !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: all 0.2s ease !important;
    }
    .mobile-close:hover {
        background: rgba(255,255,255,0.14) !important;
        color: #fff !important;
    }

    /* Nav links */
    .navbar-menu-mobile .nav-link {
        font-family: var(--font-display) !important;
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: rgba(255,255,255,0.82) !important;
        padding: 14px 36px !important;
        border-radius: 14px !important;
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
        letter-spacing: 0.3px !important;
        border: 1.5px solid transparent !important;
        background: transparent !important;
        position: relative;
        z-index: 1;
        transition: all 0.18s ease !important;
    }
    .navbar-menu-mobile .nav-link:hover,
    .navbar-menu-mobile .nav-link:active {
        color: var(--cyan) !important;
        background: rgba(22,215,222,0.06) !important;
        border-color: rgba(22,215,222,0.22) !important;
    }

    /* CTA button at the bottom */
    .navbar-menu-mobile .btn {
        margin-top: 20px !important;
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 15px 32px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        border-radius: var(--radius-pill) !important;
        position: relative;
        z-index: 1;
    }
}