/* ========================================
   HONEYWEALTH - MODERN DESIGN SYSTEM
   ======================================== */

:root {
  /* Color Palette - Modern Dark Theme with Gold Accents */
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-tertiary: #1a2234;
  --bg-card: rgba(22, 30, 48, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-strong: rgba(255, 255, 255, 0.08);
  
  --accent-primary: #f59e0b;
  --accent-secondary: #fbbf24;
  --accent-tertiary: #fcd34d;
  --accent-glow: rgba(245, 158, 11, 0.4);
  --accent-glow-strong: rgba(245, 158, 11, 0.6);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-primary: rgba(245, 158, 11, 0.2);
  --border-secondary: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(245, 158, 11, 0.4);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 32px rgba(245, 158, 11, 0.15);
  --shadow-glow-strong: 0 0 48px rgba(245, 158, 11, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  
  --container-max: 1280px;
  --header-height: 60px;
}

/* Light theme variables (for future use) */
/* Light Theme Variables */
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(0, 0, 0, 0.03);
  --bg-glass-strong: rgba(0, 0, 0, 0.06);
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  
  --border-primary: rgba(245, 158, 11, 0.35);
  --border-secondary: rgba(0, 0, 0, 0.08);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Button Styles */
.navbar__theme-toggle {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.theme-toggle-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-secondary);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.theme-toggle-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--border-primary);
  transform: scale(1.05);
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.theme-toggle-icon--sun {
  display: block;
}
.theme-toggle-icon--moon {
  display: none;
}

[data-theme="light"] .theme-toggle-icon--sun {
  display: none;
}
[data-theme="light"] .theme-toggle-icon--moon {
  display: block;
}

[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #d97706;
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: rgba(245, 158, 11, 0.15);
}

/* Light Theme Component Overrides */
[data-theme="light"] body {
  background: #f8fafc;
  color: #0f172a;
}

[data-theme="light"] .topbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .header-navbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .site-header--scrolled .header-navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav-link {
  color: #334155;
}

[data-theme="light"] .nav-link:hover {
  color: var(--accent-primary);
  background: rgba(245, 158, 11, 0.1);
}

[data-theme="light"] .dropdown__menu {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .dropdown__item {
  color: #0f172a;
}

[data-theme="light"] .dropdown__item:hover {
  background: rgba(245, 158, 11, 0.08);
}

[data-theme="light"] .hero {
  background: #f8fafc;
}

[data-theme="light"] .hero__bg-gradient {
  background: 
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="light"] .hero__logo-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.1), 0 0 40px rgba(245, 158, 11, 0.15);
}

[data-theme="light"] .hero__floating-badge {
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .trust-ticker {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .service-card,
[data-theme="light"] .stat-item,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .contact__detail,
[data-theme="light"] .contact__form-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
  background: #f8fafc;
  color: #0f172a;
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
  background: #ffffff;
  border-color: var(--accent-primary);
}

[data-theme="light"] .modal__container {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESET & BASE
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 0%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-secondary), var(--accent-tertiary));
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.display-1 { font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; letter-spacing: -0.03em; }
.display-2 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
.display-3 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.01em; }
.display-4 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; }
.h1 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
.h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; }
.h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 600; }
.h4 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; }

.lead { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 400; color: var(--text-secondary); line-height: 1.7; }

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 50%, var(--text-primary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.section { padding: 3.25rem 0; position: relative; }
.section--lg { padding: 4.25rem 0; }
.section--xl { padding: 5rem 0; }

@media (max-width: 768px) {
  .section { padding: 2.25rem 0; }
  .section--lg { padding: 2.75rem 0; }
  .section--xl { padding: 3.25rem 0; }
}

.grid { display: grid; gap: 1.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-cols-4, .grid-cols-3, .grid-cols-2 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   ANIMATION KEYFRAMES
   ======================================== */

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

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-5deg) scale(0.9); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes slideUpReveal {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 40px var(--accent-glow-strong), 0 0 60px var(--accent-glow); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-15px) translateX(5px); }
  50% { transform: translateY(-5px) translateX(-10px); }
  75% { transform: translateY(-20px) translateX(0); }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--border-primary); box-shadow: 0 0 0 1px var(--border-primary); }
  50% { border-color: var(--accent-primary); box-shadow: 0 0 20px var(--accent-glow), 0 0 0 1px var(--accent-primary); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineDraw {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ========================================
   ANIMATION CLASSES
   ======================================== */

.animate-fade-up { animation: fadeInUp 0.8s var(--transition-base) forwards; opacity: 1; }
.animate-fade-down { animation: fadeInDown 0.8s var(--transition-base) forwards; opacity: 1; }
.animate-fade-left { animation: fadeInLeft 0.8s var(--transition-base) forwards; opacity: 1; }
.animate-fade-right { animation: fadeInRight 0.8s var(--transition-base) forwards; opacity: 1; }
.animate-scale-in { animation: scaleIn 0.6s var(--transition-bounce) forwards; opacity: 1; }
.animate-rotate-in { animation: rotateIn 0.8s var(--transition-bounce) forwards; opacity: 1; }
.animate-slide-up { animation: slideUpReveal 1s var(--transition-slow) forwards; opacity: 1; }

.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }
.delay-4 { animation-delay: 400ms; }
.delay-5 { animation-delay: 500ms; }
.delay-6 { animation-delay: 600ms; }
.delay-7 { animation-delay: 700ms; }
.delay-8 { animation-delay: 800ms; }
.delay-9 { animation-delay: 900ms; }
.delay-10 { animation-delay: 1000ms; }

/* Stagger children */
.stagger-children > * { opacity: 1; animation: fadeInUp 0.6s var(--transition-base) forwards; }
.stagger-children > *:nth-child(1) { animation-delay: 100ms; }
.stagger-children > *:nth-child(2) { animation-delay: 200ms; }
.stagger-children > *:nth-child(3) { animation-delay: 300ms; }
.stagger-children > *:nth-child(4) { animation-delay: 400ms; }
.stagger-children > *:nth-child(5) { animation-delay: 500ms; }
.stagger-children > *:nth-child(6) { animation-delay: 600ms; }
.stagger-children > *:nth-child(7) { animation-delay: 700ms; }
.stagger-children > *:nth-child(8) { animation-delay: 800ms; }
.stagger-children > *:nth-child(9) { animation-delay: 900ms; }
.stagger-children > *:nth-child(10) { animation-delay: 1000ms; }

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before { opacity: 1; }

.btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--bg-primary);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
}

.btn--secondary {
  background: var(--bg-glass-strong);
  color: var(--text-primary);
  border: 1px solid var(--border-secondary);
  backdrop-filter: blur(10px);
}

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

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

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

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

.btn--ghost:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.btn--lg { padding: 1.25rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn--xl { padding: 1.5rem 3rem; font-size: 1.125rem; }

.btn-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition-base); }
.btn:hover .btn-icon { transform: translateX(4px); }

.btn--magnetic {
  position: relative;
}

.btn--magnetic::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  filter: blur(8px);
  transition: opacity var(--transition-base);
  z-index: -1;
}

.btn--magnetic:hover::after { opacity: 0.4; }

/* ========================================
   CARDS
   ======================================== */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  backdrop-filter: blur(20px);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.card--interactive {
  cursor: pointer;
}

.card--interactive:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image { transform: scale(1.05); }

.card__body { padding: 1.75rem; display: flex; flex-direction: column; height: 100%; }

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.card:hover .card__title { color: var(--accent-primary); }

.card__text {
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-size: 0.9375rem;
}

.card__footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__link {
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.card__link:hover { gap: 0.75rem; }

/* ========================================
   NAVBAR & SITE HEADER
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  z-index: 2000;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar {
  background: rgba(10, 14, 23, 0.98);
  border-bottom: 1px solid var(--border-secondary);
  padding: 0.3rem 0;
  font-size: 0.72rem;
  backdrop-filter: blur(20px);
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  max-height: 100px;
  opacity: 1;
}

.site-header--scrolled .topbar {
  max-height: 0;
  opacity: 0;
  padding: 0;
  border-bottom: none;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.5rem; }

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--text-muted);
  font-weight: 500;
}

.topbar__link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.topbar__link:hover { color: var(--accent-primary); }

.header-navbar {
  position: relative;
  z-index: 2001;
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.site-header--scrolled .header-navbar {
  background: rgba(10, 14, 23, 0.98);
  border-bottom: 1px solid var(--border-secondary);
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 2rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform var(--transition-base);
}

.brand-logo:hover { transform: scale(1.02); }

.brand-logo__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.brand-logo__icon img { width: 100%; height: 100%; border-radius: var(--radius-sm); object-fit: cover; }

.brand-logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-logo__sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.navbar__menu { display: flex; align-items: center; gap: 0.5rem; list-style: none; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-primary);
  background: rgba(245, 158, 11, 0.08);
}

.navbar__cta { margin-left: 1rem; }

.navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-secondary);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.navbar__toggle:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-primary);
}

.navbar__toggle-icon {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: background var(--transition-base);
}

.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-base);
}

.navbar__toggle-icon::before { top: -7px; }
.navbar__toggle-icon::after { bottom: -7px; }

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon { background: transparent; }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::before { transform: rotate(45deg) translate(0, 0); top: 0; }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::after { transform: rotate(-45deg) translate(0, 0); bottom: 0; }

/* Dropdown */
.navbar__dropdown { position: relative; }

.dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #0a0e17;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.dropdown__toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
}

.dropdown__arrow {
  transition: transform var(--transition-base);
}

.dropdown__toggle[aria-expanded="true"] .dropdown__arrow,
.navbar__dropdown:hover .dropdown__arrow {
  transform: rotate(180deg);
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 0.625rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  z-index: 100;
}

.navbar__dropdown:hover .dropdown__menu,
.navbar__dropdown:focus-within .dropdown__menu,
.dropdown__menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__item {
  display: block;
  padding: 0.85rem 1.15rem;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.dropdown__item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.dropdown__item:hover {
  background: rgba(245, 158, 11, 0.12);
  border-left-color: var(--accent-primary);
  padding-left: 1.35rem;
}

.dropdown__item:hover .dropdown__item-title {
  color: var(--accent-primary);
}

@media (max-width: 991px) {
  .navbar__toggle { display: flex; }
  
  .navbar__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: calc(100vh - var(--header-height));
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-secondary);
    padding: 1.5rem 1.25rem 2.5rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 2500;
    overflow-y: auto;
    border-radius: 0;
    box-sizing: border-box !important;
  }
  
  .navbar__menu--open { display: flex !important; }
  
  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-secondary);
  }
  
  .about__bg-shape {
    display: none !important;
  }
  
  .navbar__dropdown { width: 100%; }
  
  .dropdown__menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--bg-glass);
  }

  .dropdown__menu--open {
    display: block !important;
  }
  
  .dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-glass-strong);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    box-shadow: none;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 1.75rem);
  padding-bottom: 1.5rem;
  overflow: hidden;
  background: #070a12;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #070a12 0%, #0c111d 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245, 158, 11, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero__particles, .hero__gold-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__mouse-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(650px circle at var(--mouse-x, 50%) var(--mouse-y, 40%), rgba(245, 158, 11, 0.12), transparent 45%);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero__logo-card {
  position: relative;
  width: 66.666%;
  max-width: 820px;
  min-width: 320px;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.8) 100%);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 32px;
  box-shadow: 
    0 30px 80px -15px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(245, 158, 11, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero__logo-card:hover {
  box-shadow: 
    0 35px 85px -15px rgba(0, 0, 0, 0.9),
    0 0 75px rgba(245, 158, 11, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
  border-color: rgba(245, 158, 11, 0.55);
}

.hero__logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, rgba(251, 191, 36, 0.15) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.hero__logo-frame {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 2.25rem 3.5rem;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  transition: transform 0.3s ease;
}

.hero__logo-card:hover .hero__logo-frame {
  transform: scale(1.025);
}

.hero__large-logo {
  width: 100%;
  height: auto;
  max-height: 210px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.hero__floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(10, 14, 23, 0.94);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.hero__floating-badge--top {
  top: -18px;
  right: 24px;
  animation: badgeFloat1 5s ease-in-out infinite alternate;
}

.hero__floating-badge--bottom-left {
  bottom: -18px;
  left: 24px;
  animation: badgeFloat2 5s ease-in-out infinite alternate;
}

.hero__floating-badge--bottom-right {
  bottom: -18px;
  right: 24px;
  animation: badgeFloat1 5s ease-in-out infinite alternate 1s;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}

@keyframes pulseGlow {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes badgeFloat1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes badgeFloat2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__content {
    align-items: center;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    margin-top: 0.5rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 0.75rem;
  backdrop-filter: blur(12px);
}

.hero__badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
}

.hero__badge-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
}

.hero__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.45;
  max-width: 680px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero__metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.125rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}

.hero__metric { text-align: center; }

.hero__metric-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero__metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.hero__metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border-secondary);
}

@media (max-width: 640px) {
  .hero__metric-divider { display: none; }
  .hero__metrics { gap: 1.5rem; flex-direction: column; }
}

.hero__metric-value {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero__metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.hero__metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border-secondary);
}

/* Interactive SIP Wealth Calculator Card */
.hero-calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.hero-calc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.hero-calc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.calc-presets {
  display: flex;
  gap: 0.375rem;
}

.preset-btn {
  padding: 0.35rem 0.65rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.preset-btn:hover, .preset-btn--active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

.hero-calc-card__badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.hero-calc-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-calc-card__desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-calc-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-field { display: flex; flex-direction: column; gap: 0.375rem; }

.calc-field__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.calc-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-secondary);
}

.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-tertiary);
  outline: none;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.calc-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: var(--text-dim);
}

/* Compounding Bar */
.calc-bar-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.calc-compounding-bar {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: var(--bg-tertiary);
  display: flex;
  overflow: hidden;
}

.calc-bar-fill {
  height: 100%;
  transition: width 0.3s ease;
}

.calc-bar-fill--invested {
  background: #64748b;
}

.calc-bar-fill--gains {
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.calc-bar-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot--invested { background: #64748b; }
.legend-dot--gains { background: var(--accent-primary); }

.legend-item strong {
  color: var(--text-primary);
}

.calc-results {
  margin-top: 0.25rem;
}

.calc-result-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.calc-result-box--highlight {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--border-primary);
}

.calc-result-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.calc-result-box--highlight .calc-result-value {
  color: var(--accent-secondary);
}

.calc-cta-btn {
  margin-top: 0.5rem;
  justify-content: center;
}

/* Live Institutional Trust Ticker */
.trust-ticker {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-secondary);
  border-bottom: 1px solid var(--border-secondary);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 15;
}

.trust-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: tickerScroll 35s linear infinite;
}

.trust-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orb,
  .hero__top-line,
  .hero__corner {
    animation: none !important;
    opacity: 0.3;
  }
  .hero__top-line { transform: scaleX(1); }
  .hero__corner { transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s var(--transition-base) forwards;
  opacity: 0;
}

.hero__badge-icon {
  width: 16px;
  height: 16px;
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero__title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--transition-base) 100ms forwards;
  opacity: 0;
}

.hero__title-line { display: block; }

.hero__title-accent {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--transition-base) 200ms forwards;
  opacity: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s var(--transition-base) 300ms forwards;
  opacity: 0;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  animation: fadeInUp 0.8s var(--transition-base) 400ms forwards;
  opacity: 0;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s var(--transition-base) 800ms forwards;
  opacity: 0;
}

.hero__scroll-icon {
  width: 24px;
  height: 24px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ========================================
   SECTION HEADER
   ======================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.25rem;
}

.section-header__tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.section-header__title { margin-bottom: 1rem; }

.section-header__desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services { background: var(--bg-secondary); }

/* Services Category Tabs */
.services__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.services__tab-btn {
  padding: 0.65rem 1.25rem;
  min-height: 44px;
  background: var(--bg-glass);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services__tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-primary);
  background: var(--bg-glass-strong);
}

.services__tab-btn.active {
  background: var(--accent-gradient);
  color: #0a0e17;
  border-color: transparent;
  font-weight: 600;
  box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.service-card__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  margin-top: auto;
  font-weight: 600;
}

.services__grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.service-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-base);
  filter: grayscale(0.2) contrast(1.1);
}

.service-card:hover .service-card__image {
  transform: scale(1.1);
  filter: grayscale(0) contrast(1.15);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 23, 0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-card__overlay { opacity: 1; }

.service-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.875rem;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  backdrop-filter: blur(10px);
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-base);
}

.service-card:hover .service-card__tag {
  transform: translateY(0);
  opacity: 1;
}

.service-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color var(--transition-base);
}

.service-card:hover .service-card__title { color: var(--accent-primary); }

.service-card__desc {
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-secondary);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 1;
  transform: translateX(0);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__feature {
  transform: translateX(4px);
  color: var(--text-primary);
}

.service-card__feature:nth-child(1) { transition-delay: 100ms; }
.service-card__feature:nth-child(2) { transition-delay: 150ms; }
.service-card__feature:nth-child(3) { transition-delay: 200ms; }

.service-card__feature-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: gap var(--transition-base);
}

.service-card__link:hover { gap: 0.875rem; }

/* ========================================
   ABOUT SECTION
   ======================================== */

.about { position: relative; overflow: hidden; }

.about__container-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-2xl);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(20px);
  position: relative;
}

[data-theme="light"] .about__container-inner {
  background: #ffffff;
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.about__bg-shape {
  position: absolute;
  top: -100px;
  right: 0;
  width: 500px;
  max-width: 100%;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__content { position: relative; }

.about__badge { margin-bottom: 1.5rem; }

.about__title { margin-bottom: 1.5rem; line-height: 1.2; }

.about__desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about__highlights {
  display: flex;
  gap: 1.25rem;
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.about__highlight:hover {
  border-color: var(--border-primary);
  background: var(--bg-glass-strong);
  transform: translateX(8px);
}

.about__highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

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

.about__highlight-text { font-weight: 500; color: var(--text-secondary); line-height: 1.6; }

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.about__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.about__image-wrapper:hover .about__image { transform: scale(1.02); }

.about__image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.about__image-wrapper:hover .about__image-glow { opacity: 1; }

.about__experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(20px);
}

.about__experience-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about__experience-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

@media (max-width: 991px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-wrapper { max-width: 600px; margin: 0 auto; }
  .about__experience { position: static; margin-top: 2rem; }
}

/* ========================================
   STATS / COUNTERS
   ======================================== */

.stats { position: relative; }

.stats__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  z-index: -1;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.stat-item:hover {
  border-color: var(--border-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.stat-item:hover::before { transform: scaleX(1); }

.stat-item__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .stat-item {
    padding: 1.5rem 0.85rem;
  }
  .stat-item__value {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 0.35rem;
  }
  .stat-item__label {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials { background: var(--bg-secondary); }

.testimonials__carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform var(--transition-slow);
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  backdrop-filter: blur(20px);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
  border-radius: 0 0 var(--radius-full) var(--radius-full);
}

.testimonial-card__quote {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-card__quote::before,
.testimonial-card__quote::after {
  content: '"';
  color: var(--accent-primary);
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.3;
  position: absolute;
}

.testimonial-card__quote::before { top: -1.5rem; left: -1rem; }
.testimonial-card__quote::after { bottom: -2.5rem; right: -1rem; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
}

.testimonial-card__info { text-align: left; }

.testimonial-card__name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.testimonials__btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.testimonials__btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-secondary);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.testimonials__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 44px;
  min-height: 44px;
}

.testimonials__dot--active {
  background: var(--accent-primary);
  width: 28px;
  box-shadow: var(--shadow-glow);
}

.testimonials__dot:hover:not(.testimonials__dot--active) {
  background: var(--border-primary);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq { position: relative; }

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(20px);
}

.faq-item:hover {
  border-color: var(--border-primary);
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-base);
}

.faq-item__question:hover { color: var(--accent-primary); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item--open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-item__answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.9375rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta {
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 70%),
    linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  z-index: -1;
}

.cta__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245, 158, 11, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -1;
}

.cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__title { margin-bottom: 1rem; }

.cta__desc {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ========================================
   CONTACT / VISIT SECTION
   ======================================== */

.contact { background: var(--bg-secondary); }

.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact__info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact__title { margin-bottom: 0.5rem; font-size: 1.5rem; }

.cta__desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.5; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact__detail:hover {
  border-color: var(--border-primary);
  transform: translateX(4px);
}

.contact__detail-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

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

.contact__detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact__detail-value {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact__detail-value:hover { color: var(--accent-primary); }

.contact__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.contact__map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  flex: 1;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.contact__map {
  width: 100%;
  height: 100%;
  min-height: 180px;
  flex: 1;
  border: none;
  display: block;
  filter: none;
  transition: filter var(--transition-base);
}

.contact__map-wrapper:hover .contact__map { filter: grayscale(0) contrast(1.1); }

.contact__map-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.contact__map-wrapper:hover .contact__map-glow { opacity: 1; }

@media (max-width: 991px) {
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__info { position: static; }
  .contact__map { height: 260px; }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-secondary);
  padding: 1.75rem 0;
  position: relative;
}

.footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0.5;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand { display: flex; align-items: center; gap: 0.75rem; }

.footer__logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo img { width: 100%; height: 100%; border-radius: var(--radius-sm); object-fit: cover; }

.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer__copyright {
  color: var(--text-dim);
  font-size: 0.875rem;
}

.footer__links { display: flex; gap: 2rem; }

.footer__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--accent-primary); }

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

/* ========================================
   FLOATING ACTION BUTTON
   ======================================== */

.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all var(--transition-base);
}

.fab--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
}

.fab:active { transform: translateY(0) scale(0.95); }

.fab__icon { width: 24px; height: 24px; color: var(--bg-primary); }

.fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.fab:hover .fab__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ========================================
   LOADING STATES
   ======================================== */

.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-glass-strong) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-sm);
}

.skeleton-text:last-child { width: 60%; }

.skeleton-title { height: 2rem; width: 50%; margin-bottom: 1rem; }

.skeleton-card { height: 400px; border-radius: var(--radius-lg); }

/* ========================================
   UTILITY CLASSES
   ======================================== */

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.backdrop-blur { backdrop-filter: blur(10px); }
.backdrop-blur-strong { backdrop-filter: blur(20px); }

.transition-fast { transition: all var(--transition-fast); }
.transition-base { transition: all var(--transition-base); }
.transition-slow { transition: all var(--transition-slow); }
.transition-bounce { transition: all var(--transition-bounce); }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

/* Consultation Form */
.contact__form-wrapper { width: 100%; }

.contact__form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  position: relative;
}

.contact__subtitle {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact__form-card { padding: 1.5rem; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  outline: none;
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-secondary);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' 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 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  display: none;
  margin-top: 0.25rem;
}

.form-group--error .form-control,
.form-group--error .form-select {
  border-color: #ef4444;
}

.form-group--error .form-error {
  display: block;
}

.form-banner-notice {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.form-banner-notice--success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
}

.form-banner-notice--error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

/* Floating Toast Popup Dialog */
.toast-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99999;
  max-width: 420px;
  width: calc(100% - 4rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-popup--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.toast-popup__content {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  backdrop-filter: blur(20px);
}

.toast-popup--success .toast-popup__content {
  border-color: rgba(16, 185, 129, 0.5);
}

.toast-popup--error .toast-popup__content {
  border-color: rgba(239, 68, 68, 0.5);
}

.toast-popup__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-popup--success .toast-popup__icon {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.toast-popup--error .toast-popup__icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.toast-popup--loading .toast-popup__icon {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-primary);
}

/* Loading Spinner */
.loading-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(245, 158, 11, 0.2);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Phone Call Popup Modal */
.call-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.call-modal--open {
  opacity: 1;
  visibility: visible;
}

.call-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(14px);
}

.call-modal__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  text-align: center;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.call-modal--open .call-modal__content {
  transform: scale(1);
}

.call-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.call-modal__close:hover { color: var(--text-primary); }

.call-modal__pulse-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 18px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.call-modal__badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.call-modal__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.call-modal__number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-secondary);
  margin-bottom: 0.25rem;
}

.call-modal__hours {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.75rem;
}

.call-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast-popup__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.toast-popup__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.toast-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color var(--transition-fast);
}

.toast-popup__close:hover {
  color: var(--text-primary);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.video-modal--open {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(16px);
}

.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
  z-index: 10;
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.video-modal--open .video-modal__content {
  transform: scale(1);
}

.video-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-secondary);
  color: var(--text-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 20;
}

.video-modal__close:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  transform: rotate(90deg);
}

.video-modal__header {
  margin-bottom: 1rem;
}

.video-modal__title {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.video-modal__player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;
}

.video-modal__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.navbar__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Global Mobile Overflow & Unified Width Alignment */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.header-navbar, .topbar {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Print styles */
@media print {
  .topbar, .header-navbar, .fab, .hero__scroll, .video-modal { display: none !important; }
  .hero { min-height: auto; padding-top: 0; }
  .section { page-break-inside: avoid; }
  body { background: white; color: black; }
  .card, .stat-item, .faq-item { border: 1px solid #ccc; box-shadow: none; }
}

/* ========================================
   MOBILE & TABLET RESPONSIVE ENHANCEMENTS (<= 991px)
   ======================================== */

@media (max-width: 991px) {
  /* Strict Container Alignment Across Header & Sections */
  .container,
  .navbar__inner,
  .topbar__inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Hide topbar on mobile to give full clean width to sticky navbar header */
  .topbar {
    display: none !important;
  }

  :root {
    --header-height: 56px;
  }

  /* Header & Navigation */
  .header-navbar {
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: var(--header-height);
  }

  .navbar__inner {
    height: var(--header-height);
    width: 100% !important;
  }

  .brand-logo {
    max-width: calc(100% - 100px);
  }

  .brand-logo__text {
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-logo__sub {
    font-size: 0.55rem;
  }

  .brand-logo__icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }

  .navbar__controls {
    gap: 0.4rem;
  }

  .navbar__toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .theme-toggle-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  /* Improvised Mobile Drawer Menu */
  .navbar__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: calc(100vh - var(--header-height));
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-secondary);
    padding: 1.25rem 1rem 2rem;
    display: none;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: var(--shadow-lg);
    z-index: 2500;
    overflow-y: auto;
    border-radius: 0;
    box-sizing: border-box !important;
  }

  .navbar__menu--open {
    display: flex !important;
  }

  [data-theme="light"] .navbar__menu {
    background: rgba(255, 255, 255, 0.98);
    border-top-color: rgba(0, 0, 0, 0.1);
  }

  .navbar__menu li {
    width: 100% !important;
    display: block !important;
  }

  .nav-link {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0.9rem 1.25rem !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    border-radius: var(--radius-md) !important;
    background: var(--bg-glass) !important;
    border: 1px solid var(--border-secondary) !important;
    color: var(--text-primary) !important;
    box-sizing: border-box !important;
  }

  .navbar__cta {
    width: 100%;
    margin-top: 0.75rem;
    margin-left: 0;
  }

  .navbar__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    box-sizing: border-box !important;
  }

  .dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-md);
    box-sizing: border-box !important;
  }

  /* Hero Section & Logo Card Mobile Containment */
  .hero {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 1.75rem;
  }

  .hero__container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .hero__visual {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .hero__logo-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 1.25rem 0.85rem !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
  }

  .hero__logo-frame {
    padding: 0.85rem !important;
    min-height: 130px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero__large-logo {
    max-height: 110px !important;
    max-width: 85% !important;
  }

  .hero__floating-badge {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0.75rem auto 0 auto !important;
    display: inline-flex !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 0.72rem !important;
    box-sizing: border-box !important;
  }

  .hero__logo-glow {
    width: 200px !important;
    height: 200px !important;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-header__title {
    font-size: 1.6rem;
  }

  .section-header__desc {
    font-size: 0.9rem;
  }

  /* About Section Mobile Optimizations */
  .about__container-inner {
    padding: 2rem 1.15rem !important;
    border-radius: var(--radius-xl) !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-secondary) !important;
  }

  .about__desc {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1.5rem !important;
    color: var(--text-secondary) !important;
  }

  .about__highlights {
    flex-direction: column !important;
    gap: 0.85rem !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }

  .about__highlight {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.9rem 1rem !important;
    background: var(--bg-glass-strong) !important;
    border: 1px solid var(--border-primary) !important;
    border-radius: var(--radius-md) !important;
    align-items: center !important;
    text-align: left !important;
  }

  .about__highlight-icon {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
  }

  .about__highlight-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .about__highlight-text {
    font-size: 0.875rem !important;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
  }

  .about__grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }

  .about__image-column {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .about__image-wrapper {
    width: 100% !important;
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
    border: 1px solid var(--border-secondary) !important;
    box-shadow: var(--shadow-lg) !important;
    background: var(--bg-card) !important;
  }

  .about__image {
    width: 100% !important;
    height: auto !important;
    max-height: 280px !important;
    object-fit: cover !important;
  }

  .about__experience {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: -25px auto 0 !important;
    width: fit-content !important;
    min-width: 200px !important;
    padding: 1.25rem 1.75rem !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-primary) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg), var(--shadow-glow) !important;
    z-index: 10 !important;
  }

  /* Services Grid */
  .services__grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.25rem;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .service-card__image-wrapper {
    height: 170px;
  }

  /* Compound Calculator */
  .calculator__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .calculator__card {
    padding: 1.25rem;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Form & Contact Info */
  .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .contact__form-card {
    padding: 1.25rem;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .contact__map {
    height: 220px !important;
  }

  /* Testimonials, Footer & Modals */
  .testimonial-card {
    padding: 1.25rem;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .testimonial-card__quote {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .footer__inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  .footer__links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.85rem !important;
  }

  .modal__container {
    padding: 1.25rem;
    width: 92%;
    border-radius: var(--radius-lg);
    box-sizing: border-box !important;
  }
}
}