/* ================================================================
   AL BARK E-COM SOLUTION — Premium Design System v3.0
   Inspired by: Stripe, Vercel, Linear, Framer, Webflow
   ================================================================ */

/* ── Google Fonts (loaded via JS) ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand */
  --navy-950: #060F28;
  --navy-900: #0A1F44;
  --navy-800: #0d2654;
  --navy-700: #122d62;
  --green-700: #166b30;
  --green-600: #1B8A3D;
  --green-500: #1E9E4E;
  --green-400: #22b558;
  --green-300: #4dc97a;
  --green-200: #86efac;
  --amber-600: #b45309;
  --amber-500: #d97706;
  --amber-400: #F59E0B;
  --amber-300: #fbbf24;
  /* Neutral */
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  /* Aliases */
  --slate: #4B5563;
  --slate-light: #6B7280;
  --line: #E5E7EB;
  --surface: #F9FAFB;
  /* Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.07), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.05);
  --shadow-glow-green: 0 0 0 1px rgba(27,138,61,.15), 0 4px 24px rgba(27,138,61,.12);
  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--navy-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Typography ── */
.font-display { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.font-mono    { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow.dark { color: var(--green-400); }
.eyebrow.muted { color: var(--gray-500); }

.grad-text {
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-400) 50%, var(--amber-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-balance { text-wrap: balance; }

/* ── Dot ── */
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--green-600); color: #fff;
  padding: .5rem 1rem; z-index: 999;
  border-radius: 0 0 .5rem .5rem;
  font-size: .875rem; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announce-bar {
  background: var(--navy-950);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  text-align: center;
  padding: .5rem 1rem;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ================================================================
   SITE HEADER — Premium glass effect
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .25s, background .25s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 4px 16px rgba(10,31,68,.06);
}

/* Logo */
.logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(27,138,61,.25);
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  padding: 2px;
  box-shadow: 0 0 0 4px rgba(27,138,61,.06);
  transition: border-color .2s, box-shadow .2s;
}
.logo-circle:hover {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(27,138,61,.1);
}
.logo-circle img { width: 100%; height: 100%; object-fit: contain; }

/* Nav links */
.nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: .35rem .15rem;
  border-bottom: 1.5px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy-900); }
.nav-link.active { color: var(--green-600); border-bottom-color: var(--green-600); }

/* Mega menu dropdown */
.mega-dropdown {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(10,31,68,.12), 0 8px 16px rgba(10,31,68,.06);
}

/* ================================================================
   MOBILE NAV
   ================================================================ */
.mobile-nav { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.mobile-nav.open { pointer-events: all; }
.mobile-nav-backdrop {
  position: absolute; inset: 0;
  background: rgba(6,15,40,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0;
  height: 100%; width: min(340px, 92vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,.12);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

/* ================================================================
   BUTTONS — Premium SaaS style
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .875rem;
  border-radius: var(--radius-md);
  padding: .72rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  line-height: 1.25;
  position: relative;
  letter-spacing: -.01em;
}
.btn:active { transform: scale(.98) !important; }

/* Primary — vibrant green */
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: #fff;
  border-color: var(--green-600);
  box-shadow: 0 1px 2px rgba(27,138,61,.2), 0 4px 12px rgba(27,138,61,.15), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  box-shadow: 0 2px 4px rgba(27,138,61,.25), 0 8px 20px rgba(27,138,61,.2);
  transform: translateY(-1px);
}

/* Outline */
.btn-outline {
  background: #fff;
  color: var(--navy-900);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Light ghost (for dark backgrounds) */
.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

/* Outline light */
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.25);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* Secondary (dark bg) */
.btn-secondary {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.12);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* Amber accent */
.btn-amber {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-300));
  color: var(--navy-900);
  border-color: var(--amber-400);
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(245,158,11,.2);
}
.btn-amber:hover {
  box-shadow: 0 4px 16px rgba(245,158,11,.3);
  transform: translateY(-1px);
}

/* Sizes */
.btn-sm { padding: .45rem 1rem; font-size: .8rem; border-radius: var(--radius-sm); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; display: flex; }

/* ================================================================
   CARDS — Premium glass & shadow
   ================================================================ */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-xl);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(27,138,61,.03), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(10,31,68,.08), 0 2px 8px rgba(10,31,68,.04);
  transform: translateY(-3px);
  border-color: rgba(27,138,61,.2);
}
.card:hover::before { opacity: 1; }

/* Glass card (for dark sections) */
.card-glass {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .25s, border-color .25s;
}
.card-glass:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}

/* ================================================================
   ICON TILES
   ================================================================ */
.icon-tile {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(10,31,68,.2);
  transition: all .2s;
}
.icon-tile.green {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  box-shadow: 0 2px 8px rgba(27,138,61,.25);
}
.icon-tile.amber {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
  box-shadow: 0 2px 8px rgba(245,158,11,.25);
}
.icon-tile.lg { width: 56px; height: 56px; border-radius: var(--radius-lg); }

/* ================================================================
   TAG PILLS
   ================================================================ */
.tag-pill {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  font-size: .72rem; font-weight: 600;
  padding: .22rem .7rem;
  background: var(--surface);
  color: var(--navy-900);
  border: 1px solid var(--line);
  letter-spacing: -.01em;
}
.tag-pill.green {
  background: rgba(27,138,61,.08);
  color: var(--green-700);
  border-color: rgba(27,138,61,.2);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-wrap {
  background: linear-gradient(160deg,
    var(--navy-950) 0%,
    var(--navy-900) 35%,
    #0e2847 65%,
    #091e3a 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-glow.g1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--green-600) 0%, transparent 70%);
  top: -280px; right: -150px; opacity: .12;
}
.hero-glow.g2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--amber-500) 0%, transparent 70%);
  bottom: -200px; left: -80px; opacity: .08;
}
.hero-glow.g3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  top: 20%; left: 40%; opacity: .05;
}

/* ================================================================
   COUNTRY MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px; z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--gray-50), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(-90deg, var(--gray-50), transparent); }

.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.country-item {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 0 2rem;
  height: 52px;
  border-right: 1px solid rgba(0,0,0,.06);
}
.country-flag {
  font-size: 1.25rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}
.country-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: -.01em;
}

/* Legacy support */
.marquee-wrap { overflow: hidden; }
.country-chip {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 20px;
  background: var(--navy-900); color: #fff;
  font-size: .58rem; font-weight: 700;
  border-radius: 3px; letter-spacing: .04em;
  flex-shrink: 0;
}

/* ================================================================
   STATS CARDS
   ================================================================ */
.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.stat-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section-pad { padding: 5.5rem 0; }
@media (max-width: 768px) { .section-pad { padding: 3.5rem 0; } }

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

/* ================================================================
   FAQ
   ================================================================ */
/* ================================================================
   FAQ — Premium Accordion
   ================================================================ */
.faq-wrap { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: .875rem;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover {
  border-color: rgba(27,138,61,.25);
}
.faq-item.open {
  border-color: rgba(27,138,61,.4);
  box-shadow: 0 2px 12px rgba(27,138,61,.08);
}

/* FAQ question row */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 2;
  pointer-events: all !important;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #0A1F44;
  transition: color .15s;
}
.faq-q:hover { color: #1B8A3D; }
.faq-item.open .faq-q { color: #1B8A3D; }

/* Question text */
.faq-q > span:first-child {
  flex: 1;
  line-height: 1.5;
}

/* Chevron icon */
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .2s, color .2s;
  color: #6b7280;
  pointer-events: none;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: rgba(27,138,61,.1);
  color: #1B8A3D;
}

/* Answer */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding: .5rem 1.25rem 1.1rem;
  font-size: .875rem;
  color: #4B5563;
  line-height: 1.75;
  border-top: 1px solid #f3f4f6;
}



/* FAQ question row - must be clickable */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer !important;
  user-select: none;
  position: relative;
  z-index: 2;
  pointer-events: all !important;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy-900);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.faq-q:hover { color: var(--green-600); }
.faq-item.open .faq-q { color: var(--green-600); }

/* FAQ answer */
.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a { max-height: 800px; }

.faq-a-inner {
  padding: 0 1.25rem 1.1rem;
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.7;
}

/* FAQ icon - the +/chevron */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .2s;
  pointer-events: none;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(27,138,61,.12);
  color: var(--green-600);
}
.faq-icon svg { pointer-events: none; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.65);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(27,138,61,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(245,158,11,.04) 0%, transparent 60%);
  pointer-events: none;
}
.footer-link {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  transition: color .15s;
  display: block;
  padding: .3rem 0;
  letter-spacing: -.01em;
}
.footer-link:hover { color: rgba(255,255,255,.9); }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 99;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1fad54);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35), 0 2px 8px rgba(37,211,102,.2);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  color: #fff;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 4px 12px rgba(37,211,102,.25);
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.revealed { opacity: 1 !important; transform: none !important; }

/* ================================================================
   HOVER UTILITIES (Group)
   ================================================================ */
.group:hover .group-hover\:opacity-100  { opacity: 1 !important; }
.group:hover .group-hover\:visible      { visibility: visible !important; }
.group:hover .group-hover\:rotate-180   { transform: rotate(180deg) !important; }
.group:hover .group-hover\:bg-\[var\(--green-600\)\] { background-color: var(--green-600) !important; }
.group:hover .group-hover\:bg-\[var\(--navy-800\)\]  { background-color: var(--navy-800) !important; }
.group:hover .group-hover\:scale-110    { transform: scale(1.1) !important; }

/* ================================================================
   TRANSITIONS
   ================================================================ */
.transition-colors  { transition-property: color, background-color, border-color, fill, stroke; transition-duration: .2s; transition-timing-function: cubic-bezier(.4,0,.2,1); }
.transition-all     { transition: all .2s cubic-bezier(.4,0,.2,1); }
.transition-shadow  { transition: box-shadow .2s; }
.duration-200 { transition-duration: .2s; }
.duration-300 { transition-duration: .3s; }

/* ================================================================
   MISC
   ================================================================ */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.resize-none { resize: none; }

@media (prefers-reduced-motion: reduce) {
  *, .marquee-track { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ================================================================
   MOBILE OPTIMIZATION & FORM FIXES
   ================================================================ */

/* Form inputs - always interactive, never blocked */
input, select, textarea {
  position: relative !important;
  z-index: 2 !important;
  pointer-events: all !important;
  -webkit-user-select: text !important;
  user-select: text !important;
  -webkit-appearance: none;
  appearance: none;
  color: #0A1F44;
  background: #fff;
}
select { cursor: pointer; -webkit-appearance: auto; appearance: auto; }
textarea { resize: vertical; cursor: text; }

/* card::before must never block clicks */
.card::before { pointer-events: none !important; z-index: 0 !important; }
.card > * { position: relative; z-index: 1; }

/* All overlays non-interactive */
.hero-grid-lines, .hero-glow, .site-footer::before,
.marquee-strip::before, .marquee-strip::after {
  pointer-events: none !important;
}

/* form-input class */
.form-input {
  border: 1.5px solid #E5E7EB;
  border-radius: .75rem;
  padding: .8rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #0A1F44;
  background: #fff;
  width: 100%;
  display: block;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  pointer-events: all;
}
.form-input:focus {
  outline: none;
  border-color: #1E9E4E;
  box-shadow: 0 0 0 3px rgba(30,158,78,.12);
}
.form-input::placeholder { color: #9ca3af; }
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* Mobile */
@media (max-width: 640px) {
  input, select, textarea, .form-input {
    font-size: 16px !important;
  }
  .section-pad { padding: 2.5rem 0 !important; }
  .hero-wrap[style] { padding-left: 1rem !important; padding-right: 1rem !important; }
  .btn-lg { padding: .65rem 1.1rem !important; font-size: .875rem !important; }
  .country-item { padding: 0 1rem; height: 44px; }
  .country-name { font-size: .8rem; }
}

/* Desktop nav show/hide */
@media (max-width: 1023px) {
  .lg\:block, .lg\:flex, .lg\:inline-flex { display: none !important; }
  .lg\:hidden { display: flex !important; }
}
@media (min-width: 1024px) {
  .lg\:block { display: block !important; }
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
}

/* focus accessibility */
html { scroll-padding-top: 80px; }
a:focus-visible, button:focus-visible {
  outline: 2px solid #1E9E4E;
  outline-offset: 2px;
}

/* form card */
.form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(10,31,68,.06);
  position: relative;
  z-index: 5;
}
@media (max-width: 640px) {
  .form-card { padding: 1.5rem 1.25rem; }
}


/* ================================================================
   FORM CARD - No overflow clipping on form containers
   ================================================================ */
#inquiry.card,
.form-card,
[id="inquiry"] {
  overflow: visible !important;
}

/* Forms must always be interactive */
form, form * {
  pointer-events: all;
}
form input, form select, form textarea {
  position: relative !important;
  z-index: 10 !important;
  pointer-events: all !important;
  cursor: text;
  -webkit-user-select: text;
  user-select: text;
  font-size: 16px;
  color: #0A1F44;
  background-color: #ffffff;
}
form select { cursor: pointer; }
form textarea { cursor: text; resize: vertical; }
