/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #fbbf24;
    --primary-dark: #f59e0b;
    --secondary: #6b7280;
    --accent: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Neutral Colors */
    --bg-primary: #1a1a1a;
    --bg-secondary: #262626;
    --bg-tertiary: #333333;
    --bg-card: #2a2a2a;
    --bg-modal: rgba(0, 0, 0, 0.9);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    
    /* Borders */
    --border-light: #404040;
    --border-medium: #525252;
    --border-dark: #262626;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #1f1f1f 0%, #0f0f0f 100%);
    --gradient-background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 15%, #262626 35%, #1a1a1a 65%, #0a0a0a 100%);
    
        /* 
         * GRIDLINE FADE CONTROLS - FULLY CUSTOMIZABLE
         * 
         * --gridline-opacity: Base visibility (0.05-0.15 recommended)
         * --gridline-fade-start: When fade begins (px or vh units)
         * --gridline-fade-end: When fade completes (px or vh units)  
         * --gridline-fade-enabled: 1 to enable, 0 to disable fade
         * 
         * Quick customization examples:
         * - Stronger fade: Increase fade-start to 1500px
         * - Gentler fade: Decrease fade-end to 200vh
         * - No fade: Set fade-enabled to 0
         * - More visible: Increase opacity to 0.15
         */
        --gridline-opacity: 0.23;
        --gridline-fade-start: 0px;
        --gridline-fade-end: 5300px; /* Fades out all the way to the bottom */
        --gridline-fade-enabled: 1;
        
                 /* 
          * GRADIENT BALL CUSTOMIZATION VARIABLES
          * 
          * --gradient-ball-opacity: Base opacity for all gradient balls (0.03-0.12 recommended)
          * --gradient-ball-blur: Blur amount for gradient balls (20px-60px recommended)
          * --gradient-ball-size: Size range for gradient balls (120px-400px recommended)
          * 
          * Quick customization examples:
          * - More visible balls: Increase opacity to 0.10-0.15
          * - More subtle balls: Decrease opacity to 0.02-0.05
          * - Larger balls: Increase size values by 50px
          * - Smaller balls: Decrease size values by 30px
          */
         --gradient-ball-opacity: 0.22;       /* Base opacity for gradient balls */
         --gradient-ball-blur: 100px;          /* Blur amount for gradient balls */
         --gradient-ball-size-large: 400px;   /* Large gradient ball size */
         --gradient-ball-size-medium: 300px;  /* Medium gradient ball size */
         --gradient-ball-size-small: 200px;   /* Small gradient ball size */
         
         /* 
          * LUXURY GEOMETRIC BACKGROUND CUSTOMIZATION VARIABLES
          * 
          * --luxury-shape-opacity: Base opacity for geometric shapes (0.02-0.06 recommended)
          * --luxury-shape-blur: Blur amount for geometric shapes (40px-80px recommended)
          * --luxury-shape-animation-duration: Animation duration (25s-45s recommended)
          * --luxury-shape-animation-delay: Staggered animation delays (0s-30s recommended)
          * 
          * Quick customization examples:
          * - More visible shapes: Increase opacity to 0.04-0.08
          * - More subtle shapes: Decrease opacity to 0.01-0.03
          * - Softer blur: Decrease blur to 30px-50px
          * - Stronger blur: Increase blur to 60px-100px
          * - Faster animation: Decrease duration to 20s-30s
          * - Slower animation: Increase duration to 40s-50s
          */
         --luxury-shape-opacity: 0.03;        /* Lowered for barely visible geometric shapes */
         --luxury-shape-blur: 60px;           /* Blur amount */
         --luxury-shape-animation-duration: 35s; /* Animation speed */
         --luxury-shape-animation-delay: 8s;  /* Staggered delays */
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-40: 10rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    --navbar-bg-alpha: 0.48; /* Header background transparency (0-1), adjust in settings */
    --menu-bg-alpha: 0.72;   /* Mobile menu background transparency (0-1), adjust in settings */

    /* --- LUXURY BACKGROUND GEOMETRIC SYSTEM (ENHANCED) --- */
    --gradient-ball-opacity: 0.22; /* Increased for more visible golden balls */
    /* --- END LUXURY BACKGROUND GEOMETRIC SYSTEM (ENHANCED) --- */
    --section-spacing: -50px;
}

.hero,
.brand-carousel-section,
.features,
.testimonials,
.pricing,
.faq {
  margin-bottom: var(--section-spacing);
}

body {
    font-family: var(--font-family);
    /* 
     * EXTREMELY SUBTLE FULL-PAGE GRADIENT
     * Creates a barely visible gradient that doesn't interfere with content
     * - Very low opacity values for subtle effect
     * - Maintains the dark background base
     */
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* 
 * LUXURY GRIDLINE SYSTEM
 * 
 * CUSTOMIZATION GUIDE:
 * - Base Opacity: Change --gridline-opacity in :root (0.02-0.06 recommended)
 * - Grid Size: Change 80px to adjust density (60px-120px recommended)
 * - Z-index: Change 1 to adjust layering (1-5 recommended)
 * - Color: Change rgba(255,255,255) to different colors
 * - Line thickness: Change 0.5px to adjust line weight
 * - Fade Controls: Adjust --gridline-fade-start and --gridline-fade-end in :root
 * - Fade Intensity: Modify the 0.8 multiplier in JavaScript for fade strength
 */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        /* Primary gridlines */
        linear-gradient(rgba(255, 255, 255, var(--gridline-opacity)) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, var(--gridline-opacity)) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    pointer-events: none;
    z-index: -1;
    /* Smooth scroll-based fade effect - opacity controlled by JavaScript */
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ensure full coverage behind all content */
    will-change: opacity;
    /* Ensure no transform is applied by default */
    transform: none;
}

/* 
 * LUXURY BACKGROUND GEOMETRIC SYSTEM
 * Sophisticated geometric forms distributed evenly across the page
 * - Organic blobs, diagonal gradients, and abstract overlays
 * - Even distribution from top to bottom
 * - Low opacity for subtle enhancement
 * - Responsive and non-distracting
 */
.luxury-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Organic blob shapes */
.luxury-shape {
    position: absolute;
    filter: blur(var(--luxury-shape-blur));
    opacity: var(--luxury-shape-opacity);
    animation: float 30s ease-in-out infinite;
}

/* Golden balls - more visible */
.luxury-shape.ball {
    opacity: var(--gradient-ball-opacity);
    filter: blur(var(--gradient-ball-blur));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: var(--luxury-shape-opacity);
    }
    25% {
        transform: translateY(-12px) translateX(8px) scale(1.02) rotate(2deg);
        opacity: calc(var(--luxury-shape-opacity) * 1.2);
    }
    50% {
        transform: translateY(-6px) translateX(-10px) scale(0.98) rotate(-1deg);
        opacity: calc(var(--luxury-shape-opacity) * 0.8);
    }
    75% {
        transform: translateY(10px) translateX(5px) scale(1.01) rotate(1deg);
        opacity: calc(var(--luxury-shape-opacity) * 1.1);
    }
}

/* Responsive luxury shapes */
@media (max-width: 768px) {
    .luxury-shape:nth-child(1) {
        width: 200px;
        height: 140px;
        top: 5%;
        left: 3%;
    }
    
    .luxury-shape:nth-child(2) {
        width: 180px;
        height: 180px;
        top: 30%;
        right: 5%;
    }
    
    .luxury-shape:nth-child(3) {
        width: 120px;
        height: 120px;
        top: 50%;
        left: 10%;
    }
    
    .luxury-shape:nth-child(4) {
        width: 160px;
        height: 120px;
        top: 65%;
        right: 15%;
    }
    
    .luxury-shape:nth-child(5) {
        width: 140px;
        height: 140px;
        bottom: 10%;
        left: 20%;
    }
    
    .luxury-shape:nth-child(6) {
        width: 80px;
        height: 80px;
        top: 15%;
        right: 25%;
    }
}

@media (max-width: 480px) {
    .luxury-shapes {
        display: none; /* Hide on very small screens for performance */
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: 600;
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    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.1), transparent);
    transition: left var(--transition-slow);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::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.6s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, var(--navbar-bg-alpha)); /* adjustable transparency */
    backdrop-filter: blur(6px) saturate(1.2);
    -webkit-backdrop-filter: blur(4px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-img {
  max-width: 250px;
  width: 100%;
  height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}
.nav-menu .icon{
  max-width: 50px;
  aspect-ratio:1;
  border-radius:50%;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-link:hover, .nav-link:focus {
    color: var(--text-primary);
    /* No blur, no brightness, no color change, no filter */
}

/* Remove nav-link shine effect by deleting ::after rules */

@keyframes nav-shine {
    0% { left: -40%; opacity: 0.12; }
    40% { opacity: 0.22; }
    100% { left: 100%; opacity: 0; }
}

/* Remove underline and background for nav-link hover on mobile too */
@media (max-width: 768px) {
  .nav-link:hover, .nav-link:focus {
    background: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    color: var(--text-primary);
    /* Remove filter, blur, brightness, and saturate */
    filter: none !important;
  }
}

.nav-signin {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.nav-signin:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--gradient-ball-size-large);
    height: var(--gradient-ball-size-large);
    background: radial-gradient(circle, rgba(251, 191, 36, var(--gradient-ball-opacity)) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(var(--gradient-ball-blur));
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

/* Force hero container to single column and center content */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 var(--space-6);
  gap: var(--space-16);
}

/* Center hero content and video */
.hero-content {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.hero-demo-video {
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  animation: fadeInUp 1s ease-out 0.2s both;
  max-width: 600px;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .hero-subtitle {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-mockup {
    position: relative;
    width: 400px;
    height: 300px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-2xl);
}

.mockup-header {
    height: 40px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    padding: 0 var(--space-4);
    border-bottom: 1px solid var(--border-light);
}

.mockup-dots {
    display: flex;
    gap: var(--space-2);
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.mockup-content {
    padding: var(--space-6);
    height: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-chart {
    display: flex;
    align-items: end;
    gap: var(--space-2);
    height: 120px;
}

.chart-bar {
    width: 30px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    animation: chartGrow 2s ease-out 1s both;
}

.chart-bar:hover {
    transform: scaleY(1.1);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

/* Features Section */
.features {
    padding: var(--space-40) 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: var(--gradient-ball-size-medium);
    height: var(--gradient-ball-size-medium);
    background: radial-gradient(circle, rgba(251, 191, 36, calc(var(--gradient-ball-opacity) * 0.8)) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(calc(var(--gradient-ball-blur) * 1.25));
    z-index: -1;
    animation: pulse 5s ease-in-out infinite 1s;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: var(--gradient-ball-size-small);
    height: var(--gradient-ball-size-small);
    background: radial-gradient(circle, rgba(251, 191, 36, calc(var(--gradient-ball-opacity) * 0.6)) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(var(--gradient-ball-blur));
    z-index: -1;
    animation: pulse 6s ease-in-out infinite 2s;
}



.section-header {
    text-align: center;
    margin-bottom: var(--space-24);
}

.section-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    max-width: 1200px;
    margin: 0 auto;
}
.features-grid-row {
    display: contents;
}

.feature-card {
    background: rgba(31, 31, 31, 0.3);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: 45px;
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out both;
}

/* Subtle gradient accent for feature cards */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.03) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(251, 191, 36, 0.2);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-8);
    position: relative;
    z-index: 1;
    transition: all var(--transition-slow);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--bg-primary);
}

.feature-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-32) 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 15%;
    width: var(--gradient-ball-size-small);
    height: var(--gradient-ball-size-small);
    background: radial-gradient(circle, rgba(251, 191, 36, calc(var(--gradient-ball-opacity) * 0.7)) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(calc(var(--gradient-ball-blur) * 0.875));
    z-index: -1;
    animation: pulse 4.5s ease-in-out infinite 0.5s;
}

/* Discord-style Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-message {
    display: flex;
    gap: var(--space-4);
    background: rgba(31, 31, 31, 0.4);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

.testimonial-message:hover {
    background: rgba(31, 31, 31, 0.6);
    border-color: rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.message-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(251, 191, 36, 0.3);
    background: var(--primary);
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
}

.message-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.message-role {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    background: rgba(251, 191, 36, 0.1);
    padding: 2px var(--space-2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.message-text {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: var(--space-32) 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 8%;
    width: calc(var(--gradient-ball-size-small) - 20px);
    height: calc(var(--gradient-ball-size-small) - 20px);
    background: radial-gradient(circle, rgba(251, 191, 36, calc(var(--gradient-ball-opacity) * 0.6)) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(calc(var(--gradient-ball-blur) * 0.75));
    z-index: -1;
    animation: pulse 5.5s ease-in-out infinite 1.5s;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 12%;
    width: calc(var(--gradient-ball-size-small) - 50px);
    height: calc(var(--gradient-ball-size-small) - 50px);
    background: radial-gradient(circle, rgba(251, 191, 36, calc(var(--gradient-ball-opacity) * 0.5)) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(calc(var(--gradient-ball-blur) * 0.625));
    z-index: -1;
    animation: pulse 6.5s ease-in-out infinite 3s;
}



.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-secondary);
    transition: var(--transition-normal);
    border-radius: 30px;
    border: 1px solid var(--border-medium);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background-color: var(--primary);
    transition: var(--transition-normal);
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--bg-secondary);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.discount {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}
.pricing-card {
    height: 100%;
}

.pricing-card {
    background: rgba(31, 31, 31, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(31, 31, 31, 0.7);
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
}

.pricing-card:hover {
    transform: translateY(-1px) scale(1.00);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    border-color: rgba(251, 191, 36, 0.10);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.2), 0 16px 48px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    z-index: 1;
}

.pricing-header {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- LUXURIOUS PRICING TITLES --- */
.pricing-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 12px rgba(251,191,36,0.10), 0 1px 0 rgba(0,0,0,0.12);
  /* Adjust for luxury look */
}

/* --- PRICING CARD FLEX LAYOUT FOR BUTTON ALIGNMENT --- */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
}
.pricing-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pricing-card button {
  margin-top: var(--pricing-btn-align-margin, auto);
  align-self: center;
  margin-bottom: 0;
}
/* To adjust button alignment, set --pricing-btn-align-margin on .pricing-card or globally. */

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.currency {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.amount {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.price-cents {
  font-size: 0.65em;
  vertical-align: super;
  color: #e7c873;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-left: 1px;
  opacity: 0.85;
  font-family: inherit;
  /* Subtle gold shadow for luxury */
  text-shadow: 0 1px 4px rgba(251,191,36,0.10);
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.pricing-features li {
    padding: var(--space-3) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
    font-size: var(--font-size-base);
}







/* FAQ Section - Elegant Luxury Design */
/* 
   CUSTOMIZATION VARIABLES:
   --faq-animation-duration: 0.6s (animation speed)
   --faq-easing: ease (smooth curve)
   --faq-opacity: 1 (answer fade intensity)
   --faq-spacing: 1rem (space between items)
*/

.faq {
    padding: var(--space-32) 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 60%;
    right: 20%;
    width: calc(var(--gradient-ball-size-small) - 80px);
    height: calc(var(--gradient-ball-size-small) - 80px);
    background: radial-gradient(circle, rgba(251, 191, 36, calc(var(--gradient-ball-opacity) * 0.4)) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(calc(var(--gradient-ball-blur) * 0.5));
    z-index: -1;
    animation: pulse 7s ease-in-out infinite 2.5s;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(31, 31, 31, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(135deg, rgba(251, 191, 36, 0.03) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(251, 191, 36, 0.015),
            rgba(251, 191, 36, 0.015) 1px,
            transparent 1px,
            transparent 25px
        );
    opacity: 0.8;
    z-index: -1;
    border-radius: var(--radius-2xl);
}

/* --- LUXURY FAQ STYLES WITH SMOOTHNESS --- */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: var(--space-8) 0;
  transition: all 0.3s ease;
  position: relative;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item:hover {
  border-bottom-color: rgba(251, 191, 36, 0.1);
}
.faq-item[open] {
  background: transparent;
  border-bottom-color: rgba(251, 191, 36, 0.15);
}
.faq-question {
  list-style: none;
  cursor: pointer;
  font-size: var(--font-size-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  transition: all 0.3s ease;
  padding: 0;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: inherit;
  line-height: 1.5;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }
.faq-question:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.faq-item[open] .faq-question {
  color: var(--primary);
  transform: translateX(4px);
}
.faq-icon {
  transition: transform 0.4s ease;
  color: var(--text-secondary);
  flex-shrink: 0;
  font-size: 18px;
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}
.faq-item[open] .faq-icon {
  transform: rotate(90deg);
  color: var(--primary);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: max-height 0.45s cubic-bezier(.4,0,.2,1), opacity 0.45s cubic-bezier(.4,0,.2,1), padding 0.45s cubic-bezier(.4,0,.2,1), margin-top 0.45s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: var(--space-4);
  padding: 0 0 0.5em 0;
}
/* --- END LUXURY FAQ STYLES WITH SMOOTHNESS --- */

/* Responsive design for mobile and desktop */
@media (max-width: 768px) {
    .faq-container {
        padding: var(--space-6);
        margin: 0 var(--space-4);
    }
    
    .faq-item {
        padding: var(--space-4) 0;
    }
    
    .faq-question {
        font-size: var(--font-size-base);
    }
    
    .faq-item[open] .faq-answer {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: var(--space-4);
        margin: 0 var(--space-3);
    }
    
    .faq-question {
        font-size: var(--font-size-sm);
    }
    
    .faq-item[open] .faq-answer {
        max-height: 250px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chartGrow {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .hero-mockup {
        width: 300px;
        height: 225px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 92px; /* header height + 12px gap */
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    background: rgba(10, 10, 10, var(--menu-bg-alpha)); /* adjustable transparency */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 0 0 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    gap: 2rem;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-24%) scale(0.98);
    transition: transform 0.38s cubic-bezier(.5,1.2,.5,1), opacity 0.28s cubic-bezier(.5,1.2,.5,1);
    z-index: 999;
    align-items: flex-start; /* left align */
  }
  .nav-menu.active {
    transform: translateY(0%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    width: 100%;
    text-align: left;
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: color 0.18s, background 0.18s, box-shadow 0.18s;
    position: relative;
  }
  .nav-link:hover, .nav-link:focus {
    color: var(--primary);
    background: rgba(255,255,255,0.015); /* much subtler background */
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 1.5px;
    text-decoration-color: var(--primary);
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s cubic-bezier(.5,1.2,.5,1);
  }
  .nav-toggle.active {
    box-shadow: 0 2px 12px 0 rgba(80,80,80,0.13);
    background: rgba(30,30,30,0.82);
    border-radius: 50%;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .nav-toggle span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(.5,1.2,.5,1), opacity 0.2s, background 0.2s;
  }
  .nav-toggle span:nth-child(1) {
    top: 12px;
  }
  .nav-toggle span:nth-child(2) {
    top: 19px;
  }
  .nav-toggle span:nth-child(3) {
    top: 26px;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-buttons {
        gap: var(--space-3);
    }
    
    .btn {
        padding: var(--space-3) var(--space-4);
        font-size: var(--font-size-sm);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        margin: var(--space-4);
        padding: var(--space-6);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); } 

/* Luxury Brand Carousel Styles (adapted) */
.brand-carousel-section {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.brand-carousel-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
/* --- Brand Carousel: Seamless Infinite Scroll (Previous Project Structure, No Tailwind) --- */
.carousel-wrapper {
  overflow: hidden;
  width: 80%;
  max-width: 1600px;
  margin: 40px auto 0 auto;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 45s linear infinite;
}
.carousel-img {
  height: 30px;
  width: 150px;
  margin-right: 5rem;
  flex-shrink: 0;
}
.carousel-img:last-child {
  margin-right: 0;
}
.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(20%);
  transition: filter 0.3s ease;
}
.carousel-img img:hover {
  filter: grayscale(0%) brightness(1.5);
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}
@media (max-width: 640px) {
  .carousel-img {
    width: 50px;
    height: 30px;
    margin-right: 5.5rem;
  }
  .carousel-img:last-child {
    margin-right: 0;
  }
} 

@media (min-width: 860px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid > .feature-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
  }
}

@media (min-width: 1100px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .features-grid > .feature-card:nth-child(3) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }
} 

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid > .pricing-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pricing-grid > .pricing-card:nth-child(3) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }
} 

@media (max-width: 860px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
} 

/* --- HERO DEMO VIDEO STYLES (DIAL DOWN WIDTH) --- */
.hero-demo-video {
  display: block;
  margin: 2.5rem auto 2.5rem auto;
  width: min(1100px, 70vw);
  height: min(620px, 39vw);
  border-radius: var(--radius-2xl, 1.5rem);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 0 rgba(251,191,36,0.08);
  background: #181818;
  object-fit: cover;
  transition: box-shadow 0.3s;
}
@media (max-width: 1200px) {
  .hero-demo-video {
    width: 92vw;
    height: 52vw;
    max-width: 92vw;
    max-height: 60vw;
  }
}
@media (max-width: 800px) {
  .hero-video-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }
  .hero-demo-video {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 800px) {
  .hero-demo-video {
    width: 100vw;
    height: 56vw;
    max-width: 100vw;
    max-height: 70vw;
    margin: 1.5rem 0 1.5rem 0;
  }
} 

/* --- HERO VIDEO WRAPPER & PLAY BUTTON (UPDATED) --- */
.hero-video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto 2.5rem auto;
}
.hero-demo-video {
  display: block;
  z-index: 1;
}
.hero-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(.4,0,.2,1);
  border-radius: 50%;
  /* Remove gold box-shadow */
}
.hero-video-play svg {
  display: block;
  width: 80px;
  height: 80px;
  transition: none;
}
.hero-video-play circle:first-child {
  transition: fill 0.18s cubic-bezier(.4,0,.2,1);
}
.hero-video-play polygon {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1);
}
.hero-video-play:hover svg circle:first-child,
.hero-video-play:focus svg circle:first-child {
  fill: #fff;
}
.hero-video-play:hover svg polygon,
.hero-video-play:focus svg polygon {
  transform: scale(1.18);
}
.hero-video-play:active svg circle:first-child {
  fill: #fff;
  transition: fill 0.08s;
}
.hero-video-play:active svg polygon {
  transform: scale(1.22);
  transition: transform 0.08s;
}
.hero-video-play[hidden] {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 800px) {
  .hero-video-play svg {
    width: 56px;
    height: 56px;
  }
} 

/* --- HERO VIDEO PLAY BUTTON: LUXURY STYLE --- */
.hero-video-play {
  /* Slightly larger for luxury presence */
}
.hero-video-play svg {
  width: 92px;
  height: 92px;
}
.hero-video-play svg circle:first-child {
  fill: rgba(24,24,24,0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  stroke: url(#hero-gold-gradient);
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 8px rgba(251,191,36,0.10)); /* soft gold inner shadow */
  transition: filter 0.32s cubic-bezier(.4,0,.2,1), stroke 0.32s cubic-bezier(.4,0,.2,1);
}
.hero-video-play svg circle.luxury-border {
  stroke: url(#hero-gold-gradient);
  stroke-width: 4.5;
  fill: none;
}
.hero-video-play polygon.hero-play-triangle {
  stroke: url(#hero-gold-gradient);
  stroke-width: 2;
  filter: none !important;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), filter 0.32s cubic-bezier(.4,0,.2,1), stroke 0.32s cubic-bezier(.4,0,.2,1);
  transform-origin: 50% 50%;
}
.hero-video-play:hover svg circle:first-child,
.hero-video-play:focus svg circle:first-child {
  filter: drop-shadow(0 0 16px #fbbf2466);
  stroke: url(#hero-gold-gradient);
}
.hero-video-play:hover polygon.hero-play-triangle,
.hero-video-play:focus polygon.hero-play-triangle {
  transform: scale(1.18);
  filter: drop-shadow(0 0 8px #fbbf2477);
  stroke: url(#hero-gold-gradient);
}
.hero-video-play:active polygon.hero-play-triangle {
  transform: scale(1.22);
  filter: drop-shadow(0 0 12px #fbbf24cc);
  stroke: url(#hero-gold-gradient);
}
@media (max-width: 800px) {
  .hero-video-play svg {
    width: 64px;
    height: 64px;
  }
} 

/* --- HERO VIDEO PLAY BUTTON: NO GLOW, ONLY BLURRY CIRCLE --- */
.hero-video-play polygon.hero-play-triangle {
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  transform-origin: 50% 50%;
  filter: none !important;
}
.hero-video-play:hover polygon.hero-play-triangle,
.hero-video-play:focus polygon.hero-play-triangle {
  transform: scale(1.18);
  filter: none !important;
}
.hero-video-play:active polygon.hero-play-triangle {
  transform: scale(1.22);
  filter: none !important;
}
/* --- HERO VIDEO PLAY BUTTON: NO HOVER COLOR CHANGE ON CIRCLE --- */
.hero-video-play svg circle:first-child {
  fill: rgba(24,24,24,0.48);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: none;
  filter: none !important;
}
.hero-video-play:hover svg circle:first-child,
.hero-video-play:focus svg circle:first-child,
.hero-video-play:active svg circle:first-child {
  fill: rgba(24,24,24,0.48);
  filter: none !important;
} 

@media (max-width: 800px) {
  .hero-video-wrapper {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 0;
  }
  .hero-demo-video {
    margin-left: 0;
    margin-right: 0;
  }
} 

.footer-section {
  background: rgba(18, 18, 18, 0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 24px 0;
  margin-top: 64px;
  box-shadow: 0 -2px 24px 0 rgba(0,0,0,0.12);
}
.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo {
  max-width: 309px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(251,191,36,0.08));
}
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 58px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.footer-social-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(32,32,32,0.72);
  box-shadow: 0 2px 12px 0 rgba(251,191,36,0.06);
  border: 2px solid transparent;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, border 0.22s;
  position: relative;
  overflow: hidden;
}
.footer-social-box svg {
  display: block;
}
.footer-social-box:hover, .footer-social-box:focus {
  transform: scale(1.11);
  border: 2px solid #fbbf24;
  box-shadow: 0 4px 24px 0 #fbbf2433;
  background: rgba(32,32,32,0.92);
  z-index: 2;
}
.footer-social-box:active {
  transform: scale(0.98);
}
.footer-copyright {
  color: #a3a3a3;
  font-size: 0.98rem;
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: 8px;
  opacity: 0.85;
}
@media (max-width: 600px) {
  .footer-section {
    padding: 32px 0 16px 0;
  }
  .footer-container {
    gap: 20px;
  }
  .footer-logo {
    max-width: 140px;
  }
  .footer-socials {
    gap: 40px;
  }
  .footer-social-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
} 