:root {
    /* Colors */
    --color-bg: #030304;
    --color-bg-alt: #0a0a0c;
    --color-text: #e8e8e8;
    --color-text-muted: #888888;
    
    /* Metallic Accents */
    --color-gold: #d4af37;
    --color-gold-light: #f9e596;
    --color-gold-dark: #aa8529;
    --color-silver: #c0c0c0;
    
    /* UI Elements */
    --glass-bg: rgba(15, 15, 18, 0.4);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Hide default cursor to use custom magnetic cursor */
    cursor: none !important;
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--color-bg);
}

body {
    background-color: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Background Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
    opacity: 0.6;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold-light);
    box-shadow: 0 0 10px var(--color-gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out;
}
.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    letter-spacing: 8px;
    margin-bottom: 30px;
    animation: pulseGlow 2s infinite alternate;
}
.loader-line {
    width: 0;
    height: 1px;
    background: var(--color-gold-light);
    box-shadow: 0 0 10px var(--color-gold);
    animation: loadLine 1.5s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

@keyframes pulseGlow {
    0% { opacity: 0.6; text-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
    100% { opacity: 1; text-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }
}
@keyframes loadLine {
    0% { width: 0; }
    100% { width: 300px; }
}

/* Typography & Glows */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.glow-text {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gold-gradient {
    background: linear-gradient(to right, var(--color-gold-light), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.kicker {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.glass-card {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    position: relative;
}

.highlight {
    color: var(--color-gold-light);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: none;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #000;
    font-weight: 600;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}

/* Live Crypto Ticker */
.crypto-ticker {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.75rem;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
    font-family: var(--font-body);
}

.ticker-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

#ethPriceDisplay {
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.ticker-separator {
    color: rgba(212, 175, 55, 0.3);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(3, 3, 4, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px var(--spacing-md);
    transition: padding 0.4s ease;
}

.navbar.scrolled .nav-container {
    padding: 10px var(--spacing-md);
}

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.brand-subtext {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold-light);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover {
    color: var(--color-gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.8rem;
}

/* Hero Section */
  .hero {
      position: relative;
      min-height: calc(100vh - 35px);
      padding: 60px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }

.parallax-section {
    perspective: 1px;
    transform-style: preserve-3d;
}

.hero-video-wrapper {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1614164185128-e4ec99c436d7?q=80&w=2574&auto=format&fit=crop') center/cover no-repeat;
    z-index: -2;
    animation: slowPan 40s linear infinite alternate;
}

@keyframes slowPan {
    0% { transform: scale(1.1) translateX(0); }
    100% { transform: scale(1.1) translateX(-3%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker, richer gradient to ensure text readability */
    background: radial-gradient(circle at center, rgba(3,3,4,0.7) 0%, rgba(3,3,4,0.95) 80%, rgba(3,3,4,1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero .subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.hero .title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 40px;
    line-height: 1.1;
}

.title-line {
      display: block;
      text-align: center;
      width: 100%;
  }

.hero .description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 700px;
    margin-inline: auto;
}

  .hero-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
      width: 100%;
      max-width: 500px;
  }
  
  .hero-cta .btn {
      flex: 1;
  }

/* Company Section */
.company-section {
    position: relative;
    /* Create a glowing orb in the background */
}

.company-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.company-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #fff;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--color-gold-light);
    margin-bottom: 50px;
    line-height: 1.8;
    font-family: var(--font-heading);
}

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

.trust-block {
    transition: var(--transition-smooth);
    padding-left: 20px;
    border-left: 1px solid rgba(212,175,55,0.2);
}

.trust-block:hover {
    border-left-color: var(--color-gold);
    transform: translateX(10px);
}

.trust-block h4 {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-block h4 i {
    font-size: 1.6rem;
}

.trust-block p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.image-glass-container {
    position: relative;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transition: var(--transition-smooth);
}

.image-glass-container:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 80px rgba(212,175,55,0.1);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background: var(--color-gold);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.5s;
}

.image-glass-container:hover .image-glow {
    opacity: 0.2;
}

.image-glass-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(120%) brightness(0.8);
    transition: filter 1s ease;
}

.image-glass-container:hover img {
    filter: grayscale(10%) contrast(110%) brightness(1);
}

.image-caption {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--color-bg);
    color: var(--color-gold);
    padding: 10px 20px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    border: 1px solid var(--color-gold-dark);
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Protocol Section */
.protocol-section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-gold-light);
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 450px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.2;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212,175,55,0.3);
}

.feature-card:hover::before {
    opacity: 1;
    height: 2px;
}

.feature-card i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Catalog Section */
.catalog-section {
    position: relative;
}

.filters-container {
    padding: 25px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 25px;
    border-radius: 4px;
    flex: 1;
    min-width: 300px;
    transition: border-color 0.3s;
}

.search-box:focus-within {
    border-color: var(--color-gold);
}

.search-box i {
    color: var(--color-gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--color-text);
    width: 100%;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-select {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text);
    padding: 12px 25px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 45px;
    transition: border-color 0.3s;
}

.custom-select:hover, .custom-select:focus {
    border-color: var(--color-gold);
}

.custom-select option {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

/* 3D Tilt Wrapper */
.product-card {
    background: rgba(10,10,12,0.8);
    border: 1px solid rgba(212,175,55,0.1);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 40px rgba(212,175,55,0.1);
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: transparent;
    transform: translateZ(30px);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
    opacity: 1;
}

/* Inner shadow / vignette for images */
.product-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inset 0 0 15px rgba(0,0,0,0.3);
    pointer-events: none;
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    z-index: 2;
    transform: translateZ(40px);
}

.badge {
    background: rgba(0,0,0,0.9);
    color: var(--color-gold);
    padding: 6px 15px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.badge-available {
    color: #4CAF50;
    border-color: rgba(76, 175, 80, 0.4);
}

.badge-reserved {
    color: #F44336;
    border-color: rgba(244, 67, 54, 0.4);
}

.product-info {
    padding: 30px;
    transform: translateZ(40px);
    background: linear-gradient(0deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.5) 100%);
}

.product-brand {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-model {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fiat-price-main {
    font-size: 1.5rem;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.eth-price-sub {
    font-size: 0.9rem;
    color: var(--color-gold-light);
    font-family: var(--font-body);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eth-price-sub i {
    color: #627eea;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: #020202;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .brand-text {
    font-size: 2rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin: 20px 0 30px;
    font-size: 0.95rem;
    max-width: 400px;
}

.crypto-badges {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    padding: 12px 25px;
    border: 1px solid rgba(212,175,55,0.2);
}

.crypto-badges i {
    color: #627eea;
    font-size: 1.4rem;
}

.crypto-badges span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a, .footer-contact p {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    text-decoration: none;
    margin-top: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* FAQ Section */
.faq-section {
    position: relative;
}

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

.accordion-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.1);
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background: rgba(212,175,55,0.05);
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.accordion-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    padding: 20px 0;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Privacy Section */
.privacy-section {
    position: relative;
}

.privacy-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    text-align: left;
}

  .hero-content h1 {
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      color: var(--color-gold);
      margin: 0 auto 20px auto;
      letter-spacing: 4px;
      text-align: center;
      text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.8), 0 0 10px rgba(255,255,255,0.2);
  }

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.lock-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: inline-block;
}

.privacy-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.privacy-card p {
    color: var(--color-gold-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.privacy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.privacy-list i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.privacy-list strong {
    color: #fff;
}

/* Index / Directorio Section */
.index-section {
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.index-col h3 {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.index-col a {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition-smooth);
}

.index-col a:hover {
    color: #fff;
    padding-left: 10px;
    border-bottom-color: rgba(212,175,55,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .company-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Disable custom cursor on mobile */
    * { cursor: auto !important; }
    .cursor-dot, .cursor-outline { display: none; }

    .crypto-ticker { display: none; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3,3,4,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn { display: block; }
    
    .hero .title { font-size: 2.8rem; }
    
    .hero-cta { 
        flex-direction: column; 
        width: 100%;
        max-width: 100%;
        gap: 15px;
    }
    .hero-cta .btn {
        width: 100%;
        padding: 15px 20px;
    }
    
    .filters-container { flex-direction: column; align-items: stretch; }
    .filter-group { flex-direction: column; }
}

/* ==========================================================================
   MODAL SYSTEM
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -45%);
    background: linear-gradient(145deg, #111113, #08080a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(212, 175, 55, 0.1);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    width: 90%;
    max-width: 500px;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.modal#product-modal {
    max-width: 900px;
}

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    font-size: 1.5rem;
    color: var(--color-gray);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.modal-close:hover {
    color: var(--color-white);
}

.modal-content-split {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-content-split {
        flex-direction: row;
    }
}

.modal-image-col {
    flex: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.modal-image-col img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.modal-info-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pm-brand {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.pm-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pm-price {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pm-desc {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pm-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #ccc;
}

.spec-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

/* Forms */
.modal-content-center {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 15px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* ==========================================================================
   PREMIUM RESERVE BUTTON
   ========================================================================== */
.btn-premium-reserve {
    position: relative;
    width: 100%;
    padding: 20px 30px;
    margin-top: 25px;
    background: linear-gradient(135deg, #d4af37 0%, #aa842b 50%, #f3e5ab 100%);
    background-size: 200% auto;
    color: #000;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-premium-reserve:hover {
    background-position: right center;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-premium-reserve:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-premium-reserve::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
    pointer-events: none;
}

.btn-premium-reserve:hover::after {
    opacity: 1;
    transform: scale(1);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

.btn-premium-reserve i {
    font-size: 1.6rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium-reserve:hover i {
    transform: scale(1.3) rotate(5deg);
}

/* Mobile Optimizations for Modals & General */
@media (max-width: 768px) {
    .modal-info-col,
    .modal-content-center {
        padding: 25px 20px !important;
    }
    .pm-title {
        font-size: 1.4rem !important;
    }
    .btn-premium-reserve {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }
    .modal-image-col {
        padding: 15px !important;
    }
    .modal-image-col img {
        max-height: 220px !important;
    }
    .modal {
        width: 95% !important;
    }
    /* Fix hero text on small phones */
    .title {
        font-size: 2.2rem !important;
    }
    .section-padding {
        padding: 60px 0 !important;
    }
}

/* Footer Certificates & Legal */
.footer-certs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-gray);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.cert-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.cert-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.footer-legal-links a {
    color: #777;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

.footer-logo-large {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 15px;
    color: rgba(255, 255, 255, 0.03);
    text-align: center;
    margin-bottom: 20px;
    user-select: none;
}

@media (max-width: 768px) {
    .footer-logo-large {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    .footer-certs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cert-item {
        width: 100%;
        justify-content: center;
    }
    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Floating Social Buttons */
.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-float {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFF;
    transition: var(--transition-smooth);
}

.social-float:hover {
    color: #FFF;
}

.whatsapp-float {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.instagram-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
}

.instagram-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
}

@media (max-width: 768px) {
    .floating-socials {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .social-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
