﻿/* ============================================
   Loadbanks Solutions V3.0 - Main Stylesheet
   Light theme based on reference design
   ============================================ */

/* ------------------------------------------
   1. CSS Variables (Design Tokens)
   ------------------------------------------ */
:root {
  /* Color System — Primary */
  --lb-primary-blue: #c5d5e4;
  --lb-primary-blue-rgb: 197, 213, 228;
  --lb-white: #ffffff;
  --lb-highlight: #89A7D6;
  --lb-accent-teal: #14b8a6;
  --lb-accent-teal-rgb: 20, 184, 166;
  --lb-accent-teal-light: #2dd4bf;
  --lb-accent-teal-dark: #0d9488;

  /* Section backgrounds */
  --lb-bg-white: #ffffff;
  --lb-bg-alt: #f8fafc;
  --lb-bg-subtle: #f1f5f9;

  /* Card & Surface */
  --lb-surface: #ffffff;
  --lb-surface-hover: #f8fafc;
  --lb-border-light: rgba(197, 213, 228, 0.35);
  --lb-border-strong: rgba(137, 167, 214, 0.25);

  /* Text Colors */
  --lb-text-primary: #0f172a;
  --lb-text-secondary: #475569;
  --lb-text-muted: #94a3b8;
  --lb-text-on-dark: #f1f5f9;
  --lb-text-on-dark-muted: #94a3b8;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes */
  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 24px;
  --header-height: 72px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(20, 184, 166, 0.15);

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

  /* Z-index layers */
  --z-dropdown: 100;
  --z-header: 1000;
  --z-modal: 2000;
}

/* ------------------------------------------
   2. Base Reset & Global Styles
   ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--lb-text-primary);
  background-color: var(--lb-bg-white);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ------------------------------------------
   3. Typography
   ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  color: var(--lb-text-primary);
  line-height: 1.25;
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--lb-text-primary);
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--lb-text-secondary);
  max-width: 600px;
}

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

.section-header .section-subtitle {
  margin-top: var(--space-3);
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--lb-accent-teal-dark), var(--lb-accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ------------------------------------------
   4. Layout System
   ------------------------------------------ */
.lb-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: var(--space-16) 0;
}

.section-alt {
  background-color: var(--lb-bg-alt);
}

.section-dark {
  background-color: var(--lb-bg-alt);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* ------------------------------------------
   5. Components — Header / Navigation
   ------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lb-border-light);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--lb-text-primary);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.main-nav > a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--lb-text-secondary);
  padding: var(--space-2) var(--space-1);
  transition: color var(--transition-fast);
  position: relative;
}

.main-nav > a:hover,
.main-nav > a.active {
  color: var(--lb-accent-teal);
}

.main-nav > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lb-accent-teal);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--lb-text-secondary);
  padding: var(--space-2) var(--space-1);
  transition: color var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.nav-dropdown-toggle:hover {
  color: var(--lb-accent-teal);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: var(--space-2) 0;
  background: var(--lb-white);
  border: 1px solid var(--lb-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-2);
}

/* Desktop only: hover to show dropdown */
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
}

/* Mobile: JS click toggles .open class — no hover interference */
@media (max-width: 768px) {
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--lb-text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  background: var(--lb-bg-subtle);
  color: var(--lb-accent-teal);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--lb-bg-subtle);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.lang-switcher a {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--lb-text-muted);
  transition: all var(--transition-fast);
}

.lang-switcher a.active {
  background: var(--lb-accent-teal);
  color: var(--lb-white);
}

.lang-switcher a:hover:not(.active) {
  color: var(--lb-text-secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: calc(var(--z-header) + 1);
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  touch-action: manipulation;
  outline: none;
}

/* Add a larger invisible tap area */
.hamburger::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lb-text-primary);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* Hamburger active — X animation */
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

.header-cta {
  display: none;
}

/* ------------------------------------------
   6. Components — Buttons (Glassmorphism)
   ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Inner light reflection */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

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

.btn-primary {
  background: rgba(20, 184, 166, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--lb-accent-teal-dark);
  border: 1px solid rgba(20, 184, 166, 0.25);
  box-shadow: 0 2px 12px rgba(20, 184, 166, 0.06);
}

.btn-primary:hover {
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.12);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--lb-text-primary);
  border: 1px solid var(--lb-border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--lb-highlight);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 12px 28px;
  font-size: var(--text-base);
}

/* Submit button full-width variant */
.btn-submit {
  background: rgba(20, 184, 166, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--lb-accent-teal-dark);
  border: 1px solid rgba(20, 184, 166, 0.3);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: rgba(20, 184, 166, 0.22);
  border-color: var(--lb-accent-teal);
  box-shadow: 0 4px 24px rgba(20, 184, 166, 0.15);
  transform: translateY(-2px);
}

/* ------------------------------------------
   7. Components — Badge
   ------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--lb-accent-teal-dark);
  letter-spacing: 0.5px;
}

/* ------------------------------------------
   8. Components — Glass Cards
   ------------------------------------------ */
.glass-card {
  background: var(--lb-white);
  border: 1px solid var(--lb-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.glass-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--lb-highlight);
  transform: translateY(-2px);
}

.glass-card-light {
  background: var(--lb-white);
  border: 1px solid var(--lb-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.glass-card-light:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--lb-highlight);
  transform: translateY(-2px);
}

/* Cards with icon wraps — subtle hover glow */
.icon-card .icon-wrap {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-card:hover .icon-wrap {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.12);
}

/* --- Scroll-reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Section header reveal */
.section-header {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.section-header.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Trust bar number animation --- */
.trust-stat {
  transition: transform 0.3s ease;
}

.trust-stat:hover {
  transform: scale(1.05);
}

/* ------------------------------------------
   9. Hero Section
   ------------------------------------------ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--space-16);
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(197, 213, 228, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
    var(--lb-bg-white);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero Trust Bar */
.hero-trust-bar {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

/* Floating data cards — kept class, no longer used by default */
.hero-floating-card {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

/* ------------------------------------------
   10. Components — Forms (Light Theme)
   ------------------------------------------ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--lb-text-secondary);
}

.form-input, .form-select, .form-textarea {
  padding: 10px 14px;
  border: 1px solid var(--lb-border-light);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--lb-text-primary);
  background: var(--lb-bg-white);
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--lb-accent-teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--lb-text-muted);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  accent-color: var(--lb-accent-teal);
  margin-top: 2px;
}

/* Placeholder styling */
::placeholder {
  color: var(--lb-text-muted);
  opacity: 0.7;
}

/* ------------------------------------------
   11. Footer
   ------------------------------------------ */
.site-footer {
  background: #f1f5f9;
  border-top: 1px solid var(--lb-border-light);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--lb-text-secondary);
  margin-top: var(--space-4);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lb-text-primary);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--lb-text-secondary);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--lb-accent-teal);
}

.footer-address {
  font-size: var(--text-sm);
  color: var(--lb-text-secondary);
  line-height: 1.8;
}

.footer-address a {
  color: var(--lb-accent-teal);
}

.footer-address a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--lb-border-light);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--lb-text-muted);
}

/* ------------------------------------------
   12. Responsive — Tablet (768px – 1024px)
   ------------------------------------------ */
@media (max-width: 1024px) {
  .grid-2, .grid-3, .card-grid-3, .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn-lg {
    padding: 10px 22px;
    font-size: var(--text-sm);
  }
}

/* ------------------------------------------
   13. Responsive — Mobile (< 768px)
   ------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  .grid-2, .grid-3, .card-grid-3, .product-grid,
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
  }

  .section-title {
    font-size: var(--text-xl);
  }

  /* --- Mobile Navigation --- */
  .site-logo span { display: none; }
  .hamburger {
    display: block;
  }

  /* Backdrop overlay behind mobile nav */
  .nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: calc(var(--z-header) - 1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    height: 100dvh;
    flex-direction: column;
    background: var(--lb-white);
    padding: calc(var(--header-height) + 16px) var(--space-4) var(--space-6);
    gap: 0;
    overflow-y: auto;
    z-index: var(--z-header);
    transition: left 0.3s ease;
    box-shadow: none;
    pointer-events: none;
  }

  .main-nav.active {
    left: 0;
    box-shadow: 4px 0 32px rgba(0,0,0,0.25);
    pointer-events: auto;
  }

  .main-nav > a {
    display: block;
    padding: 12px var(--space-3);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--lb-text-primary);
    border-bottom: none;
    transition: background var(--transition-fast);
  }

  .main-nav > a:hover,
  .main-nav > a.active {
    background: var(--lb-bg-subtle);
    color: var(--lb-accent-teal-dark);
  }

  .nav-dropdown-toggle {
    display: block;
    padding: 12px var(--space-3);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--lb-text-primary);
    border-bottom: none;
    cursor: pointer;
  }

  .nav-dropdown-toggle::after {
    content: '+';
    float: right;
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--lb-text-muted);
  }

  .nav-dropdown.open .nav-dropdown-toggle::after {
    content: '\2212';
    color: var(--lb-accent-teal-dark);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--lb-bg-subtle);
    border-radius: var(--radius-sm);
    margin: 4px var(--space-2) 4px var(--space-4);
    min-width: auto;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    display: block;
    padding: 10px var(--space-3);
    font-size: var(--text-sm);
    color: var(--lb-text-secondary);
    border-bottom: none;
  }

  .nav-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .nav-dropdown-menu a:hover {
    color: var(--lb-accent-teal-dark);
  }

  .lang-switcher {
    order: -1;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: var(--space-10);
  }
}