/* ==========================================================================
   WEBYFIED GLOBAL - CORE DESIGN SYSTEM & MASTER STYLESHEET
   Domain: https://webyfied.com
   Typography, Color Hierarchy, Full-Width Mega Menus, Layout & Utilities
   Strictly Zero Em-Dashes and En-Dashes in Source and Copy
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-primary: #4f46e5;
  --color-primary-dark: #3730a3;
  --color-primary-light: #6366f1;
  --color-purple: #7c3aed;
  --color-purple-dark: #5b21b6;
  --color-accent: #f97316;
  --color-accent-hover: #ea580c;
  --color-pink: #ec4899;

  /* Gradient Definitions */
  --grad-brand: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #f97316 100%);
  --grad-brand-subtle: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.06) 50%, rgba(249, 115, 22, 0.05) 100%);
  --grad-dark: linear-gradient(180deg, #0a0f1d 0%, #0f172a 100%);
  --grad-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

  /* Neutrals & Surfaces */
  --bg-page: #ffffff;
  --bg-surface: #f8fafc;
  --bg-surface-elevated: #ffffff;
  --bg-dark: #0a0f1d;
  --bg-dark-card: #131b2e;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #1e293b;

  /* Typography Colors */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-inverse: #ffffff;
  --text-inverse-muted: #94a3b8;

  /* Typography System */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 25px rgba(124, 58, 237, 0.25);

  /* Layout Constants */
  --container-max: 1280px;
  --container-pad: clamp(16px, 4vw, 32px);
  --header-height: 80px;
  --utility-height: 38px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: var(--text-main);
}

img, svg, picture {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Accessibility: Skip Link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}
.skip-to-content:focus {
  top: 20px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container-wide {
  max-width: 1440px;
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.utility-bar {
  background: linear-gradient(180deg, #0a0e1c 0%, #060913 100%);
  color: #94a3b8;
  font-size: 0.78125rem;
  letter-spacing: 0.015em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--utility-height);
  position: relative;
  z-index: 1001;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  white-space: nowrap;
}

.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.utility-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.78125rem;
  white-space: nowrap;
}

.utility-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot 2.2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.utility-divider {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
  flex-shrink: 0;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.utility-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: currentColor;
}

.utility-item:hover {
  color: #ffffff;
}

.utility-item-phone {
  color: #cbd5e1;
  font-weight: 600;
}

.utility-item-phone:hover {
  color: #38bdf8;
}

.utility-pill-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.utility-pill-whatsapp svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: currentColor;
}

.utility-pill-whatsapp:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.utility-item-accent {
  color: #e2e8f0;
  font-weight: 600;
}

.utility-item-accent:hover {
  color: var(--primary-light);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}

.nav-item {
  position: static; /* Vital for full-width mega menu */
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  height: 100%;
}

.nav-link:hover,
.nav-item:hover .nav-link,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--color-primary);
  background-color: rgba(79, 70, 229, 0.06);
}

.nav-arrow {
  width: 10px;
  height: 6px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* ==========================================================================
   FEATURE RICH FULL-WIDTH MEGA MENU ARCHITECTURE
   ========================================================================== */
.mega-menu-fullwidth {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 2px solid var(--border-light);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 999;
}

.nav-item:hover .mega-menu-fullwidth,
.nav-item:focus-within .mega-menu-fullwidth {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px var(--container-pad) 36px;
}

.mega-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.mega-grid-5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 280px;
  gap: 28px;
}

.mega-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border-light);
}

.mega-link-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-card {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.mega-card:hover {
  background-color: #f8fafc;
  border-color: var(--border-light);
  transform: translateX(4px);
}

.mega-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

.mega-icon-pill {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-icon-pill svg {
  width: 14px;
  height: 14px;
}

.mega-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.mega-card:hover .mega-card-title {
  color: var(--color-primary);
}

.mega-card-desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  padding-left: 38px;
}

/* Mega Menu Featured Callout Panel */
.mega-feature-panel {
  background: linear-gradient(145deg, #0a0f1d 0%, #1e1b4b 100%);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.mega-feature-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
  filter: blur(20px);
}

.mega-feature-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: block;
}

.mega-feature-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: #fb923c;
  margin-bottom: 12px;
  align-self: flex-start;
}

.mega-feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.mega-feature-text {
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.45;
  margin-bottom: 16px;
}

.mega-bottom-bar {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mega-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mega-bottom-link {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mega-bottom-link:hover {
  text-decoration: underline;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-brand);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background-color: #f8fafc;
  border-color: var(--text-main);
}

.btn-outline-dark {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: transparent;
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.0625rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background-color: #0b0f19;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.22;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.02);
  transition: transform 1.2s ease-out;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 82% 24%, rgba(79, 70, 229, 0.14) 0%, transparent 60%),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.93) 42%,
      rgba(255, 255, 255, 0.82) 75%,
      rgba(255, 255, 255, 0.68) 100%
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.eyebrow-pill {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-intro {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.trust-badge-item svg {
  color: #10b981;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-image-frame:hover img {
  transform: scale(1.02);
}

.hero-floating-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   GLOBAL SECTION PATTERNS
   ========================================================================== */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.section-soft {
  background-color: var(--bg-surface);
}

.section-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.section-dark .section-heading,
.section-dark .section-title {
  color: #ffffff;
}

.section-dark .section-desc {
  color: #94a3b8;
}

.section-header {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-header.text-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-top: 8px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-muted);
}

/* Card Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 48px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #060913;
  color: #94a3b8;
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 42px;
  width: auto;
  max-width: 200px;
  margin-bottom: 20px;
  display: block;
  object-fit: contain;
}

.footer-bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-link {
  color: #94a3b8;
}

.footer-legal-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 380px);
  background: #ffffff;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  padding: 0;
  overflow: hidden;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  background: #ffffff;
  flex-shrink: 0;
}

.drawer-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.drawer-logo {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.drawer-close:hover {
  background: #f1f5f9;
  color: var(--color-primary);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 20px 20px;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-nav-item {
  border-bottom: 1px solid var(--border-light);
  padding: 2px 0;
}

.drawer-nav-item:last-child {
  border-bottom: none;
}

.drawer-nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.drawer-nav-link:hover {
  color: var(--color-primary);
}

.drawer-accordion-btn {
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.drawer-accordion-btn:hover {
  color: var(--color-primary);
}

.drawer-accordion-btn .drawer-chevron {
  transition: transform var(--transition-fast);
  color: var(--text-light);
  flex-shrink: 0;
}

.drawer-accordion-btn[aria-expanded="true"] {
  color: var(--color-primary);
}

.drawer-accordion-btn[aria-expanded="true"] .drawer-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.drawer-sublist {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0 10px 14px;
  border-left: 2px solid var(--color-primary-light);
  margin-left: 6px;
  margin-bottom: 6px;
  list-style: none;
}

.drawer-sublist.open {
  display: flex;
}

.drawer-sublink {
  font-size: 0.84375rem;
  color: var(--text-muted);
  padding: 5px 0;
  text-decoration: none;
  display: block;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.drawer-sublink:hover {
  color: var(--color-primary);
}

.drawer-footer {
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.btn-drawer-action {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1.2;
}

.btn-drawer-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: 1px solid #22bf5b;
}

.btn-drawer-whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
}
