/* ==========================================================================
   NUMBERSKART - MASTER LUXURY SYSTEM STYLESHEET
   Typography: Space Grotesk (Headlines, VIP numbers) & Inter (UI/Body)
   Aesthetics: Apple Minimalist x Rolex Showroom x Tesla Dashboard
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Fonts */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Theme Colors - Light / Default */
    --bg-white: #FFFFFF;
    --bg-light: #F7F9FC;
    --border-light: rgba(11, 16, 32, 0.06);
    --text-dark: #0B1020;
    --text-muted: #64748B;

    /* Theme Colors - Dark Contrasts & Sections */
    --bg-dark: #0B1020;
    --bg-darker: #070A14;
    --border-dark: rgba(255, 255, 255, 0.08);
    --text-white: #FFFFFF;
    --text-silver: #94A3B8;

    /* Accents */
    --primary: #002054;         /* Premium Navy Blue from Logo */
    --secondary: #009D4C;       /* Emerald Green from Logo */
    --gold: #D4AF37;            /* Luxury Gold */
    --gold-glow: rgba(212, 175, 55, 0.2);
    --primary-glow: rgba(0, 32, 84, 0.2);
    --glass-white: rgba(255, 255, 255, 0.75);
    --glass-dark: rgba(11, 16, 32, 0.85);

    /* Layout & Motion */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.01);
    --shadow-premium: 0 30px 60px -15px rgba(0, 32, 84, 0.06), 0 0 1px rgba(0, 32, 84, 0.1);
    --shadow-glow: 0 0 30px rgba(0, 32, 84, 0.25);
    
    --site-max-width: 1280px;
}

/* ==========================================================================
   BASE RESET & LAYOUTS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: inherit;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.6;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: rgba(11, 16, 32, 0.15);
    border-radius: 10px;
    border: 3px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.container {
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 120px 0;
    position: relative;
}

/* Gradients & Accent Text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #4b89ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-green {
    background: linear-gradient(135deg, var(--secondary) 0%, #68e085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #f3d060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Glowing Mesh Orbs */
.bg-mesh-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -5;
    top: 0;
    left: 0;
    pointer-events: none;
}
.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.08;
    animation: drift 25s infinite alternate ease-in-out;
}
.orb-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary) 0%, rgba(0, 32, 84, 0) 70%);
    top: -10%;
    right: -10%;
}
.orb-2 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--secondary) 0%, rgba(0, 157, 76, 0) 70%);
    bottom: 20%;
    left: -10%;
    animation-delay: -5s;
}
@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, 8%) scale(1.15); }
}

/* ==========================================================================
   LOADING SCREEN (Digit merging)
   ========================================================================== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}
.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-digits {
    position: absolute;
    font-family: var(--font-display);
    font-size: 16vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.015);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    animation: driftLeft 30s infinite linear;
}
.loader-content {
    text-align: center;
    position: relative;
    z-index: 10;
}
.loader-logo {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.loader-logo span {
    color: var(--primary);
}
.loader-bar {
    width: 220px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}
.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: loadProgress 2s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}
@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes driftLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 990;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.header-nav.scrolled {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.header-nav.scrolled .nav-container {
    height: 72px;
}
.header-nav.dark-nav {
    background: transparent;
    border-bottom: 1px solid transparent;
}
.header-nav.dark-nav.scrolled {
    background: rgba(11, 16, 32, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
    transition: var(--transition);
}
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}
.header-nav.scrolled .logo-img {
    height: 36px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}
.nav-item a {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding: 8px 16px;
    border-radius: 30px;
    white-space: nowrap;
    transition: var(--transition);
}
.header-nav.dark-nav .nav-item a {
    color: var(--text-silver);
}
.nav-item a::after {
    display: none !important;
}
.nav-item a:hover {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.06);
}
.header-nav.dark-nav .nav-item a:hover {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.12);
}
.nav-item.active a {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
}
.header-nav.dark-nav .nav-item.active a {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.18);
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wishlist-indicator {
    position: relative;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
}
.header-nav.dark-nav .wishlist-indicator {
    color: var(--text-white);
}
.wishlist-indicator:hover {
    color: var(--primary);
    transform: scale(1.1);
}
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}
.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 32, 84, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 32, 84, 0.35);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 157, 76, 0.2);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 157, 76, 0.35);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b8901e 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-light);
    color: var(--text-dark);
}
.btn-outline:hover {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}
.header-nav.dark-nav .btn-outline {
    border-color: var(--border-dark);
    color: var(--text-white);
}
.header-nav.dark-nav .btn-outline:hover {
    background: #fff;
    color: var(--bg-dark);
    border-color: #fff;
}
.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--bg-dark);
    border-color: #fff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ==========================================================================
   GLASSMORPHISM & CARDS
   ========================================================================== */
.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}
.glass-card-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}
.hero-content {
    max-width: 650px;
}
.hero-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating 3D SIM Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}
.sim-card-3d {
    width: 320px;
    height: 480px;
    background: rgba(0, 157, 76, 0.45); /* Border color (logo green) */
    clip-path: polygon(0 0, 260px 0, 100% 60px, 100% 100%, 0 100%);
    padding: 1.5px; /* Border thickness */
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg);
    animation: simFloat 3s ease-in-out infinite alternate;
    /* Apply box-shadow via filter since clip-path clips standard box-shadows! */
    filter: drop-shadow(0 30px 50px rgba(0, 32, 84, 0.25)) drop-shadow(0 0 20px rgba(0, 157, 76, 0.1));
}
.sim-card-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #030a1c 100%); /* Deep navy card body */
    clip-path: polygon(0 0, 259.5px 0, 100% 59.5px, 100% 100%, 0 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@keyframes simFloat {
    0% { transform: rotateY(-12deg) rotateX(8deg) translateY(0); }
    100% { transform: rotateY(-20deg) rotateX(12deg) translateY(-25px); }
}
.sim-chip {
    width: 70px;
    height: 55px;
    background: linear-gradient(135deg, #FFE066 0%, #F5B041 50%, #C0392B 100%);
    border-radius: 8px;
    position: relative;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.6), 0 5px 15px rgba(0,0,0,0.15);
    overflow: hidden;
}
.sim-chip-line-h {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.25);
}
.sim-chip-line-v1 {
    position: absolute;
    top: 0;
    left: 32%;
    width: 1.5px;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}
.sim-chip-line-v2 {
    position: absolute;
    top: 0;
    left: 68%;
    width: 1.5px;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}
.sim-chip-center {
    position: absolute;
    top: 22%;
    left: 20%;
    width: 60%;
    height: 56%;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background: transparent;
}
.sim-digits {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 5px var(--secondary);
    letter-spacing: 0.05em;
    margin: 40px 0;
    transform: translateZ(30px);
}
.sim-branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateZ(20px);
}
.sim-brand-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}
.sim-brand-logo span {
    color: var(--secondary);
}

/* ==========================================================================
   FUTURISTIC SEARCH EXPERIENCE
   ========================================================================== */
.search-section {
    background: var(--bg-white);
}
.search-console {
    max-width: 900px;
    margin: 0 auto;
    border: 1.5px solid rgba(0, 32, 84, 0.08);
}
.search-tabs {
    display: flex;
    list-style: none;
    border-bottom: 1.5px solid var(--border-light);
    margin-bottom: 30px;
    gap: 30px;
}
.search-tab {
    padding: 12px 4px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    font-size: 15px;
    transition: var(--transition);
}
.search-tab.active, .search-tab:hover {
    color: var(--primary);
}
.search-tab::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.search-tab.active::after {
    width: 100%;
}
.search-input-wrap {
    display: flex;
    position: relative;
    border: 1.5px solid var(--border-light);
    border-radius: 50px;
    background: #fff;
    padding: 8px 8px 8px 24px;
    align-items: center;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
}
.search-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 32, 84, 0.06);
}
.search-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-dark);
}
.search-input-wrap input::placeholder {
    color: var(--text-muted);
}
.search-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.search-btn:hover {
    background: #0046cc;
    transform: scale(1.05);
}

.search-filters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.filter-dropdown {
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: #fff;
    font-size: 13.5px;
    color: var(--text-muted);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}
.filter-dropdown:focus {
    border-color: var(--primary);
}

/* Dynamic Live Suggestions */
.search-suggestions {
    margin-top: 30px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}
.suggestion-title {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ==========================================================================
   EXCLUSIVE VIP VAULT SECTION
   ========================================================================== */
.vault-section {
    background: var(--bg-dark);
    color: var(--text-white);
    overflow: hidden;
}
.vault-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 80px;
}
.vault-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}
.vault-content p {
    color: var(--text-silver);
    font-size: 16.5px;
    margin-bottom: 35px;
    max-width: 480px;
}
.vault-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vault-door-outer {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #1b2433 0%, #0d121c 100%);
    border: 8px solid #161e2b;
    box-shadow: 
        0 0 0 2px var(--gold),
        0 25px 60px rgba(0,0,0,0.65), 
        inset 0 0 20px rgba(0,0,0,0.9),
        inset 0 0 0 2px rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s;
    transform-origin: left center;
}
.vault-door-outer::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.25);
    pointer-events: none;
}
.vault-door-outer.open {
    transform: rotateY(-110deg);
    opacity: 0.25;
    pointer-events: none;
}
.vault-spokes {
    position: absolute;
    width: 100%;
    height: 100%;
}
.vault-spoke {
    position: absolute;
    width: 14px;
    height: 145px;
    background: linear-gradient(to right, #8a6f27 0%, #d4af37 30%, #fff7d6 50%, #d4af37 70%, #8a6f27 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    left: calc(50% - 7px);
    top: 50%;
    transform-origin: top center;
    border-radius: 6px;
    box-shadow: 
        0 4px 10px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.4);
}
.vault-spoke::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff7d6 0%, #d4af37 60%, #8a6f27 100%);
    box-shadow: 
        0 3px 6px rgba(0,0,0,0.4),
        0 0 10px rgba(212, 175, 55, 0.3);
}
.vault-spoke:nth-child(1) { transform: rotate(0deg) translateY(-50%); }
.vault-spoke:nth-child(2) { transform: rotate(90deg) translateY(-50%); }
.vault-spoke:nth-child(3) { transform: rotate(180deg) translateY(-50%); }
.vault-spoke:nth-child(4) { transform: rotate(270deg) translateY(-50%); }

.vault-dial {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: 
        repeating-conic-gradient(from 0deg, rgba(212, 175, 55, 0.4) 0deg 1.5deg, transparent 1.5deg 12deg),
        radial-gradient(circle, #161f30 35%, #0b0f19 100%);
    border: 4px solid #d4af37;
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.25), 
        inset 0 0 15px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.vault-dial-core {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 50%, #8a6f27 100%);
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.4), 
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}
.vault-status-dot {
    position: absolute;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 10px #ff3b30, 0 0 20px #ff3b30;
    transition: all 0.3s ease;
}
.vault-dial:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.45), 
        inset 0 0 15px rgba(0, 0, 0, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.5);
}
.vault-dial:hover .vault-dial-core {
    transform: rotate(-30deg);
}

.vault-interior {
    position: absolute;
    width: 330px;
    height: 330px;
    background: radial-gradient(circle, #0b0f19 0%, #030508 100%);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 12px;
    z-index: 5;
    box-shadow: 
        inset 0 0 50px rgba(212, 175, 55, 0.08),
        0 0 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}
.vault-interior-num {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.vault-interior-num:hover {
    transform: scale(1.05);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

/* ==========================================================================
   VIP CARD PLATES (The Core Luxury Listing Asset Card)
   ========================================================================== */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Base Plate Style */
.plate-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 20px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    gap: 14px;
    height: auto;
}
.plate-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(11, 16, 32, 0.12);
}

/* 1. Classic Glass Plate */
.plate-classic {
    background: #ffffff;
    border: 1.5px solid var(--border-light);
}

/* 2. Carbon Fiber Plate (Premium dark edition) */
.plate-carbon {
    background: #ffffff;
    border: 1.5px solid var(--primary);
    box-shadow: var(--shadow-soft);
}

/* 3. Gold Edition Plate */
.plate-gold {
    background: #ffffff;
    border: 1.5px solid #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
}

/* Inner elements of plates */
.plate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.plate-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}
.plate-classic .plate-badge {
    background: rgba(0, 32, 84, 0.08);
    color: var(--primary);
}
.plate-carbon .plate-badge {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.plate-gold .plate-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.plate-chip {
    width: 44px;
    height: 34px;
    background: linear-gradient(135deg, #ccc 0%, #777 100%);
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.4);
}

.plate-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 20px 0;
    z-index: 2;
}
.plate-classic .plate-number {
    color: var(--text-dark);
}
.plate-carbon .plate-number {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.plate-gold .plate-number {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.plate-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.plate-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}
.plate-classic .plate-price {
    color: var(--text-dark);
}
.plate-carbon .plate-price {
    color: #fff;
}
.plate-gold .plate-price {
    color: #fff;
}

.plate-actions {
    display: flex;
    gap: 12px;
}
.plate-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.plate-btn-wish {
    background: rgba(11, 16, 32, 0.04);
    color: var(--text-dark);
}
.plate-btn-wish:hover {
    background: #ff3b30;
    color: #fff;
}
.plate-btn-wish.wished {
    background: #ff3b30;
    color: #fff;
}
.plate-carbon .plate-btn-wish {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.plate-gold .plate-btn-wish {
    background: rgba(255,255,255,0.06);
    color: var(--gold);
}

.plate-btn-buy {
    background: var(--primary);
    color: #fff;
}
.plate-btn-buy:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.category-card {
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.category-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 32, 84, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}
.category-card:hover .category-icon-wrap {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.category-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
}
.category-desc {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   LIVE STATS / COUNTERS
   ========================================================================== */
.stats-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #FFFFFF 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item {
    padding: 20px;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.stat-number span {
    color: var(--primary);
}
.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
    overflow: hidden;
    background: var(--bg-darker);
    color: var(--text-white);
}
.slider-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 40px 0;
}
.testimonials-track {
    display: flex;
    gap: 30px;
    animation: marquee 35s infinite linear;
    width: max-content;
}
.testimonials-track:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Loop points match count exactly */
}
.testimonial-card {
    width: 380px;
    flex-shrink: 0;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.testimonial-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary);
}
.testimonial-meta h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.testimonial-meta p {
    font-size: 12px;
    color: var(--text-silver);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 12px;
    margin-top: 4px;
}
.testimonial-text {
    font-size: 13.5px;
    color: var(--text-silver);
    line-height: 1.6;
}

/* ==========================================================================
   MOBILE APP MOCKUP SECTION
   ========================================================================== */
.app-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: var(--text-white);
    overflow: hidden;
}
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.app-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}
.app-content p {
    color: var(--text-silver);
    margin-bottom: 35px;
}
.app-badges {
    display: flex;
    gap: 16px;
}
.app-badge-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111622;
    border: 1px solid var(--border-dark);
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.app-badge-btn:hover {
    background: #192133;
    border-color: rgba(255,255,255,0.2);
}
.app-badge-btn i {
    font-size: 24px;
}
.app-badge-text {
    text-align: left;
}
.app-badge-text span {
    display: block;
    font-size: 10px;
    color: var(--text-silver);
    text-transform: uppercase;
}
.app-badge-text strong {
    font-size: 14px;
}

/* Premium Smartphone Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}
.phone-frame {
    width: 280px;
    height: 570px;
    border: 10px solid #000;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 2px rgba(255,255,255,0.1);
    overflow: hidden;
    background: #000;
    position: relative;
}
.phone-camera {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 25;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0b1020 0%, #02040a 100%);
    padding: 30px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}
.phone-widget {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

/* ==========================================================================
   SELL YOUR NUMBER & FORMS
   ========================================================================== */
.form-section {
    background: var(--bg-white);
}
.split-form-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.visual-sim-panel {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    min-height: 480px;
}
.form-console {
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    padding: 48px;
}
.form-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    font-size: 14.5px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    background: var(--bg-light);
}
.form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 32, 84, 0.05);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ==========================================================================
   BLOG / MAGAZINE LAYOUT
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}
.blog-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}
.blog-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.blog-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
}
.blog-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.blog-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-link:hover {
    gap: 12px;
}


/* ==========================================================================
   DETAIL PAGE (Asset details panel, Customize Card)
   ========================================================================== */
.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
}
.detail-visual-panel {
    position: sticky;
    top: 120px;
    z-index: 10;
}
.plate-customizer {
    margin-top: 40px;
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: var(--radius-md);
}
.customizer-title {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.customizer-options {
    display: flex;
    gap: 16px;
}
.customizer-opt {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    background: var(--bg-light);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
}
.customizer-opt.active {
    border-color: var(--primary);
    background: rgba(0, 32, 84, 0.05);
    color: var(--primary);
}

.details-content-panel h1 {
    font-size: 48px;
    margin-bottom: 16px;
}
.asset-scores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0;
}
.score-badge {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.score-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}
.score-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ==========================================================================
   DASHBOARDS (Analytics, Listings, Saved Bids)
   ========================================================================== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 80px;
}
.dash-sidebar {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    height: fit-content;
}
.dash-user-card {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}
.dash-user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.dash-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dash-menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 14.5px;
}
.dash-menu-item.active a,
.dash-menu-item a:hover {
    background: rgba(0, 32, 84, 0.05);
    color: var(--primary);
}

.dash-main-content {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
}
.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.dash-stat-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

/* Simulated mini earnings graph in CSS */
.earnings-chart-sim {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}
.chart-bar {
    flex: 1;
    background: rgba(0, 32, 84, 0.1);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}
.chart-bar::after {
    content: attr(data-val);
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transition: 0.3s;
}
.chart-bar:hover {
    background: var(--primary);
}
.chart-bar:hover::after {
    opacity: 1;
}

/* ==========================================================================
   FOOTER (Dark architecture)
   ========================================================================== */
.footer-wrap {
    background: var(--bg-darker);
    color: var(--text-white);
    padding-top: 100px;
    padding-bottom: 40px;
    border-top: 1px solid var(--border-dark);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
}
.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    color: var(--text-silver);
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links ul a {
    color: var(--text-silver);
    font-size: 14px;
}
.footer-links ul a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-size: 16px;
    margin-bottom: 24px;
}
.footer-newsletter p {
    color: var(--text-silver);
    font-size: 13.5px;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    border: 1.5px solid var(--border-dark);
    background: rgba(255,255,255,0.02);
    border-radius: 50px;
    padding: 6px;
    align-items: center;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0 16px;
    font-size: 13.5px;
}
.newsletter-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-silver);
}
.footer-legal-links {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   MOBILE & COLLAPSIBILITY DRAWER
   ========================================================================== */
.mobile-toggle {
    display: none;
    color: var(--text-dark);
}
.header-nav.dark-nav .mobile-toggle {
    color: var(--text-white);
}

.drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(7, 10, 20, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1990;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: rgba(7, 10, 20, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2000;
    padding: 30px 24px;
    box-shadow: -15px 0 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: #ffffff;
}
.mobile-nav-drawer.active {
    right: 0;
}
.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: rotate(90deg);
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}
.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    border: 1px solid transparent;
}
.drawer-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.drawer-link i {
    transition: var(--transition);
}
.drawer-link:hover i {
    transform: scale(1.15);
    color: var(--secondary) !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1150px) {
    .nav-menu {
        display: none !important;
    }
    .mobile-toggle {
        display: block !important;
    }
}

@media (max-width: 1024px) {
    .hero .container, .vault-container, .split-form-grid, .detail-grid, .app-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .vault-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    .vault-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .numbers-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categories-grid, .stats-grid, .dash-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 44px;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .numbers-grid, .blog-grid, .categories-grid, .stats-grid, .dash-stats-row, .footer-grid {
        grid-template-columns: 1fr;
    }

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

/* Redesigned card sub-elements */
.lux-number-banner {
    background: var(--primary); /* Theme Navy Blue */
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 32, 84, 0.15);
    z-index: 2;
    transition: var(--transition);
    white-space: nowrap;
}
.lux-number-banner:hover {
    box-shadow: 0 4px 20px rgba(0, 32, 84, 0.3);
}

.lux-card-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.lux-badge-phone {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
}
.lux-badge-pattern {
    border: 1px solid rgba(0, 32, 84, 0.15);
    color: var(--primary);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lux-badge-verified {
    color: var(--secondary); /* Green checkmark */
    font-size: 16px;
    display: flex;
    align-items: center;
}

.lux-card-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.lux-metric-pill {
    background: rgba(0, 32, 84, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
}
.lux-metric-pill strong {
    color: var(--primary);
    font-weight: 700;
}
.lux-timer-pill {
    background: rgba(225, 43, 43, 0.08);
    border: 1px solid rgba(225, 43, 43, 0.15);
    color: #e12b2b;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lux-card-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 2;
    margin: 4px 0;
}
.lux-price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}
.lux-price-discounted {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary); /* Brand green */
}
.lux-price-save {
    background: #0288d1; /* Cyan blue for discount tag */
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.lux-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    z-index: 2;
    margin-top: 4px;
}
.lux-card-actions .plate-btn-wish {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(0, 32, 84, 0.15);
    background: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}
.lux-card-actions .plate-btn-wish:hover,
.lux-card-actions .plate-btn-wish.wished {
    background: #ff3b30;
    border-color: #ff3b30;
    color: #ffffff;
}

.lux-btn-buy {
    flex-grow: 1;
    height: 44px;
    border-radius: 50px;
    border: 1.5px solid var(--secondary); /* Green outline */
    background: none;
    color: var(--secondary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lux-btn-buy:hover {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 157, 76, 0.25);
}

/* ==========================================================================
   MOCKUP REDESIGN (NUMBERWALE STYLE CATALOG AND SIDEBAR FILTERS)
   ========================================================================== */
.filter-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}
.filter-main-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.btn-filter-reset {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: #ff3b30;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.btn-filter-reset:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Tab Segment */
.filter-tab-segment {
    display: flex;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 20px;
}
.filter-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.filter-tab-btn.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Tab Content toggles */
.filter-tab-content {
    display: none;
}
.filter-tab-content.active {
    display: block;
}

/* Categories List */
.filter-categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}
.filter-categories-list::-webkit-scrollbar {
    width: 5px;
}
.filter-categories-list::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}
.filter-categories-list::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 10px;
}
.cat-list-item, .pat-list-item {
    background: none;
    border: none;
    text-align: left;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.cat-list-item:hover, .pat-list-item:hover {
    background: var(--bg-light);
    border-left-color: var(--border-light);
}
.cat-list-item.active, .pat-list-item.active {
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    border-left-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 32, 84, 0.15);
}

/* Price Brackets */
.price-bracket-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.price-bracket-btn {
    background: none;
    border: 1px solid var(--border-light);
    text-align: left;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.price-bracket-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}
.price-bracket-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
    font-weight: 600;
}

/* Typographic Title Header */
.catalog-main-header {
    text-align: center;
    margin-bottom: 35px;
}
.catalog-sub-badge {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    position: relative;
    margin-bottom: 12px;
}
.catalog-sub-badge::before,
.catalog-sub-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 1px;
    background: var(--gold);
}
.catalog-sub-badge::before {
    right: 100%;
    margin-right: 12px;
}
.catalog-sub-badge::after {
    left: 100%;
    margin-left: 12px;
}
.catalog-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.catalog-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Console Search Tabs */
.console-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.console-tabs {
    display: flex;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.console-tab-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.console-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
}
.console-tab-btn.active i {
    color: var(--gold);
}

/* Console Input Row */
.console-search-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 12px auto;
}
.console-sort-select-wrap {
    position: relative;
}
.console-sort-select {
    width: 100%;
    height: 52px;
    border-radius: 50px;
    border: 1.5px solid var(--border-light);
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0 20px;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23002054' class='bi bi-chevron-down' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}
.console-sort-select:focus {
    border-color: var(--primary);
}

.console-search-bar {
    position: relative;
    display: flex;
    align-items: center;
}
.console-search-bar .search-icon {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
}
.console-search-bar input {
    width: 100%;
    height: 52px;
    border-radius: 50px;
    border: 1.5px solid var(--border-light);
    padding: 0 24px 0 50px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    background: #ffffff;
}
.console-search-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 32, 84, 0.05);
}

/* Metadata Row */
.console-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 10px;
}
.reset-filters-link-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.reset-filters-link-btn:hover {
    color: #ff3b30;
}
.catalog-count-display {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .console-search-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .console-tabs {
        flex-wrap: wrap;
        border-radius: 12px;
    }
    .console-tab-btn {
        flex: 1 1 40%;
        padding: 8px 16px;
        justify-content: center;
    }
}

/* Advanced Search Dashboard & Global Search Dropdown */
.advanced-search-console {
    max-width: 800px;
    margin: 0 auto 40px auto;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.global-search-type-wrap {
    display: flex;
    align-items: center;
    border-right: 1.5px solid var(--border-light);
    padding: 0 12px 0 20px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 15;
}
.global-search-type-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    user-select: none;
    transition: var(--transition);
}
.global-search-type-trigger:hover {
    color: var(--secondary);
}
.global-search-type-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 15px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 32, 84, 0.12);
    width: 140px;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 6px;
    z-index: 100;
}
.global-search-type-dropdown.open {
    display: flex;
}
.global-search-type-option {
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.global-search-type-option:hover {
    background: var(--bg-light);
    color: var(--primary);
}
.global-search-type-option.active {
    background: #fff3e0;
    color: #ff5500;
    font-weight: 700;
}
/* Dynamic padding adjustment when Global Search is active */
.console-search-bar.global-active input {
    padding-left: 140px !important;
}
.console-search-bar.global-active .search-icon {
    display: none !important;
}

/* AI Search Dynamic Chips */
.ai-search-chips-wrap {
    display: flex;
    align-items: center;
    padding-left: 15px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 12;
    pointer-events: none;
}
.ai-search-chip {
    background: #e3f2fd;
    border: 1.5px solid #bbdefb;
    color: #0d47a1;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(13, 71, 161, 0.05);
    transition: var(--transition);
    pointer-events: auto;
    max-width: 580px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ai-search-chip:hover {
    background: #bbdefb;
}
.ai-search-chip-close {
    font-size: 11px;
    color: #0d47a1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: var(--transition);
}
.ai-search-chip-close:hover {
    background: rgba(13, 71, 161, 0.15);
}
/* When AI chip is active, hide search icon and shift input padding */
.console-search-bar.ai-active input {
    padding-left: var(--ai-chip-width, 100px) !important;
}
.console-search-bar.ai-active .search-icon {
    display: none !important;
}

/* ==========================================================================
   HOMEPAGE NEW SECTIONS: NETWORKS, JOURNEY TIMELINE, AND FAQS SUMMARY
   ========================================================================== */

/* Networks Section */
.networks-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}
.networks-section h2 {
    font-size: 38px;
    margin-bottom: 12px;
}
.networks-section p {
    font-size: 15.5px;
    color: var(--text-muted);
}
.networks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.network-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100px;
}
.network-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 32, 84, 0.08);
    border-color: var(--gold);
}
.network-card img,
.network-card svg {
    max-height: 44px;
    max-width: 85%;
    object-fit: contain;
}
@media (max-width: 768px) {
    .networks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .networks-grid {
        grid-template-columns: 1fr;
    }
}

/* Journey Section */
.journey-section {
    padding: 90px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.journey-section h2 {
    font-size: 38px;
    margin-bottom: 12px;
}
.journey-pill {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
.journey-timeline-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1180px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
}
.journey-timeline-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--secondary) 100%);
    z-index: 1;
}
.journey-step-node {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding: 0 10px;
}
.journey-icon-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
}
.journey-step-node:hover .journey-icon-circle {
    transform: scale(1.1);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    color: var(--secondary);
}
.journey-step-num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.journey-step-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.journey-step-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.journey-step-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 200px;
}
.journey-badge-bottom {
    background: rgba(0, 157, 76, 0.08);
    border: 1px solid rgba(0, 157, 76, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    margin-top: 20px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 0 rgba(0, 157, 76, 0.4);
    animation: dotPulse 1.6s infinite;
}
@keyframes dotPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 157, 76, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 157, 76, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 157, 76, 0);
    }
}
@media (max-width: 992px) {
    .journey-timeline-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin: 40px auto 20px auto;
    }
    .journey-timeline-row::before {
        display: none;
    }
    .journey-step-node {
        width: 100%;
        max-width: 400px;
    }
    .journey-icon-circle {
        margin-bottom: 12px;
    }
    .journey-step-desc {
        max-width: 100%;
    }
}

/* Home FAQs Summary Section */
.home-faq-section {
    padding: 90px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}
.home-faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 12px;
}
.home-faq-section p {
    font-size: 15.5px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}
.home-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.home-faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.home-faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    color: var(--primary);
}
.home-faq-content {
    padding: 0 24px;
    height: 0;
    overflow: hidden;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.home-faq-item.active .home-faq-content {
    padding-bottom: 20px;
    height: auto;
}
.home-faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-premium);
}


/* Custom Select Dropdowns */
.custom-select-container {
    position: relative;
    user-select: none;
    width: 100%;
}
.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    height: 52px;
    box-sizing: border-box;
}
.custom-select-trigger:hover {
    border-color: var(--secondary);
    box-shadow: 0 6px 15px rgba(0, 157, 76, 0.05);
}
.custom-select-container.active .custom-select-trigger {
    border-color: var(--secondary);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.custom-select-trigger i {
    font-size: 12px;
    transition: transform var(--transition-speed) ease;
    color: var(--primary);
}
.custom-select-container.active .custom-select-trigger i {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    z-index: 150;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    box-sizing: border-box;
}
.custom-select-container.active .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-select-option {
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}
.custom-select-option:hover {
    background: #fff3e0;
    color: #ff5500;
    padding-left: 24px;
}
.custom-select-option.selected {
    background: rgba(0, 157, 76, 0.08);
    color: var(--secondary);
    font-weight: 600;
}

/* For square border-radius dropdowns (e.g. inside Advanced Panel) */
.custom-select-container.square .custom-select-trigger {
    border-radius: 6px;
    height: 40px;
    padding: 8px 12px;
    font-size: 13px;
    border: 1px solid var(--border-light);
}
.custom-select-container.square.active .custom-select-trigger {
    border-radius: 6px 6px 0 0;
    border-color: var(--secondary);
}
.custom-select-container.square .custom-select-options {
    border-radius: 0 0 6px 6px;
    border: 1px solid var(--border-light);
    border-top: none;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (IntersectionObserver-driven)
   ========================================================================== */

/* Base hidden state */
.scroll-reveal {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Animations configurations */
.reveal-fade-up {
    transform: translateY(40px);
}

.reveal-fade-down {
    transform: translateY(-40px);
}

.reveal-zoom-in {
    transform: scale(0.93);
}

.reveal-slide-left {
    transform: translateX(-40px);
}

.reveal-slide-right {
    transform: translateX(40px);
}

/* Revealed/Active state */
.scroll-reveal.reveal-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* For staggered lists - children animated individually in sequence */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-stagger > *.reveal-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==========================================================================
   RESPONSIVE ADVANCED SEARCH CONSOLE REFINEMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .advanced-search-console {
        padding: 20px 16px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }
    .advanced-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .advanced-section-card {
        padding: 16px !important;
    }
    .templates-grid {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    .tpl-btn {
        flex-grow: 0 !important;
    }
    .tpl-badge {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }
}

@media (max-width: 580px) {
    .adv-input-split {
        grid-template-columns: 1fr !important;
    }
    .adv-price-split {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .placement-slots {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 12px 6px !important;
    }
    .slot-box {
        gap: 4px !important;
    }
    .slot-box span {
        font-size: 9px !important;
    }
    .slot-box input {
        height: 28px !important;
        font-size: 11px !important;
    }
    .console-tab-btn {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }
}

/* ==========================================================================
   CUSTOM LUXURY CALENDAR PICKER STYLES
   ========================================================================== */
.custom-calendar-popover {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1000;
    width: 100%;
    max-width: 320px;
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: none;
    flex-direction: column;
    animation: calendarFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #ffffff;
}

@keyframes calendarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-calendar-popover.active {
    display: flex;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.calendar-selectors {
    display: flex;
    gap: 6px;
}

.calendar-select {
    background: rgba(7, 10, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-select:focus {
    border-color: var(--gold);
}

.calendar-select option {
    background: #0B1020;
    color: #ffffff;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.9);
}

.calendar-day-cell:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.calendar-day-cell.other-month {
    color: rgba(255, 255, 255, 0.25);
}

.calendar-day-cell.today {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-weight: 700;
}

.calendar-day-cell.selected {
    background: var(--gold) !important;
    color: #070A14 !important;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.calendar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-footer-link {
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

#calendar-clear-btn {
    color: rgba(255, 255, 255, 0.5);
}

#calendar-clear-btn:hover {
    color: #ff4d4d;
}

#calendar-today-btn {
    color: var(--gold);
}

#calendar-today-btn:hover {
    color: #ffffff;
}

/* ==========================================================================
   NUMEROLOGY CALCULATOR RESPONSIVE ALIGNMENT
   ========================================================================== */
@media (max-width: 991px) {
    .numerology-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
@media (max-width: 768px) {
    .numerology-section {
        padding: 50px 0 !important;
    }
    .numerology-grid {
        gap: 20px !important;
    }
}

/* ==========================================================================
   GLOBAL WHATSAPP FLOATING WIDGET
   ========================================================================== */
.whatsapp-float-widget-global {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    background: #25D366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.whatsapp-float-widget-global:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5), 0 0 15px rgba(37, 211, 102, 0.2);
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-float-widget-global {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

/* ==========================================================================
   MICRO-RESPONSIVE CALENDAR OVERRIDES
   ========================================================================== */
@media (max-width: 400px) {
    .glass-card {
        padding: 16px !important;
    }
}
@media (max-width: 360px) {
    .custom-calendar-popover {
        padding: 12px !important;
    }
    .calendar-day-cell {
        font-size: 11px !important;
    }
    .calendar-nav-btn {
        width: 28px !important;
        height: 28px !important;
    }
    .calendar-select {
        font-size: 12px !important;
        padding: 2px 4px !important;
    }
}

/* ==========================================================================
   MINI MATCH ROW STYLING & RESPONSIVENESS
   ========================================================================== */
.mini-match-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: rgba(11, 16, 32, 0.03);
    border: 1px solid rgba(11, 16, 32, 0.06);
    border-radius: 12px;
    transition: var(--transition);
}

.mini-match-num {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.mini-match-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.mini-match-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

@media (max-width: 580px) {
    .mini-match-row {
        padding: 10px 12px;
        gap: 8px;
    }
    .mini-match-num {
        font-size: 13.5px;
    }
    .mini-match-price {
        font-size: 12.5px;
    }
    .mini-match-meta {
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .mini-match-row {
        padding: 8px 10px;
    }
    .mini-match-num {
        font-size: 12px;
    }
    .mini-match-price {
    }
}

/* Live Search Autocomplete Previews */
.search-autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-height: 350px;
    overflow-y: auto;
    display: none;
    padding: 8px 0;
}

.autocomplete-row {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.autocomplete-row:last-child {
    border-bottom: none;
}

.autocomplete-row:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 24px;
}

.autocomplete-number {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.gold-highlight {
    color: var(--gold) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.autocomplete-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.autocomplete-badge.vip {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.autocomplete-badge.corporate {
    background: rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.autocomplete-badge.premium,
.autocomplete-badge.fancy,
.autocomplete-badge.repeating,
.autocomplete-badge.symmetric {
    background: rgba(0, 32, 84, 0.5);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.autocomplete-price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

/* Fade In Animation Helper */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-element {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Interactive 3D Customizer Plate Card */
#main-detail-plate {
    transition: transform 0.1s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* 1. Classic Glass - details page specific */
#main-detail-plate.plate-classic {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 32, 84, 0.15);
    box-shadow: 0 15px 35px rgba(0, 32, 84, 0.08);
}
#main-detail-plate.plate-classic .plate-number {
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0, 32, 84, 0.1);
}
#main-detail-plate.plate-classic .plate-price {
    color: var(--primary);
}
#main-detail-plate.plate-classic .plate-chip {
    background: linear-gradient(135deg, #FFE066 0%, #F5B041 50%, #C0392B 100%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.6), 0 2px 8px rgba(0,0,0,0.1);
}

/* 2. Carbon Fiber - details page specific */
#main-detail-plate.plate-carbon {
    background: 
        linear-gradient(45deg, #151515 25%, transparent 25%), 
        linear-gradient(-45deg, #151515 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #151515 75%), 
        linear-gradient(-45deg, transparent 75%, #151515 75%),
        #222222;
    background-size: 4px 4px;
    border: 2px solid #009D4C; /* Emerald green border */
    box-shadow: 0 15px 35px rgba(0, 157, 76, 0.25), 0 0 20px rgba(0, 157, 76, 0.15);
}
#main-detail-plate.plate-carbon .plate-number {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 157, 76, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}
#main-detail-plate.plate-carbon .plate-price {
    color: #009D4C;
}
#main-detail-plate.plate-carbon .plate-badge {
    background: rgba(0, 157, 76, 0.2);
    color: #009D4C;
    border-color: #009D4C;
}
#main-detail-plate.plate-carbon .plate-chip {
    background: linear-gradient(135deg, #a6a6a6 0%, #3a3a3a 100%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.4), 0 2px 8px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
}

/* 3. Gold Edition - details page specific */
#main-detail-plate.plate-gold {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%); /* Premium dark slate/black card */
    border: 2.5px solid var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3), 0 0 25px rgba(212, 175, 55, 0.15);
}
#main-detail-plate.plate-gold .plate-number {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 0 5px rgba(212, 175, 55, 0.3);
}
#main-detail-plate.plate-gold .plate-price {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}
#main-detail-plate.plate-gold .plate-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border-color: var(--gold);
}
#main-detail-plate.plate-gold .plate-chip {
    background: linear-gradient(135deg, #ffe57f 0%, #ffc107 50%, #ff8f00 100%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 4px 15px rgba(212,175,55,0.4);
    border-color: rgba(212,175,55,0.6);
}

/* ==========================================================================
   GOLD METALLIC SWEEP & MNP INTERACTIVE STYLES
   ========================================================================== */

/* Gold Metallic Shimmer / Sweep Effect */
.lux-number-banner > span {
    display: inline-block;
    transition: var(--transition);
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    background-clip: text;
}

.lux-number-banner:hover > span {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 25%, #D4AF37 40%, #FFF9E6 50%, #D4AF37 60%, #ffffff 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldSweep 1.5s infinite linear;
}

@keyframes goldSweep {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Operator Select Grid & Buttons */
.operator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.operator-btn {
    background: #ffffff;
    border: 1.5px solid rgba(11, 16, 32, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.operator-btn img {
    height: 28px;
    object-fit: contain;
    transition: var(--transition);
}

.operator-btn:hover {
    border-color: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.operator-btn.active {
    border-color: var(--secondary);
    background: rgba(0, 157, 76, 0.03);
    box-shadow: 0 8px 24px rgba(0, 157, 76, 0.08);
}

.operator-btn.active img {
    filter: none !important;
}

/* Steps list */
.mnp-steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mnp-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mnp-step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 32, 84, 0.15);
}

.mnp-step-content {
    flex-grow: 1;
}

.mnp-step-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.mnp-step-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.mnp-step-code-box {
    background: #070a14;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 14px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.mnp-step-code-copy {
    color: var(--gold);
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
}

.mnp-step-code-copy:hover {
    color: #ffffff;
}

/* Custom Dropdown styling for the MNP Circle Select */
.mnp-custom-select-container {
    position: relative;
    user-select: none;
    width: 100%;
}

.mnp-custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 32, 84, 0.15);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    padding: 14px 20px;
    cursor: pointer;
    transition: var(--transition);
    height: 52px;
    box-sizing: border-box;
}

.mnp-custom-select-trigger:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.mnp-custom-select-container.active .mnp-custom-select-trigger {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.mnp-custom-select-trigger i {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--primary);
}

.mnp-custom-select-container.active .mnp-custom-select-trigger i {
    transform: rotate(180deg);
}

.mnp-custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid var(--gold);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 150;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    box-sizing: border-box;
    padding: 8px 0;
}

/* Custom Scrollbar for Options Dropdown */
.mnp-custom-select-options::-webkit-scrollbar {
    width: 6px;
}
.mnp-custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}
.mnp-custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}
.mnp-custom-select-options::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.mnp-custom-select-container.active .mnp-custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mnp-custom-select-option {
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mnp-custom-select-option:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding-left: 25px;
}

.mnp-custom-select-option.selected {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-weight: 600;
}

.mnp-custom-select-option.selected::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
}

/* Hide header wishlist indicator and audio toggle visually */
.wishlist-indicator, #header-audio-toggle {
    display: none !important;
}

/* Hardware-acceleration optimization for the testimonials marquee */
.testimonials-track {
    will-change: transform;
}

/* Vanity Keypad styling */
.vanity-keypad-grid .keypad-btn {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.vanity-keypad-grid .keypad-btn span {
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.vanity-keypad-grid .keypad-btn:hover:not(:disabled) {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

.vanity-keypad-grid .keypad-btn:active:not(:disabled) {
    transform: translateY(0);
}

.vanity-keypad-grid .keypad-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    background: var(--bg-light);
}

/* ==========================================================================
   PERFORMANCE & SMOOTH SCROLLING OPTIMIZATIONS
   ========================================================================== */

/* GPU promotion for sliding drawers */
.mobile-nav-drawer {
    will-change: right;
}

/* Off-screen rendering optimization via content-visibility */
.footer-section,
.faq-section,
.stats-section,
.testimonial-marquee-container,
.about-section,
.contact-section,
.blogs-section,
.blog-layout {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

/* ==========================================================================
   MOBILE RESPONSIVE & LAYOUT ALIGNMENT FIXES
   ========================================================================== */

/* 1. Hide Header "Chat Now" CTA Button on Mobile */
@media (max-width: 768px) {
    .header-cta {
        display: none !important;
    }
}

/* 2. Responsive Large Detail Plate on Mobile (Preventing Number Wrapping) */
@media (max-width: 768px) {
    #main-detail-plate {
        padding: 35px 25px !important;
    }
    #main-detail-plate .plate-number,
    #plate-number-el {
        font-size: 30px !important;
        margin: 15px 0 !important;
        white-space: nowrap !important;
    }
    #main-detail-plate .plate-price,
    #plate-price-el {
        font-size: 20px !important;
    }
    #main-detail-plate .plate-chip {
        width: 46px !important;
        height: 36px !important;
    }
}

@media (max-width: 480px) {
    #main-detail-plate {
        padding: 24px 15px !important;
    }
    #main-detail-plate .plate-number,
    #plate-number-el {
        font-size: 23px !important;
        margin: 12px 0 !important;
        letter-spacing: 0.01em !important;
    }
    #main-detail-plate .plate-price,
    #plate-price-el {
        font-size: 18px !important;
    }
    #main-detail-plate .plate-chip {
        width: 38px !important;
        height: 28px !important;
    }
    .plate-badge {
        font-size: 10px !important;
        padding: 4px 10px !important;
    }
}

/* 3. Stack MNP (Mobile Number Portability) Grid to Single Column on Mobile */
@media (max-width: 991px) {
    .mnp-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* 4. Calendar Picker Clipping Prevention Overrides */
.glass-card,
.numerology-calc-widget,
#calendar-wrapper,
.custom-calendar-popover {
    overflow: visible !important;
}
.numerology-section {
    position: relative;
    z-index: 25;
}

/* Homepage Trending Filters styling */
.trending-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.trending-filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 32, 84, 0.12);
    background: #ffffff;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}
.trending-filter-btn:hover {
    border-color: var(--primary);
    background: rgba(0, 32, 84, 0.02);
}
.trending-filter-btn.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 32, 84, 0.15);
}

/* VIP Number Pattern Highlighting Styles */
.highlight-pattern {
    color: #ffd700 !important; /* Luxury Gold color for all highlights */
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    -webkit-text-fill-color: currentColor !important; /* Prevent text gradient from overriding highlight colors */
}

/* Speciality-wise Highlights - Commented out to unify all highlights in golden color */
/*
.highlight-pattern.highlight-786 {
    color: #00e676 !important; 
    text-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

.highlight-pattern.highlight-zero {
    color: #00e5ff !important; 
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.highlight-pattern.highlight-mirror {
    color: #ff3366 !important; 
    text-shadow: 0 0 8px rgba(255, 51, 102, 0.4);
}

.highlight-pattern.highlight-repeating {
    color: #ffd700 !important; 
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.highlight-pattern.highlight-fancy {
    color: #ff9100 !important; 
    text-shadow: 0 0 8px rgba(255, 145, 0, 0.4);
}
*/


/* Adjust highlight styling based on card themes - Commented out to allow specialty colors to show through */
/*
.plate-gold .highlight-pattern,
#main-detail-plate.plate-gold .highlight-pattern {
    color: #ffd700 !important; 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.plate-carbon .highlight-pattern,
#main-detail-plate.plate-carbon .highlight-pattern {
    color: #00ff66 !important; 
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}
*/

/* Mobile Responsive Adjustments & Layout Fixes */
.vanity-search-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.numbers-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.related-blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 1024px) {
    .numbers-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-visual-panel {
        position: relative !important; /* Stop panel from sticking on mobile/tablets where grid is stacked */
        top: 0 !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px !important; /* Only reduce horizontal padding on mobile to preserve vertical layout offsets */
        padding-right: 16px !important;
    }
    .vanity-search-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .numbers-grid-5 {
        grid-template-columns: 1fr;
    }
    .related-blogs-grid {
        grid-template-columns: 1fr;
    }
}
