/* ==========================================================================
   BARATO SOFTWARE SOLUTIONS FZCO - ENTERPRISE DESIGN SYSTEM
   Theme: Deep Burgundy / Metallic Silver & Platinum / Warm Gold Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Primary: Deep Burgundy / Maroon (matching Barato logo) */
  --color-primary: #550101;
  --color-primary-dark: #3a0000;
  --color-primary-light: #700606;
  --color-primary-rgb: 85, 1, 1;
  --color-primary-subtle: #fbf2f2;
  --color-primary-surface: #faecec;

  /* CTA Accent: Warm Gold / Amber */
  --color-gold: #D4AF37;
  --color-gold-hover: #BF9B27;
  --color-gold-dark: #A37F16;
  --color-gold-glow: rgba(212, 175, 55, 0.35);
  --color-gold-gradient: linear-gradient(135deg, #E6C25B 0%, #D4AF37 50%, #B89222 100%);

  /* Secondary & Neutral Tones: Metallic Silver & Platinum */
  --color-silver-light: #F8FAFC;
  --color-silver: #E2E8F0;
  --color-silver-border: #CBD5E1;
  --color-silver-dark: #94A3B8;
  --color-platinum: #E9ECEF;
  --color-platinum-gradient: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 50%, #E2E8F0 100%);

  /* Backgrounds & Surfaces */
  --color-bg-body: #FFFFFF;
  --color-bg-alt: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-footer-bg: #400101;
  --color-footer-dark: #2B0000;

  /* Charcoal Text Hierarchy */
  --color-text-title: #0F172A;
  --color-text-main: #1E293B;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-text-white: #FFFFFF;

  /* Glassmorphism System */
  --glass-bg: rgba(255, 255, 255, 0.86);
  --glass-border: rgba(226, 232, 240, 0.85);
  --glass-blur: blur(20px);
  --glass-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6);

  /* Card & Shadow Elevations */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 35px -4px rgba(15, 23, 42, 0.1);
  --shadow-burgundy: 0 12px 30px rgba(85, 1, 1, 0.25);
  --shadow-gold: 0 6px 20px rgba(212, 175, 55, 0.35);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Spacing */
  --container-max: 1240px;
}

/* Base Reset & Smoothness */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-main);
  background-color: var(--color-bg-body);
  overflow-x: hidden;
  border-top: 2px solid #FFFFFF; /* Clean full-width white framing line across the very top */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-title);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Top Framing Line: Clean, full-width white horizontal line spanning across the very top */
.top-framing-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   UNIFIED FULL-WIDTH WHITE NAVIGATION HEADER (Single Container with Integrated Utility)
   ========================================================================== */
.navbar-wrapper {
  position: fixed;
  top: 0; /* Anchored flush at the very top of the viewport */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  pointer-events: none;
  display: block;
  padding: 0;
  transition: all var(--transition-normal);
}

.unified-header-container {
  pointer-events: auto;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.07);
  transition: all var(--transition-normal);
}

.navbar-wrapper.scrolled .unified-header-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 8px 30px -4px rgba(15, 23, 42, 0.12);
  border-bottom-color: rgba(203, 213, 225, 0.95);
}

/* Integrated Top Utility Sub-Row (Inside White Header) */
.header-top-utility {
  background: #FFFFFF;
  border-bottom: 0;
  padding: 0.32rem clamp(1.5rem, 3.5vw, 3.5rem); /* Standard layout padding */
  transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
  max-height: 45px;
  overflow: hidden;
}

.navbar-wrapper.scrolled .header-top-utility {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
}

.header-utility-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-tagline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1E293B; /* High-contrast dark charcoal */
  font-size: 0.81rem;
  font-weight: 550;
  letter-spacing: -0.1px;
}

.header-tagline span.badge {
  background: var(--color-gold);
  color: #1a1505;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-contact-list {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #334155; /* High-contrast dark slate */
  font-size: 0.82rem;
  font-weight: 550;
  transition: color var(--transition-fast);
}

.header-contact-list a:hover {
  color: var(--color-primary); /* Deep maroon hover */
}

.header-contact-list a svg {
  color: var(--color-primary); /* Maroon brand accent on icons */
  flex-shrink: 0;
}

.utility-divider {
  color: #CBD5E1;
  font-size: 0.75rem;
  user-select: none;
}

/* Main Navigation Row inside Unified Header */
.glass-pill-nav {
  pointer-events: auto;
  width: 100%;
  max-width: 100%; /* 100% full-width spanning edge-to-edge across entire screen */
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0; /* Edge-to-edge full width bar */
  padding: 0.55rem clamp(1.5rem, 3.5vw, 3.5rem); /* Standard layout padding aligning with utility sub-row */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding var(--transition-normal);
  box-sizing: border-box;
}

.navbar-wrapper.scrolled .glass-pill-nav {
  padding: 0.48rem clamp(1.5rem, 3.5vw, 3.5rem);
}

/* Logo - Far Left Placement */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0.15rem 0.5rem 0.15rem 0;
}

.brand-logo-img {
  height: 40px; /* Scaled up for clarity and presence */
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.02);
}

/* Desktop Nav Links - Naturally Centered & Spaced Out */
.nav-links-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 1.4vw, 1.6rem); /* Naturally spaced out to fill center space */
  flex: 1; /* Occupies middle space evenly between logo and button */
  max-width: 960px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-family: var(--font-heading);
  font-size: 0.94rem; /* Scaled up from 0.86rem for enhanced readability and presence */
  font-weight: 550;
  color: var(--color-text-main);
  padding: 0.45rem clamp(0.6rem, 0.9vw, 1rem); /* Proportional padding */
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link-item > a:hover {
  color: var(--color-primary);
  background: rgba(85, 1, 1, 0.06);
}

.nav-link-item > a.active {
  color: var(--color-primary);
  background: rgba(85, 1, 1, 0.08);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(85, 1, 1, 0.15);
}

/* ==========================================================================
   PRODUCTS MEGA DROPDOWN MENU
   ========================================================================== */
.nav-link-item.has-dropdown {
  position: relative;
}

.dropdown-chevron {
  margin-left: 3px;
  vertical-align: middle;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-item.has-dropdown:hover > a .dropdown-chevron,
.nav-link-item.has-dropdown:focus-within > a .dropdown-chevron {
  transform: rotate(180deg);
}

/* Invisible hover bridge between pill button and dropdown panel */
.nav-link-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 25px;
  z-index: 2099;
}

/* Mega Dropdown Panel Container - Anchored directly beneath Products */
.mega-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -40px;
  width: 960px;
  max-width: calc(100vw - 32px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-silver-border);
  box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem 1.35rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2100;
}

/* Pointer Notch anchored directly under the Products link */
.mega-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 85px;
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border-left: 1px solid var(--color-silver-border);
  border-top: 1px solid var(--color-silver-border);
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.02);
}

.nav-link-item.has-dropdown:hover .mega-dropdown-menu,
.nav-link-item.has-dropdown:focus-within .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 4-Column Grid Layout with guaranteed column spacing */
.mega-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.mega-dropdown-col {
  display: flex;
  flex-direction: column;
  min-width: 0; /* Prevents text overflow blowouts */
}

/* Category Column Title (Clickable Filter Link) */
.mega-dropdown-col .mega-col-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 0 0.65rem 0;
  margin: 0 0 0.75rem 0;
  border-bottom: 2px solid rgba(85, 1, 1, 0.12);
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none;
  cursor: pointer;
  white-space: normal;
  line-height: 1.25;
  transition: all var(--transition-fast);
}

.mega-dropdown-col .mega-col-title:hover {
  color: var(--color-gold-dark);
  border-bottom-color: var(--color-gold);
}

.mega-dropdown-col .mega-col-title:hover .mega-col-icon {
  background: var(--color-gold-light);
  color: var(--color-gold-dark);
}

.mega-col-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

/* Focused Product Card Flash Animation */
@keyframes cardTargetPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    transform: translateY(-4px) scale(1.02);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    transform: translateY(0) scale(1);
  }
}

.product-card.highlight-focus {
  animation: cardTargetPulse 1.4s ease-out;
  border-color: var(--color-gold) !important;
}

/* Product Links List inside Column */
.mega-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.mega-col-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual Product Anchor Card */
.mega-col-links li a {
  display: block !important;
  padding: 0.5rem 0.65rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  width: 100% !important;
  white-space: normal !important; /* CRITICAL: Enables distinct line wrapping */
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mega-col-links li a:hover {
  background: rgba(85, 1, 1, 0.04) !important;
  border-color: rgba(85, 1, 1, 0.1) !important;
  transform: translateX(3px);
}

/* Product Name / Title */
.mega-col-links li a strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-title);
  line-height: 1.25;
  white-space: normal;
  word-break: normal;
  transition: color var(--transition-fast);
}

.mega-col-links li a:hover strong {
  color: var(--color-primary);
}

/* Product Description / Subtitle */
.mega-col-links li a span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.73rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin-top: 2px;
  white-space: normal;
  word-break: normal;
  transition: color var(--transition-fast);
}

.mega-col-links li a:hover span {
  color: var(--color-text-main);
}

/* Column 2 OPD / Healthcare highlight promo badge to balance height */
.mega-col-promo {
  margin-top: 0.85rem;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(135deg, rgba(85, 1, 1, 0.03) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px dashed rgba(85, 1, 1, 0.2);
  border-radius: var(--radius-sm);
}

.mega-promo-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.mega-col-promo p {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin: 0;
}

/* Mega dropdown footer bar */
.mega-dropdown-footer {
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-silver);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.mega-footer-tagline {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.8rem;
}

.mega-footer-link {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mega-footer-link:hover {
  color: var(--color-gold-dark);
  background: var(--color-gold-light);
  gap: 0.55rem;
}

/* Media query for screens between 1061px and 1239px */
@media (min-width: 1061px) and (max-width: 1239px) {
  .mega-dropdown-menu {
    left: -140px;
    width: 900px;
    padding: 1.5rem 1.6rem 1.2rem;
  }
  .mega-dropdown-menu::before {
    left: 185px;
  }
  .mega-dropdown-grid {
    gap: 1.15rem;
  }
}

.mega-footer-tagline {
  color: var(--color-text-muted);
  font-weight: 500;
}

.mega-footer-link {
  color: var(--color-primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.mega-footer-link:hover {
  color: var(--color-gold-dark);
  gap: 0.5rem;
}

/* Mobile Submenu Accordion */
.mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-toggle {
  background: none;
  border: 1px solid var(--color-silver-border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.mobile-dropdown-toggle.active {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.mobile-submenu {
  display: none;
  padding: 0.5rem 0 0.5rem 0.75rem;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-group-title {
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-gold-dark);
  letter-spacing: 0.5px;
}

.mobile-submenu a {
  font-size: 0.88rem !important;
  padding: 0.3rem 0.5rem !important;
  color: var(--color-text-main) !important;
  border-bottom: none !important;
}

.mobile-submenu a:hover {
  color: var(--color-primary) !important;
  background: var(--color-primary-subtle);
}

/* Nav Actions (CTA Button) - Scaled Up */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  padding-left: 0.25rem;
}

.nav-actions .btn-sm {
  padding: 0.52rem clamp(1.15rem, 1.6vw, 1.55rem); /* Scaled up from 0.42rem 1.15rem */
  font-size: 0.92rem; /* Scaled up from 0.84rem for prominence */
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: var(--radius-pill);
}

/* Hamburger Toggle Button */
.hamburger-btn {
  display: none;
  background: none;
  border: 1px solid var(--color-silver-border);
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: var(--transition-fast);
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-title);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 7rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-silver-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-normal);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
}

.mobile-nav-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-text-main);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--color-silver-light);
}

.mobile-nav-list a.active,
.mobile-nav-list a:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  font-weight: 600;
}

/* Mobile Drawer Utility Block */
.mobile-drawer-utility {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-silver-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-drawer-utility .mobile-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: #1E293B;
  font-weight: 600;
}

.mobile-drawer-utility .mobile-tagline .badge {
  background: var(--color-gold);
  color: #1a1505;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.mobile-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mobile-contact-links a {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  color: #334155 !important;
  font-size: 0.88rem !important;
  font-weight: 500;
  padding: 0.4rem 0 !important;
  border-bottom: none !important;
}

.mobile-contact-links a svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

/* Warm Gold Primary CTA */
.btn-gold {
  background: var(--color-gold-gradient);
  color: #1a1403;
  box-shadow: var(--shadow-gold);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ECCB6A 0%, #DFB743 50%, #C59E2B 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
  color: #0d0a02;
}

/* Burgundy Secondary */
.btn-burgundy {
  background: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: var(--shadow-burgundy);
}

.btn-burgundy:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(85, 1, 1, 0.35);
  color: #FFFFFF;
}

/* Metallic Silver / Outline */
.btn-outline-silver {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--color-silver-border);
  color: var(--color-text-main);
  backdrop-filter: blur(10px);
}

.btn-outline-silver:hover {
  background: var(--color-silver-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #1a1403;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   BADGES & UI MICRO-ELEMENTS
   ========================================================================== */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(85, 1, 1, 0.08);
  border: 1px solid rgba(85, 1, 1, 0.15);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.eyebrow-badge-gold {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
  color: #92700C;
}

.eyebrow-badge-light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #F8FAFC;
}

/* ==========================================================================
   PAGE HERO SECTIONS
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 6.8rem 0 4rem; /* Tightened from 11.5rem to pull content closer below framed header */
  background: linear-gradient(180deg, #FAFCFD 0%, #F1F5F9 100%);
  border-bottom: 1px solid var(--color-silver);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 1, 1, 0.06) 0%, rgba(212, 175, 55, 0.04) 50%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-silver-border) 50%, transparent 100%);
}

.page-hero-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

.page-hero-title .text-burgundy {
  color: var(--color-primary);
}

.page-hero-title .text-gold {
  color: var(--color-gold-dark);
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   PRIMARY HERO BANNER CAROUSEL SECTION (Deep Maroon Theme & Smooth Carousel)
   ========================================================================== */
.home-hero-carousel-section {
  position: relative;
  background: radial-gradient(ellipse 110% 90% at 50% -10%, #550101 0%, #380000 45%, #200000 85%, #120000 100%);
  color: #FFFFFF;
  overflow: hidden;
  padding: clamp(5.6rem, 7.8vw, 6.8rem) 0 clamp(3rem, 4.5vw, 4rem); /* Tightened from clamp(9.5rem, 14vw, 12rem) to minimize whitespace */
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.home-hero-carousel-section .container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 3.5vw, 3rem);
  padding-right: clamp(1.5rem, 3.5vw, 3rem);
}

/* Ambient Background Lights */
.hero-ambient-glow-1 {
  position: absolute;
  top: -120px;
  left: 8%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 12, 12, 0.35) 0%, rgba(85, 1, 1, 0.05) 60%, transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-ambient-glow-2 {
  position: absolute;
  bottom: -90px;
  right: 5%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(184, 146, 34, 0.03) 55%, transparent 75%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1.2px, transparent 1.2px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 90%);
  pointer-events: none;
  z-index: 1;
}

/* Carousel Viewport & Track */
.hero-carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  opacity: 0.35;
  transition: opacity 0.5s ease;
  user-select: none;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  user-select: auto;
}

/* Slide Grid Structure */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  width: 100%;
  min-height: 480px;
}

/* Kicker Badge */
.hero-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 1.35rem;
  transition: var(--transition-fast);
}

.hero-kicker-badge:hover {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.kicker-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
  animation: kickerPulse 2.2s infinite ease-in-out;
}

.kicker-pulse-dot--gold {
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

.kicker-pulse-dot--green {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
}

@keyframes kickerPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.kicker-text {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #FFDF85;
  font-family: var(--font-heading);
}

/* Headings */
.hero-content h1,
.hero-content h2,
.hero-title {
  font-size: clamp(2.15rem, 3.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.9px;
  margin-bottom: 1.25rem;
  line-height: 1.14;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.hero-text-gold {
  background: linear-gradient(135deg, #ECC86A 0%, #D4AF37 50%, #FFDF85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Subheadings */
.hero-content p,
.hero-subtitle {
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  color: rgba(241, 245, 249, 0.88);
  margin-bottom: 1.85rem;
  line-height: 1.72;
  max-width: 640px;
}

/* Highlight Pills (Slides 2 & 3) */
.hero-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.15rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: var(--radius-pill);
  color: #FFDF85;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.hero-highlight-pill strong {
  color: #FFFFFF;
  font-weight: 700;
}

.highlight-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--color-gold-gradient);
  color: #1A1200 !important;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(191, 155, 39, 0.4);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-hero-gold:hover {
  background: linear-gradient(135deg, #F0CF70 0%, #E0B940 50%, #C99E25 100%);
  color: #0E0A00 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212, 175, 55, 0.5);
}

.btn-hero-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-hero-glass:hover {
  border-color: var(--color-gold);
  color: #FFDF85 !important;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Metrics Strip in Slide */
.hero-metrics-strip {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 1.8rem;
  margin-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-metric-item {
  display: flex;
  flex-direction: column;
}

.hero-metric-val {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFDF85;
  line-height: 1.15;
}

.hero-metric-lbl {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

.hero-metric-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* Visual Side / Container */
.hero-visual-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
}

.mockup-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 60% 40%, rgba(138, 12, 12, 0.45) 0%, rgba(212, 175, 55, 0.22) 45%, transparent 70%);
  filter: blur(45px);
  z-index: 1;
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.mockup-frame {
  position: relative;
  z-index: 2;
  background: rgba(30, 0, 0, 0.75);
  border-radius: 20px;
  padding: 8px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(255, 255, 255, 0.1),
              0 0 35px -5px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* Slide 2, 3, 4 Feature Cards */
.hero-feature-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: rgba(28, 2, 2, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.08),
              0 0 40px -5px rgba(85, 1, 1, 0.4);
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.2);
}

.card-glass-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, rgba(85, 1, 1, 0.3) 50%, transparent 75%);
  filter: blur(35px);
  z-index: 1;
  border-radius: 24px;
  pointer-events: none;
}

.card-inner-content {
  position: relative;
  z-index: 2;
}

.card-header-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.compliance-flags {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.flag-chip {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #FFFFFF;
}

.status-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #FFDF85;
  background: rgba(212, 175, 55, 0.14);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.status-live-chip--emerald {
  color: #86efac;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
}

.chip-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
  animation: kickerPulse 1.8s infinite ease-in-out;
}

.telemetry-title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

/* Feature Spec Grid (2x2) */
.feature-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.feature-spec-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.feature-spec-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.spec-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: #FFDF85;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.spec-text p {
  font-size: 0.76rem;
  color: rgba(241, 245, 249, 0.72);
  line-height: 1.45;
  margin: 0;
}

/* Telemetry Bar */
.telemetry-bar-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.telemetry-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

.telemetry-label-row strong {
  color: #86efac;
}

.telemetry-meter {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.telemetry-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #34d399 70%, #FFDF85 100%);
  border-radius: 3px;
}

/* Roadmap Timeline (Slide 4) */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.95rem 1.15rem;
  transition: all 0.25s ease;
}

.roadmap-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateX(4px);
}

.roadmap-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #1A1200;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roadmap-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.roadmap-info p {
  font-size: 0.78rem;
  color: rgba(241, 245, 249, 0.72);
  line-height: 1.45;
  margin: 0;
}

/* Floating Micro Badges */
.floating-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.15rem;
  background: rgba(35, 3, 3, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: floatBob 4.5s ease-in-out infinite alternate;
}

.badge-top-left {
  top: -16px;
  left: -20px;
  animation-delay: 0s;
}

.badge-bottom-right {
  bottom: -16px;
  right: -15px;
  animation-delay: 2.2s;
}

.badge-top-right {
  top: -18px;
  right: -16px;
  animation-delay: 1.2s;
}

.badge-bottom-left {
  bottom: -18px;
  left: -16px;
  animation-delay: 2.8s;
}

@keyframes floatBob {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.status-pulse-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

.floating-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-badge-icon--gold {
  background: rgba(212, 175, 55, 0.18);
  color: #FFDF85;
}

.floating-badge-text {
  display: flex;
  flex-direction: column;
}

.floating-badge-text strong {
  font-size: 0.82rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.25;
}

.floating-badge-text span {
  font-size: 0.72rem;
  color: rgba(241, 245, 249, 0.72);
  line-height: 1.25;
}

/* ==========================================================================
   CAROUSEL CONTROLS & PAGINATION
   ========================================================================== */
.hero-carousel-controls-wrapper {
  position: relative;
  z-index: 10;
  margin-top: 2.5rem;
}

.hero-carousel-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
}

.hero-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-nav-arrow:hover {
  background: var(--color-gold-gradient);
  color: #1A1200;
  border-color: var(--color-gold);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.hero-nav-arrow:active {
  transform: scale(0.96);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 0, 0, 0.75);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.hero-carousel-dot {
  background: transparent;
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.25s ease;
  position: relative;
  font-family: var(--font-heading);
}

.hero-carousel-dot:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.hero-carousel-dot .dot-num {
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}

.hero-carousel-dot .dot-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.hero-carousel-dot .dot-progress-track {
  width: 26px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: block;
}

.hero-carousel-dot .dot-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--color-gold);
  border-radius: 2px;
}

.hero-carousel-dot.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.hero-carousel-dot.is-active .dot-num {
  color: #FFDF85;
}

.hero-carousel-dot.is-active .dot-title {
  color: #FFFFFF;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content p,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics-strip {
    justify-content: center;
  }

  .hero-feature-card,
  .hero-mockup-wrapper {
    max-width: 580px;
    margin: 0 auto;
  }

  .badge-top-left,
  .badge-bottom-left {
    left: 4px;
  }

  .badge-top-right,
  .badge-bottom-right {
    right: 4px;
  }
}

@media (max-width: 768px) {
  .home-hero-carousel-section {
    padding: 5.2rem 0 2.8rem;
  }

  .feature-spec-grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel-dot .dot-title {
    display: none;
  }

  .hero-carousel-dot {
    padding: 0.45rem 0.65rem;
    gap: 0.4rem;
  }

  .hero-carousel-dot .dot-progress-track {
    width: 16px;
  }

  .compliance-flags {
    justify-content: center;
  }

  .card-header-badge {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-highlight-pill {
    flex-direction: column;
    text-align: center;
    border-radius: 14px;
    padding: 0.6rem 0.9rem;
  }

  .hero-metrics-strip {
    gap: 1.25rem;
  }

  .hero-metric-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-gold,
  .btn-hero-glass {
    width: 100%;
  }
}

/* ==========================================================================
   TRUSTED BY / CLIENT LOGOS SECTION
   ========================================================================== */
.trusted-clients-section {
  position: relative;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, #460101 0%, #2b0000 65%, #1c0000 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  padding: 4.5rem 0;
  overflow: hidden;
  color: #FFFFFF;
}

.trusted-clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 14px 14px;
  pointer-events: none;
  opacity: 0.6;
}

.trusted-clients-section .container {
  position: relative;
  z-index: 2;
}

.trusted-clients-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.trusted-clients-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 0.65rem;
}

.trusted-clients-sub {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.trusted-clients-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  margin-bottom: -1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trusted-clients-grid::-webkit-scrollbar {
  display: none;
}

.client-logo-card {
  flex: 1 0 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 3px solid #7A0016;
  border-radius: var(--radius-lg, 18px);
  padding: 2rem 1.5rem;
  min-height: 125px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal, 0.3s ease);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.client-logo-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  border-color: #7A0016;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.client-logo-frame {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.client-logo-img {
  width: auto;
  object-fit: contain;
  opacity: 1; /* Changed from 0.72 to 1 to show full original color */
  transition: all var(--transition-fast, 0.25s ease);
}

.client-logo-img--choithrams {
  max-height: 32px;
  max-width: 190px;
}

.client-logo-img--jaleel {
  max-height: 40px;
  max-width: 155px;
}

.client-logo-img--byky {
  max-height: 52px;
  max-width: 110px;
}

.client-logo-img--haritham {
  max-height: 55px;
  max-width: 130px;
}

.client-logo-img--teejan {
  max-height: 55px;
  max-width: 130px;
}

.client-logo-card:hover .client-logo-img {
  opacity: 1;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transform: scale(1.05);
}

.client-logo-caption {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7A0016;
  margin-top: 0.85rem;
  text-align: center;
  transition: color var(--transition-fast, 0.25s ease);
}

.client-logo-card:hover .client-logo-caption {
  color: #9E001D;
}

@media (max-width: 860px) {
  .trusted-clients-section {
    padding: 3.5rem 0;
  }
  .trusted-clients-header {
    margin-bottom: 2rem;
  }
  .trusted-clients-grid {
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
  }
  .client-logo-card {
    flex: 0 0 200px;
    padding: 1.5rem 1rem;
  }
}

/* ==========================================================================
   TRUST & CREDENTIALS SECTION (Brand Strip & Stat Cards)
   ========================================================================== */
.trust-credentials-section {
  position: relative;
  padding: 3.5rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-silver);
  z-index: 5;
}

/* Top Trust Bar (Pill Bar) */
.trust-bar-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid var(--color-silver-border);
  border-radius: 18px;
  padding: 1.15rem 2.25rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  transition: var(--transition-fast);
}

.trust-bar-pill:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 30px -4px rgba(15, 23, 42, 0.08);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.trust-bar-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.trust-bar-item:hover .trust-bar-icon {
  background: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.trust-bar-text {
  display: flex;
  flex-direction: column;
}

.trust-bar-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text-title);
  line-height: 1.25;
}

.trust-bar-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.trust-bar-divider {
  width: 1px;
  height: 36px;
  background: var(--color-silver);
  margin: 0 1.75rem;
  flex-shrink: 0;
}

/* Bottom Cards Grid */
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-stat-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: #FFFFFF;
  border: 1px solid var(--color-silver-border);
  border-radius: 16px;
  padding: 1.35rem 1.65rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 30px -4px rgba(85, 1, 1, 0.08), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.trust-stat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(85, 1, 1, 0.2);
  transition: transform 0.25s ease;
}

.trust-stat-card:hover .trust-stat-icon-box {
  background: linear-gradient(135deg, #7A0A0A 0%, #550101 100%);
  transform: scale(1.06);
}

.trust-stat-content {
  display: flex;
  flex-direction: column;
}

.trust-stat-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-title);
  line-height: 1.2;
  margin: 0 0 0.2rem 0;
}

.trust-stat-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   SECTIONS & LAYOUT GRIDS
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-burgundy {
  background: linear-gradient(135deg, #4d0101 0%, #350000 100%);
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-burgundy .section-title {
  color: #FFFFFF;
}

.section-burgundy .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ==========================================================================
   CARDS & COMPONENTS
   ========================================================================== */
/* Standard Feature / Solution Card */
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-silver-border);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  border: 1px solid rgba(85, 1, 1, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
  background: var(--color-primary);
  color: #FFFFFF;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.card-link:hover {
  color: var(--color-gold-dark);
  gap: 0.6rem;
}

/* Product Showcase Cards */
.product-card {
  background: #FFFFFF;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-silver-border);
}

.product-card-banner {
  background: #FFFFFF;
  padding: 2rem;
  color: var(--color-text-title);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 280px;
}

.product-badge {
  align-self: flex-start;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-text-title);
  margin-top: 1rem;
}

.card-banner-graphic {
  width: 100%;
  max-width: 250px;
  height: 160px;
  margin: auto;
  object-fit: contain;
  display: block;
}

.product-card-body {
  background: linear-gradient(135deg, #550101 0%, #300000 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.product-specs-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #FFFFFF;
}

.product-specs-list li svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-footer .card-link {
  color: #FFFFFF;
}

.product-card-footer .card-link:hover {
  color: var(--color-gold);
}

/* Category Filter Tabs */
.filter-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-tab {
  background: #FFFFFF;
  border: 1px solid var(--color-silver);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-tab.active {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-burgundy);
}

/* Value Props / Why Choose Us */
.value-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  border: 1px solid rgba(85, 1, 1, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.value-prop-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.value-prop-item p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Testimonial / Trust Pillar */
.trust-stat-box {
  background: #FFFFFF;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.trust-stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.trust-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.trust-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   ABOUT US COMPANY OVERVIEW SECTION
   ========================================================================== */
.about-overview-section {
  position: relative;
  background: #FFFFFF;
  padding: 6.5rem 0;
  border-bottom: 1px solid var(--color-silver);
}

.about-overview-grid {
  align-items: center;
  gap: 4.5rem;
}

.about-overview-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-title);
  line-height: 1.2;
  margin-top: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.6px;
}

.about-overview-lead {
  font-size: 1.12rem;
  color: var(--color-text-main);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-overview-lead strong {
  color: var(--color-primary);
  font-weight: 700;
}

.about-overview-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.about-overview-cta {
  display: flex;
  align-items: center;
}

.btn-outline-burgundy {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  background: transparent;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(85, 1, 1, 0.05);
  cursor: pointer;
}

.btn-outline-burgundy .btn-arrow {
  transition: transform 0.25s ease;
}

.btn-outline-burgundy:hover {
  background: var(--color-primary);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(85, 1, 1, 0.2);
}

.btn-outline-burgundy:hover .btn-arrow {
  transform: translateX(4px);
}

/* 3 Core Pillar Cards */
.about-pillars-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-silver-light);
  border: 1px solid var(--color-silver-border);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.about-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background 0.25s ease;
}

.about-pillar-card:hover {
  background: #FFFFFF;
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -4px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.about-pillar-card:hover::before {
  background: var(--color-gold);
}

.pillar-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(85, 1, 1, 0.22);
  transition: transform 0.25s ease;
}

.about-pillar-card:hover .pillar-icon-box {
  background: linear-gradient(135deg, #7A0A0A 0%, #550101 100%);
  transform: scale(1.06);
}

.pillar-content {
  flex: 1;
}

.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  gap: 0.75rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.pillar-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gold-dark);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Blog Article Cards */
.blog-card {
  background: #FFFFFF;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-silver-border);
}

.blog-card-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #550101 0%, #200000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  padding: 1.5rem;
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(212, 175, 55, 0.95);
  color: #1a1403;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--color-primary);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-silver);
}

.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-title);
}

.author-role {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   CONTACT FORM & FAQ ACCORDION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-title);
  margin-bottom: 0.45rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background: var(--color-silver-light);
  border: 1px solid var(--color-silver-border);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(85, 1, 1, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-card {
  background: linear-gradient(135deg, #550101 0%, #300000 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-burgundy);
}

.contact-info-card h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-content h5 {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.contact-detail-content p, .contact-detail-content a {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-detail-content a:hover {
  color: var(--color-gold);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-title);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  color: var(--color-primary);
}

.faq-item.active .faq-toggle-icon {
  background: var(--color-primary);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   GLOBAL CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #550101 0%, #300000 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.15);
  border-bottom: 1px solid rgba(226, 232, 240, 0.15);
  padding: 5rem 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-banner-text h2 {
  color: #FFFFFF;
  font-size: 2.25rem;
  margin-bottom: 0.6rem;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 650px;
}

/* ==========================================================================
   WHY BARATO / MULTI-CARD SECTION
   ========================================================================== */
.why-barato-section {
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(130, 8, 8, 0.45) 0%, rgba(55, 1, 1, 0.95) 60%, #220000 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 5rem 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.why-barato-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px, 16px 16px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
  opacity: 0.65;
}

.why-barato-section .container {
  position: relative;
  z-index: 2;
}

.why-barato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

/* Base Card Styling */
.why-barato-card {
  background: rgba(25, 1, 1, 0.55);
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: var(--radius-lg, 20px);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-normal, 0.3s ease),
              border-color var(--transition-normal, 0.3s ease),
              box-shadow var(--transition-normal, 0.3s ease);
}

.why-barato-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 42px -10px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.12);
}

/* Card 2 Featured Centerpiece Elevation (Clean White Theme) */
.why-barato-card--featured {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.45), 0 0 28px rgba(212, 175, 55, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.why-barato-card--featured:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold, #D4AF37);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.55), 0 0 35px rgba(212, 175, 55, 0.3);
}

.why-barato-card--featured .why-barato-icon-wrap {
  background: #550101;
  border: 1px solid #550101;
  color: #ECCB6A;
  box-shadow: 0 4px 12px rgba(85, 1, 1, 0.2);
}

.why-barato-card--featured:hover .why-barato-icon-wrap {
  background: #3a0000;
  border-color: #3a0000;
  transform: scale(1.06);
}

.why-barato-card--featured .why-barato-badge--gold {
  background: #FFF8E7;
  border: 1px solid #D4AF37;
  color: #7A5500;
  font-weight: 700;
}

.why-barato-card--featured .why-barato-card-title {
  color: #0F172A;
  font-weight: 800;
}

.why-barato-card--featured .why-barato-card-desc {
  color: #334155;
  font-weight: 450;
}

.why-barato-card--featured .why-barato-check-badge {
  background: #550101;
  border: 1px solid #3a0000;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(85, 1, 1, 0.22);
}

.why-barato-card--featured .why-barato-point-text {
  color: #334155;
}

.why-barato-card--featured .why-barato-point-text strong {
  color: #0F172A;
  font-weight: 700;
}

/* Card 3 CTA Card */
.why-barato-card--cta {
  background: linear-gradient(170deg, rgba(45, 1, 1, 0.75) 0%, rgba(20, 0, 0, 0.85) 100%);
  border-color: rgba(212, 175, 55, 0.25);
}

.why-barato-card-top {
  display: flex;
  flex-direction: column;
}

.why-barato-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-barato-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast, 0.2s ease), background var(--transition-fast, 0.2s ease);
}

.why-barato-card:hover .why-barato-icon-wrap {
  transform: scale(1.06);
  background: rgba(212, 175, 55, 0.2);
}

.why-barato-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.why-barato-badge--gold {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: #ECCB6A;
}

.why-barato-card-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.why-barato-card-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Card 1 Micro Feature Tags */
.why-barato-tags {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.why-barato-tag-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}

.why-barato-tag-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 6px var(--color-gold);
  flex-shrink: 0;
}

/* Card 1 Learn More Button */
.why-barato-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-barato-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.08);
  transition: all var(--transition-fast, 0.2s ease);
  width: fit-content;
}

.why-barato-btn-link:hover {
  background: var(--color-gold);
  color: #1a1403;
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.why-barato-btn-link svg {
  transition: transform var(--transition-fast, 0.2s ease);
}

.why-barato-btn-link:hover svg {
  transform: translateX(4px);
}

/* Card 2 Value Points List */
.why-barato-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.why-barato-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.why-barato-check-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #ECCB6A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-barato-point-text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.why-barato-point-text strong {
  display: block;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.93rem;
}

/* Card 3 CTA Actions */
.why-barato-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.why-barato-cta-actions .btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 0.98rem;
  justify-content: center;
  text-align: center;
}

.why-barato-cta-actions .btn-outline-silver {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.why-barato-cta-actions .btn-outline-silver:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
}

.why-barato-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.85rem;
  text-align: center;
}

.why-barato-trust-note svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Responsive Grid Behavior */
@media (max-width: 1024px) {
  .why-barato-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-barato-section {
    padding: 4rem 0;
  }
}

@media (max-width: 640px) {
  .why-barato-card {
    padding: 1.75rem 1.35rem;
  }
  
  .why-barato-section {
    padding: 3.25rem 0;
  }
  
  .why-barato-card-title {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   GLOBAL FOOTER (DEEP BURGUNDY)
   ========================================================================== */
.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--color-gold);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 1.25rem 0 1.5rem;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  border-radius: 4px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #1a1505;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer-newsletter p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.3rem 0.3rem 1rem;
}

.newsletter-form input {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 0.88rem;
  outline: none;
  width: 100%;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom Bar */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-content h1 {
    font-size: 2.85rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1060px) {
  .nav-links-menu, .nav-actions .btn-gold {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .glass-pill-nav {
    padding: 0.55rem clamp(1rem, 2.5vw, 1.75rem);
  }
  .mobile-nav-drawer {
    top: 5.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero-mockup-wrapper {
    margin: 0 auto;
    max-width: 600px;
  }
  .badge-top-left {
    left: 0;
    top: -14px;
  }
  .badge-bottom-right {
    right: 0;
    bottom: -14px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar-pill {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .trust-bar-divider {
    display: none;
  }
  .trust-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .header-top-utility {
    display: none;
  }
  .navbar-wrapper {
    top: 0;
    padding: 0;
  }
  .navbar-wrapper.scrolled {
    top: 0;
  }
  .glass-pill-nav {
    border-radius: 0;
    padding: 0.52rem 1rem;
  }
  .brand-logo-img {
    height: 33px;
    max-width: 135px;
  }
  .mobile-nav-drawer {
    top: 3.8rem;
  }
  .page-hero {
    padding: 5.2rem 0 3rem;
  }
  .about-overview-section {
    padding: 4.5rem 0;
  }
  .about-overview-title {
    font-size: 2.1rem;
  }
  .home-hero-section {
    padding: 5.2rem 0 3rem;
  }
  .home-hero-carousel-section {
    padding: 5.2rem 0 2.5rem;
  }
  .hero-content h1,
  .hero-title {
    font-size: 2.15rem;
    letter-spacing: -0.5px;
  }
  .hero-subtitle {
    font-size: 1.02rem;
    margin-bottom: 1.75rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.85rem;
  }
  .btn-hero-gold,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-mockup-wrapper {
    max-width: 100%;
  }
  .badge-top-left {
    left: 4px;
    top: -12px;
  }
  .badge-bottom-right {
    right: 4px;
    bottom: -12px;
  }
  .floating-badge {
    padding: 0.5rem 0.85rem;
    gap: 0.5rem;
    border-radius: 10px;
  }
  .floating-badge-text strong {
    font-size: 0.76rem;
  }
  .floating-badge-text span {
    font-size: 0.65rem;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .metrics-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

