/* EXACT COPY from vibe-theme - Header CSS */

/* Optimized Header Transitions */
#main-header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, transform 0.3s ease;
    transform: translateZ(0); /* Enable hardware acceleration */
    backface-visibility: hidden; /* Prevent flickering */
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Synchronize all text color changes with same timing */
#main-header #nav-links,
#main-header #nav-links a,
#main-header #nav-links button,
#main-header #mobile-menu-button {
    transition: color 0.1s ease !important;
    font-weight: 300 !important; /* Ensure consistent font-light weight */
}

/* Header scrolled background */
#main-header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Ensure text changes happen immediately with background */
#main-header.header-scrolled #nav-links,
#main-header.header-scrolled #nav-links a,
#main-header.header-scrolled #nav-links button,
#main-header.header-scrolled #mobile-menu-button {
    color: #1f2937 !important;
    font-weight: 300 !important; /* Keep consistent font-light weight */
}

/* Default hover for transparent header (white text becomes dim white) - ONLY for main nav links, NOT dropdowns */
#main-header:not(.header-scrolled):not([style*="background-color"]) #nav-links > li > a:hover,
#main-header:not(.header-scrolled):not([style*="background-color"]) #nav-links > li > button:hover {
    color: rgba(255, 255, 255, 0.7) !important; /* dim white for transparent header */
}

/* Hover for dark header (dark text stays blue on hover) - ONLY for main nav links */
#main-header[style*="background-color"] #nav-links > li > a:hover,
#main-header[style*="background-color"] #nav-links > li > button:hover {
    color: #2563eb !important; /* blue for dark headers */
}

/* Hover for scrolled header (dark text becomes blue) - main nav links */
#main-header.header-scrolled #nav-links > li > a:hover,
#main-header.header-scrolled #nav-links > li > button:hover {
    color: #2563eb !important; /* blue for white background */
}

/* Hover for scrolled header dropdown links - same blue */
#main-header.header-scrolled .group .absolute a:hover {
    color: #2563eb !important; /* blue for dropdown links when scrolled */
    background-color: #f9fafb !important;
}

#main-header #logo-img {
    transition: none; /* Remove transition from logo to make it instant */
}

/* Legacy support for old scrolled class */
#main-header.scrolled .nav-link,
#main-header.scrolled .phone-number {
    color: #1f2937;
}

#main-header.scrolled .nav-link:hover {
    color: #2563eb;
}

#main-header .logo-white { display: block; }
#main-header.scrolled .logo-white { display: none; }
#main-header .logo-color { display: none; }
#main-header.scrolled .logo-color { display: block; }

#main-header .btn-outline-white {
    border: 2px solid white;
    color: white;
}

#main-header.scrolled .btn-outline-white {
    border-color: #2563eb;
    color: #2563eb;
}

#main-header .btn-outline-white:hover {
    background-color: white;
    color: #1f2937;
}

#main-header.scrolled .btn-outline-white:hover {
    background-color: #2563eb;
    color: white;
}

#main-header.scrolled #menu-btn { color: #1f2937; }

#main-header nav .menu-item {
    list-style-type: none;
}

/* Add background on dark headers for better visibility */
#main-header:not(.header-scrolled) #mobile-menu-button {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

#main-header.header-scrolled #mobile-menu-button {
    background-color: transparent;
}

/* Tailwind CSS classes extracted and converted to regular CSS */
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-50 { z-index: 50; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.transition-all { transition-property: all; }
.duration-300 { transition-duration: 300ms; }
.w-full { width: 100%; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }
.z-10 { z-index: 10; }
.h-12 { height: 3rem; }
.w-auto { width: auto; }
.hidden { display: none; }
.lg\:flex { display: flex; }
.justify-center { justify-content: center; }
.flex-grow { flex-grow: 1; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.font-light { font-weight: 300; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.tracking-wide { letter-spacing: 0.025em; }
.text-white { color: rgb(255 255 255); }
.text-gray-800 { color: rgb(31 41 55); }
.relative { position: relative; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:visible { visibility: visible; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:rotate-180 { transform: rotate(180deg); }
.uppercase { text-transform: uppercase; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; }
.duration-300 { transition-duration: 300ms; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.ml-1 { margin-left: 0.25rem; }
.transition-transform { transition-property: transform; }
.absolute { position: absolute; }
.top-full { top: 100%; }
.left-0 { left: 0; }
.mt-2 { margin-top: 0.5rem; }
.w-56 { width: 14rem; }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.rounded-md { border-radius: 0.375rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.opacity-0 { opacity: 0; }
.invisible { visibility: hidden; }
.opacity-100 { opacity: 1; }
.visible { visibility: visible; }
.translate-y-1 { transform: translateY(0.25rem); }
.translate-y-0 { transform: translateY(0); }
.z-50 { z-index: 50; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.block { display: block; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.text-gray-700 { color: rgb(55 65 81); }
.hover\:bg-gray-50:hover { background-color: rgb(249 250 251); }
.hover\:text-blue-600:hover { color: rgb(37 99 235); }
.duration-150 { transition-duration: 150ms; }
.ml-8 { margin-left: 2rem; }
.bg-blue-600\/90 { background-color: rgb(37 99 235 / 0.9); }
.border { border-width: 1px; }
.border-white\/20 { border-color: rgb(255 255 255 / 0.2); }
.font-semibold { font-weight: 600; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.hover\:bg-blue-500\/90:hover { background-color: rgb(59 130 246 / 0.9); }
.lg\:hidden { display: none; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.p-2 { padding: 0.5rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.mr-2 { margin-right: 0.5rem; }
.stroke-2 { stroke-width: 2; }
.inset-0 { inset: 0px; }
.bg-gray-900 { background-color: rgb(17 24 39); }
.text-white { color: rgb(255 255 255); }
.flex-col { flex-direction: column; }
.h-full { height: 100%; }
.justify-between { justify-content: space-between; }
.border-b { border-bottom-width: 1px; }
.border-gray-700 { border-color: rgb(55 65 81); }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.flex-1 { flex: 1 1 0%; }
.overflow-y-auto { overflow-y: auto; }
.space-y-4 > * + * { margin-top: 1rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.hover\:text-blue-400:hover { color: rgb(96 165 250); }
.p-4 { padding: 1rem; }
.border-t { border-top-width: 1px; }
.bg-gray-800 { background-color: rgb(31 41 55); }
.rounded-lg { border-radius: 0.5rem; }
.justify-center { justify-content: center; }
.space-x-4 > * + * { margin-left: 1rem; }
.text-gray-300 { color: rgb(209 213 219); }
.text-yellow-400 { color: rgb(250 204 21); }
.ml-1 { margin-left: 0.25rem; }
.w-px { width: 1px; }
.bg-gray-600 { background-color: rgb(75 85 99); }

@media (min-width: 1024px) {
    .lg\:flex { display: flex !important; }
    .lg\:hidden { display: none !important; }
}

@media (min-width: 768px) {
    .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
}

/* Fix responsive navigation visibility */
.hidden.lg\:flex {
    display: none;
}

@media (min-width: 1024px) {
    .hidden.lg\:flex {
        display: flex !important;
    }
    .lg\:hidden {
        display: none !important;
    }
}

/* Mobile menu button should be visible on small screens */
.lg\:hidden {
    display: block;
}

@media (min-width: 1024px) {
    .lg\:hidden {
        display: none !important;
    }
}
/* EXACT COPY from vibe-theme - Hero CSS */

/* ==========================================================================
   Hero Background Images
   ========================================================================== */

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

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

.hero-bg-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

/* ==========================================================================
   CTA Buttons - High Converting Orange/Amber
   ========================================================================== */

.btn-primary-cta {
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.35);
  color: #FFFFFF; /* Changed to white for better contrast */
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary-cta:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.45);
  transform: translateY(-2px);
}

.btn-primary-cta svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
}

/* Secondary CTA - Glassmorphic */
.btn-secondary-cta {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Typography
   ========================================================================== */

.hero-title-desktop {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title-mobile {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-subtitle-desktop {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #F3F4F6;
}

.hero-subtitle-mobile {
  font-size: clamp(0.875rem, 3vw, 1rem);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #F3F4F6;
}

/* ==========================================================================
   Hero Form - Glassmorphism
   ========================================================================== */

.hero-form-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Hero Social Proof
   ========================================================================== */

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-social-proof-mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.hero-rating-stars {
  color: #FFB800;
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Glassmorphic container for hero content */
.hero-glassmorphic-bg {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Mobile hero specific wrapper */
.mobile-hero-content-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

/* Mobile hero padding to avoid footer */
.mobile-hero-bottom-padding {
  padding-bottom: 150px;
}

/* ==========================================================================
   Hero Background
   ========================================================================== */

.hero-bg-overlay {
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%);
}

/* ==========================================================================
   Animations
   ========================================================================== */

.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease-out;
}

.hero-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation delays for staggered effect */
.hero-animate:nth-child(1) { transition-delay: 0.1s; }
.hero-animate:nth-child(2) { transition-delay: 0.2s; }
.hero-animate:nth-child(3) { transition-delay: 0.3s; }
.hero-animate:nth-child(4) { transition-delay: 0.4s; }

/* ==========================================================================
   Hero Video Container Classes
   ========================================================================== */

.hero-video-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Tailwind CSS classes extracted and converted to regular CSS */
.relative { position: relative; }
.absolute { position: absolute; }
.h-screen { height: 100vh; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.bg-black\/50 { background-color: rgb(0 0 0 / 0.5); }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.container { width: 100%; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.sm\\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.md\\:px-12 { padding-left: 3rem; padding-right: 3rem; }
.max-w-2xl { max-width: 42rem; }
.lg\\:max-w-3xl { max-width: 48rem; }
.text-white { color: rgb(255 255 255); }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.sm\\:p-8 { padding: 2rem; }
.lg\\:p-10 { padding: 2.5rem; }
.rounded-2xl { border-radius: 1rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.sm\\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.sm\\:mb-7 { margin-bottom: 1.75rem; }
.opacity-100 { opacity: 1; }
.opacity-0 { opacity: 0; }
.translate-y-0 { transform: translateY(0); }
.translate-y-5 { transform: translateY(1.25rem); }
.transition-all { transition-property: all; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.duration-700 { transition-duration: 700ms; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.sm\\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.font-light { font-weight: 300; }
.mb-8 { margin-bottom: 2rem; }
.sm\\:mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }
.sm\\:block { display: block; }
.block { display: block; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.sm\\:mt-12 { margin-top: 3rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.sm\\:space-x-4 > * + * { margin-left: 1rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.sm\\:h-16 { height: 4rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.sm\\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.sm\\:text-base { font-size: 1rem; line-height: 1.5rem; }
.border-l { border-left-width: 1px; }
.border-white\/30 { border-color: rgb(255 255 255 / 0.3); }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.sm\\:pl-6 { padding-left: 1.5rem; }
.md\\:block { display: block; }

@media (min-width: 640px) {
  .sm\\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\\:p-8 { padding: 2rem; }
  .sm\\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\\:mb-7 { margin-bottom: 1.75rem; }
  .sm\\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\\:mb-8 { margin-bottom: 2rem; }
  .sm\\:block { display: block; }
  .sm\\:mt-12 { margin-top: 3rem; }
  .sm\\:space-x-4 > * + * { margin-left: 1rem; }
  .sm\\:h-16 { height: 4rem; }
  .sm\\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\\:pl-6 { padding-left: 1.5rem; }
}

@media (min-width: 768px) {
  .md\\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\\:block { display: block; }
}

@media (min-width: 1024px) {
  .lg\\:max-w-3xl { max-width: 48rem; }
  .lg\\:p-10 { padding: 2.5rem; }
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

@media (max-width: 640px) {
  .hero-form-container {
    padding: 1rem;
  }

  .btn-primary-cta {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .hero-social-proof {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-title-desktop {
    font-size: 2.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title-desktop {
    font-size: 3rem;
  }
}

  /* Reset */

  /* Typography */
/* Container */
/* Section */
/* Button Base */
/* Card */
/* Grid */
/* Display */
/* Flexbox */
/* Spacing */
/* Text */
/* Colors */
/* Effects */
/* Responsive *//**
 * Native AI Theme - Global Styles
 * Clean, modern, single-source CSS
 */

/* Import component styles */

/* Design Tokens Layer */
:root {
    /* Colors - Fully Dynamic */
    --nai-primary: var(--theme-primary, #0066cc);
    --nai-secondary: var(--theme-secondary, #ff6600);
    --nai-accent: var(--theme-accent, #00a86b);
    --nai-background: var(--theme-background, #ffffff);
    --nai-surface: var(--theme-surface, #f8f9fa);
    --nai-text: var(--theme-text, #212529);
    --nai-text-light: var(--theme-text-light, #6c757d);
    --nai-border: var(--theme-border, #dee2e6);
    --nai-error: var(--theme-error, #dc3545);
    --nai-success: var(--theme-success, #28a745);
    --nai-warning: var(--theme-warning, #ffc107);

    /* Typography */
    --nai-font-primary: var(--theme-font-primary, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif);
    --nai-font-heading: var(--theme-font-heading, var(--nai-font-primary));
    --nai-font-mono: var(--theme-font-mono, 'SFMono-Regular', Consolas, 'Liberation Mono', monospace);

    /* Font Sizes */
    --nai-text-xs: max(0.75rem, min(1.5vw, 0.875rem));
    --nai-text-sm: max(0.875rem, min(2vw, 1rem));
    --nai-text-base: max(1rem, min(2.5vw, 1.125rem));
    --nai-text-lg: max(1.125rem, min(3vw, 1.25rem));
    --nai-text-xl: max(1.25rem, min(3.5vw, 1.5rem));
    --nai-text-2xl: max(1.5rem, min(4vw, 2rem));
    --nai-text-3xl: max(1.875rem, min(5vw, 2.5rem));
    --nai-text-4xl: max(2.25rem, min(6vw, 3rem));
    --nai-text-5xl: max(3rem, min(8vw, 4rem));

    /* Spacing */
    --nai-space-xs: 0.25rem;
    --nai-space-sm: 0.5rem;
    --nai-space-md: 1rem;
    --nai-space-lg: 1.5rem;
    --nai-space-xl: 2rem;
    --nai-space-2xl: 3rem;
    --nai-space-3xl: 4rem;
    --nai-space-4xl: 6rem;

    /* Borders */
    --nai-radius-sm: 0.25rem;
    --nai-radius-md: 0.5rem;
    --nai-radius-lg: 0.75rem;
    --nai-radius-xl: 1rem;
    --nai-radius-full: 9999px;

    /* Shadows */
    --nai-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --nai-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --nai-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --nai-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --nai-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --nai-transition-fast: 150ms ease;
    --nai-transition-base: 250ms ease;
    --nai-transition-slow: 350ms ease;

    /* Z-index */
    --nai-z-dropdown: 1000;
    --nai-z-sticky: 1020;
    --nai-z-fixed: 1030;
    --nai-z-backdrop: 1040;
    --nai-z-modal: 1050;
    --nai-z-popover: 1060;
    --nai-z-tooltip: 1070;

    /* Container */
    --nai-container-xs: 576px;
    --nai-container-sm: 768px;
    --nai-container-md: 992px;
    --nai-container-lg: 1200px;
    --nai-container-xl: 1400px;
  }

/* Base Layer */
/* Reset */
*:not(#\#), *:not(#\#)::before, *:not(#\#)::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
html:not(#\#) {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
body:not(#\#) {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    font-family: var(--nai-font-primary);
    font-size: max(1rem, min(2.5vw, 1.125rem));
    font-size: var(--nai-text-base);
    line-height: 1.6;
    color: #212529;
    color: var(--nai-text);
    background-color: #ffffff;
    background-color: var(--nai-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
/* Typography */
h1:not(#\#), h2:not(#\#), h3:not(#\#), h4:not(#\#), h5:not(#\#), h6:not(#\#) {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    font-family: var(--nai-font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-bottom: var(--nai-space-md);
  }
h1:not(#\#) { font-size: max(3rem, min(8vw, 4rem)); font-size: var(--nai-text-5xl); }
h2:not(#\#) { font-size: max(2.25rem, min(6vw, 3rem)); font-size: var(--nai-text-4xl); }
h3:not(#\#) { font-size: max(1.875rem, min(5vw, 2.5rem)); font-size: var(--nai-text-3xl); }
h4:not(#\#) { font-size: max(1.5rem, min(4vw, 2rem)); font-size: var(--nai-text-2xl); }
h5:not(#\#) { font-size: max(1.25rem, min(3.5vw, 1.5rem)); font-size: var(--nai-text-xl); }
h6:not(#\#) { font-size: max(1.125rem, min(3vw, 1.25rem)); font-size: var(--nai-text-lg); }
p:not(#\#) {
    margin-bottom: 1rem;
    margin-bottom: var(--nai-space-md);
  }
a:not(#\#) {
    color: #0066cc;
    color: var(--nai-primary);
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: color 150ms ease;
    transition: color var(--nai-transition-fast);
  }
a:hover:not(#\#) {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }
img:not(#\#), video:not(#\#) {
    max-width: 100%;
    height: auto;
    display: block;
  }
button:not(#\#) {
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
  }

/* Components Layer */
/* Container */
.nai-container:not(#\#):not(#\#) {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-left: var(--nai-space-lg);
    padding-right: 1.5rem;
    padding-right: var(--nai-space-lg);
  }
@media (min-width: 576px) {
    .nai-container:not(#\#):not(#\#) { max-width: 576px; max-width: var(--nai-container-xs); }
  }
@media (min-width: 768px) {
    .nai-container:not(#\#):not(#\#) { max-width: 768px; max-width: var(--nai-container-sm); }
  }
@media (min-width: 992px) {
    .nai-container:not(#\#):not(#\#) { max-width: 992px; max-width: var(--nai-container-md); }
  }
@media (min-width: 1200px) {
    .nai-container:not(#\#):not(#\#) { max-width: 1200px; max-width: var(--nai-container-lg); }
  }
@media (min-width: 1400px) {
    .nai-container:not(#\#):not(#\#) { max-width: 1400px; max-width: var(--nai-container-xl); }
  }
/* Section */
.nai-section:not(#\#):not(#\#) {
    padding: 6rem 0;
    padding: var(--nai-space-4xl) 0;
  }
/* Button Base */
.nai-button:not(#\#):not(#\#) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    padding: var(--nai-space-sm) var(--nai-space-lg);
    font-weight: 500;
    border-radius: 0.5rem;
    border-radius: var(--nai-radius-md);
    border: 2px solid transparent;
    transition: all 250ms ease;
    transition: all var(--nai-transition-base);
    -webkit-text-decoration: none;
    text-decoration: none;
    cursor: pointer;
    font-size: max(1rem, min(2.5vw, 1.125rem));
    font-size: var(--nai-text-base);
    line-height: 1.5;
  }
.nai-button:hover:not(#\#):not(#\#) {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    box-shadow: var(--nai-shadow-md);
    -webkit-text-decoration: none;
    text-decoration: none;
  }
.nai-button--primary:not(#\#):not(#\#) {
    background-color: #0066cc;
    background-color: var(--nai-primary);
    color: white;
  }
.nai-button--secondary:not(#\#):not(#\#) {
    background-color: #ff6600;
    background-color: var(--nai-secondary);
    color: white;
  }
.nai-button--outline:not(#\#):not(#\#) {
    background-color: transparent;
    border-color: #0066cc;
    border-color: var(--nai-primary);
    color: #0066cc;
    color: var(--nai-primary);
  }
/* Card */
.nai-card:not(#\#):not(#\#) {
    background-color: #f8f9fa;
    background-color: var(--nai-surface);
    border-radius: 0.75rem;
    border-radius: var(--nai-radius-lg);
    padding: 2rem;
    padding: var(--nai-space-xl);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    box-shadow: var(--nai-shadow-sm);
    transition: box-shadow 250ms ease;
    transition: box-shadow var(--nai-transition-base);
  }
.nai-card:hover:not(#\#):not(#\#) {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    box-shadow: var(--nai-shadow-lg);
  }
/* Grid */
.nai-grid:not(#\#):not(#\#) {
    display: grid;
    grid-gap: 2rem;
    grid-gap: var(--nai-space-xl);
    gap: 2rem;
    gap: var(--nai-space-xl);
  }
.nai-grid--2:not(#\#):not(#\#) {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
.nai-grid--3:not(#\#):not(#\#) {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
.nai-grid--4:not(#\#):not(#\#) {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

/* Utilities Layer */
/* Display */
.nai-hidden:not(#\#) { display: none !important; }
.nai-block:not(#\#) { display: block !important; }
.nai-inline-block:not(#\#) { display: inline-block !important; }
.nai-flex:not(#\#) { display: flex !important; }
.nai-inline-flex:not(#\#) { display: inline-flex !important; }
.nai-grid:not(#\#) { display: grid !important; }
/* Flexbox */
.nai-items-center:not(#\#) { align-items: center !important; }
.nai-items-start:not(#\#) { align-items: flex-start !important; }
.nai-items-end:not(#\#) { align-items: flex-end !important; }
.nai-justify-center:not(#\#) { justify-content: center !important; }
.nai-justify-between:not(#\#) { justify-content: space-between !important; }
.nai-justify-around:not(#\#) { justify-content: space-around !important; }
/* Spacing */
.nai-m-0:not(#\#) { margin: 0 !important; }
.nai-m-auto:not(#\#) { margin: auto !important; }
.nai-mx-auto:not(#\#) { margin-left: auto !important; margin-right: auto !important; }
.nai-my-auto:not(#\#) { margin-top: auto !important; margin-bottom: auto !important; }
.nai-p-0:not(#\#) { padding: 0 !important; }
.nai-p-sm:not(#\#) { padding: 0.5rem !important; padding: var(--nai-space-sm) !important; }
.nai-p-md:not(#\#) { padding: 1rem !important; padding: var(--nai-space-md) !important; }
.nai-p-lg:not(#\#) { padding: 1.5rem !important; padding: var(--nai-space-lg) !important; }
.nai-p-xl:not(#\#) { padding: 2rem !important; padding: var(--nai-space-xl) !important; }
/* Text */
.nai-text-center:not(#\#) { text-align: center !important; }
.nai-text-left:not(#\#) { text-align: left !important; }
.nai-text-right:not(#\#) { text-align: right !important; }
.nai-font-bold:not(#\#) { font-weight: 700 !important; }
.nai-font-semibold:not(#\#) { font-weight: 600 !important; }
.nai-font-medium:not(#\#) { font-weight: 500 !important; }
.nai-font-normal:not(#\#) { font-weight: 400 !important; }
/* Colors */
.nai-text-primary:not(#\#) { color: #0066cc !important; color: var(--nai-primary) !important; }
.nai-text-secondary:not(#\#) { color: #ff6600 !important; color: var(--nai-secondary) !important; }
.nai-text-light:not(#\#) { color: #6c757d !important; color: var(--nai-text-light) !important; }
.nai-bg-primary:not(#\#) { background-color: #0066cc !important; background-color: var(--nai-primary) !important; }
.nai-bg-secondary:not(#\#) { background-color: #ff6600 !important; background-color: var(--nai-secondary) !important; }
.nai-bg-surface:not(#\#) { background-color: #f8f9fa !important; background-color: var(--nai-surface) !important; }
/* Effects */
.nai-shadow-sm:not(#\#) { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06) !important; box-shadow: var(--nai-shadow-sm) !important; }
.nai-shadow-md:not(#\#) { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06) !important; box-shadow: var(--nai-shadow-md) !important; }
.nai-shadow-lg:not(#\#) { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05) !important; box-shadow: var(--nai-shadow-lg) !important; }
.nai-rounded:not(#\#) { border-radius: 0.5rem !important; border-radius: var(--nai-radius-md) !important; }
.nai-rounded-lg:not(#\#) { border-radius: 0.75rem !important; border-radius: var(--nai-radius-lg) !important; }
.nai-rounded-full:not(#\#) { border-radius: 9999px !important; border-radius: var(--nai-radius-full) !important; }
/* Responsive */
@media (max-width: 768px) {
    .nai-mobile-hidden:not(#\#) { display: none !important; }
  }
@media (min-width: 768px) {
    .nai-desktop-hidden:not(#\#) { display: none !important; }
  }

/*# sourceMappingURL=main.css.map*/