/* ============================================================
   DELUXE FREIGHT — style.css  v7
   Visual upgrade: 2-col hero, stats card, wave dividers,
   accent borders, trust bar, Tropical-inspired polish
   + Accessibility: skip-to-content, reduced-motion
   ============================================================ */

/* ============================================================
   CSS VARIABLES — edit to retheme the entire site
   ============================================================ */
:root {
  /* Brand colors */
  --color-navy:       #0D1F3C;
  --color-navy-mid:   #1B3A6B;
  --color-blue:       #1E5FBF;   /* accent only — nav, decorative, trust bar */
  --color-blue-light: #2B76E0;
  --color-accent:     #0EA5E9;

  /* Gold — primary button palette (matches logo) */
  --color-gold:       #f7941d;
  --color-gold-mid:   #f7941d;
  --color-gold-dark:  #c06a08;
  --color-gold-btn-from: #f7941d;
  --color-gold-btn-to:   #000000;

  --color-green:      #0D9E6E;   /* trust accent */

  /* Neutrals */
  --color-white:      #FFFFFF;
  --color-gray-50:    #F7F9FC;
  --color-gray-100:   #EEF2F8;
  --color-gray-200:   #D8E0EC;
  --color-gray-400:   #8FA3BF;
  --color-gray-600:   #4A5F78;
  --color-gray-800:   #1E2D40;
  --color-text:       #1E2D40;
  --color-text-muted: #5A6E85;

  /* Typography */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs:   0.75rem;
  --font-size-sm:   0.875rem;
  --font-size-base: 1rem;
  --font-size-md:   1.125rem;
  --font-size-lg:   1.25rem;
  --font-size-xl:   1.5rem;
  --font-size-2xl:  2rem;
  --font-size-3xl:  2.5rem;
  --font-size-4xl:  3.25rem;
  --font-size-5xl:  4rem;

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;

  /* Border radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(13,31,60,0.08), 0 1px 2px rgba(13,31,60,0.06);
  --shadow-md:   0 4px 16px rgba(13,31,60,0.10), 0 2px 6px rgba(13,31,60,0.06);
  --shadow-lg:   0 8px 28px rgba(13,31,60,0.14), 0 4px 12px rgba(13,31,60,0.08);
  --shadow-xl:   0 20px 48px rgba(13,31,60,0.18);
  --shadow-blue: 0 8px 24px rgba(30,95,191,0.35); /* kept for decorative use */
  --shadow-gold: 0 8px 24px rgba(192,140,21,0.35);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 450ms ease;

  /* Layout */
  --container-max:  1240px;
  --container-pad:  var(--space-6);
  --header-height:  72px;
  --section-pad-y:  var(--space-20);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font: inherit; border: none; background: none; }
details > summary { cursor: pointer; list-style: none; }
details > summary::-webkit-details-marker { display: none; }

h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  font-weight: 700;
}
h1 { font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl)); }
h2 { font-size: clamp(var(--font-size-2xl), 3.5vw, var(--font-size-3xl)); }
h3 { font-size: var(--font-size-lg); font-weight: 600; }
h4 { font-size: var(--font-size-base); font-weight: 600; }

p { color: var(--color-text-muted); max-width: 68ch; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section          { padding-block: var(--section-pad-y); }
.section--alt     { background: var(--color-gray-50); }
.section--dark    { background: var(--color-navy); }

/* ============================================================
   WAVE DIVIDERS (Tropical-inspired)
   ============================================================ */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -1px;
}
.wave-divider svg { width: 100%; height: 60px; display: block; }

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.hero__wave svg { width: 100%; height: 80px; display: block; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-header h2 { margin-bottom: var(--space-4); }
.section-sub {
  font-size: var(--font-size-md);
  max-width: 56ch;
  margin-inline: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.section-eyebrow--light { color: var(--color-gold-mid); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

.btn--sm  { padding: var(--space-2) var(--space-4); font-size: var(--font-size-xs); border-radius: var(--radius-md); }
.btn--lg  { padding: 0.9rem var(--space-8); font-size: var(--font-size-base); }

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-btn-from) 0%, var(--color-gold-btn-to) 100%);
  color: var(--color-white);
  border-color: var(--color-gold-mid);
  box-shadow: 0 4px 16px rgba(192,140,21,0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-gold-mid) 0%, #1a1200 100%);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192,140,21,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold-mid);
  border-color: var(--color-gold-mid);
}
.btn--outline:hover {
  background: linear-gradient(135deg, var(--color-gold-btn-from) 0%, var(--color-gold-btn-to) 100%);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192,140,21,0.35);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

.btn--ghost {
  background: rgba(255,255,255,0.10);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn--light:hover {
  background: var(--color-gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   ANNIVERSARY BANNER
   ============================================================ */
.anniversary-banner {
  background: linear-gradient(90deg, #0B1D38 0%, #1B3A6B 60%, #0B1D38 100%);
  color: var(--color-white);
  padding: 10px 0;
  position: relative;
  z-index: 200;
  border-bottom: 1px solid rgba(200,153,58,0.25);
}
.anniversary-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
}
.anniversary-banner__icon { color: var(--color-gold); font-size: 1rem; flex-shrink: 0; }
.anniversary-banner p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.9);
  max-width: none;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}
.anniversary-banner strong { color: var(--color-gold); }
.anniversary-banner__inner > * { min-width: 0; overflow-wrap: break-word; word-break: break-word; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-100);
  transition: box-shadow var(--transition-base);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.header.is-scrolled { box-shadow: 0 2px 20px rgba(13,31,60,0.10); }

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray-600);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: left var(--transition-base), right var(--transition-base);
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--color-navy);
  background: var(--color-gray-50);
}
.nav__link.is-active::after { left: var(--space-3); right: var(--space-3); }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }

/* Hamburger — 48px minimum touch target per Apple/Google UX guidelines */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  margin-left: auto;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--color-gray-100); }
.hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 99;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu__list { padding: var(--space-4) 0; }
.mobile-menu__link {
  display: block;
  padding: var(--space-3) var(--container-pad);
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-gray-800);
  transition: background var(--transition-fast), color var(--transition-fast);
  border-left: 3px solid transparent;
}
.mobile-menu__link:hover { background: var(--color-gray-50); color: var(--color-blue); border-left-color: var(--color-blue); }
.mobile-menu__ctas {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) var(--container-pad) var(--space-6);
  border-top: 1px solid var(--color-gray-100);
  margin-top: var(--space-2);
}

/* ============================================================
   HERO — 2-column layout with stats card
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--color-navy);
  background-image:
    radial-gradient(ellipse at 70% 110%, rgba(30,95,191,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at -5% 30%, rgba(14,165,233,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(27,58,107,0.8) 0%, transparent 45%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-bottom: 80px; /* room for wave */
}

/* Vertical gradient overlay: 50% navy → 100% navy at bottom */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,31,60,0.50) 0%,
    rgba(13,31,60,1.00) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Decorative circles */
.hero__decor {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  opacity: 0.07;
}
.hero__decor--circle1 {
  width: 480px; height: 480px;
  background: var(--color-accent);
  top: -180px; right: -100px;
  border: 1px solid rgba(14,165,233,0.3);
  opacity: 0.08;
}
.hero__decor--circle2 {
  width: 300px; height: 300px;
  background: var(--color-blue);
  bottom: 60px; left: -80px;
  opacity: 0.10;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-12);
  align-items: center;
  padding-block: var(--space-20);
  width: 100%;
}

.hero__content { max-width: 600px; overflow-wrap: break-word; word-break: break-word; }

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-mid);
  margin-bottom: var(--space-5);
}
.hero__eyebrow-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--color-gold-mid);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 3px rgba(192,140,21,0.25);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(14,165,233,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(14,165,233,0.08); }
}

.hero__headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--space-6);
}
.hero__headline em { font-style: normal; color: var(--color-accent); }

.hero__sub {
  font-size: var(--font-size-md);
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-10);
  text-align: justify;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.hero__ctas > * { overflow-wrap: break-word; word-break: break-word; }

/* Hero right: stats glass card */
.hero__right {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  align-self: stretch;
  min-height: 320px;
  isolation: isolate;
}

/* Video fills the box */
.hero__right-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay */
.hero__right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(9,24,40,0.45) 0%, rgba(9,24,40,0.65) 100%);
  z-index: 1;
}

/* Content: centered over video */
.hero__right-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-8);
  text-align: center;
}

/* Logo icon above title */
.hero__right-icon {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Title block */
.hero__right-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
}

/* Big "#1" */
.hero__right-num {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* "Grand Cayman Service Provider" */
.hero__right-sub {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  text-align: center;
}

.hero__stats-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-6);
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}
.hero__stats-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-6);
}
.hero__stats-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition-base);
}
.hero__stat:hover { background: rgba(255,255,255,0.10); }

.hero__stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero__stat-number sup { font-size: 0.5em; vertical-align: super; }
.hero__stat-desc {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.hero__track-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-4);
  background: linear-gradient(135deg, var(--color-gold-btn-from) 0%, var(--color-gold-btn-to) 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 1px solid var(--color-gold-mid);
  box-shadow: 0 4px 16px rgba(192,140,21,0.4);
}
.hero__track-btn:hover {
  background: linear-gradient(135deg, var(--color-gold-mid) 0%, #1a1200 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(192,140,21,0.5);
}

/* ============================================================
   QUICK ACTIONS BAR
   ============================================================ */
.actions-bar {
  background: var(--color-white);
  padding-block: var(--space-10);
  border-bottom: 1px solid var(--color-gray-100);
}
.actions-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-7, 1.75rem) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  border-top: 4px solid var(--color-gold-mid); /* gold accent border */
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.action-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.action-card__icon {
  width: 48px; height: 48px;
  color: var(--color-gold-mid);
  background: rgba(192,140,21,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
}
.action-card__icon svg { width: 100%; height: 100%; }
.action-card__text h3 { font-size: var(--font-size-base); color: var(--color-navy); margin-bottom: var(--space-1); overflow-wrap: break-word; word-break: break-word; }
.action-card__text p  { font-size: var(--font-size-sm); max-width: none; overflow-wrap: break-word; word-break: break-word; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-100);
  padding-block: var(--space-5);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray-600);
}
.trust-item svg { color: var(--color-accent); flex-shrink: 0; width: 20px; height: 20px; }
.trust-bar__divider {
  display: block;
  width: 1px;
  height: 20px;
  background: var(--color-gray-200);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}
.services__cta { text-align: center; margin-top: var(--space-12); }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  border-top: 4px solid transparent;           /* Tropical accent border */
  background-image: linear-gradient(var(--color-white), var(--color-white)),
                    linear-gradient(90deg, var(--color-blue), var(--color-accent));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}
/* Gold top borders on service cards */
.service-card {
  background: var(--color-white);
  border-top: 4px solid var(--color-gold);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}


.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(192,140,21,0.07);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  color: var(--color-gold);
  transition: background var(--transition-base);
}
.service-card:hover .service-card__icon { background: rgba(192,140,21,0.14); }
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title { font-size: var(--font-size-lg); color: var(--color-navy); }
.service-card__desc  { font-size: var(--font-size-sm); line-height: 1.7; flex: 1; max-width: none; }
.service-card__link  {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-gold);
  margin-top: auto;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.service-card__link:hover { gap: var(--space-2); color: var(--color-gold-mid); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about__image-col { position: relative; }
.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-200) 100%);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
  font-size: var(--font-size-sm);
  font-weight: 500;
  font-style: italic;
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  position: relative;
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  display: block;
}
/* Decorative ring behind photo */
.about__image-col::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--color-gray-200);
  border-radius: calc(var(--radius-2xl) + 12px);
  pointer-events: none;
  z-index: 0;
}
.about__image-placeholder { position: relative; z-index: 1; }

.about__badge {
  position: absolute;
  z-index: 2;
  bottom: calc(-1 * var(--space-5));
  left: var(--space-6);
  background: linear-gradient(135deg, var(--color-gold-btn-from) 0%, var(--color-gold-btn-to) 100%);
  color: var(--color-white);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.about__badge-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.about__badge-number sup { font-size: 0.5em; }
.about__badge-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 4px;
}

.about__content-col { display: flex; flex-direction: column; gap: var(--space-5); }
.about__content-col h2 { margin-bottom: 0; }
.about__content-col p, .about__body p { text-align: justify; }

.about__highlights { display: flex; flex-direction: column; gap: var(--space-3); margin-block: var(--space-2); }
.about__highlights li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray-800);
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  border-left: 3px solid var(--color-gold-mid);
  box-shadow: var(--shadow-sm);
}
.about__highlight-icon {
  width: 22px; height: 22px;
  background: rgba(192,140,21,0.10);
  color: var(--color-gold);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   FOUNDER STORY SECTION
   ============================================================ */
.founder-story {
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
}

.founder-story__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* Image column */
.founder-story__image-col { position: relative; }

.founder-story__image-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.founder-story__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  aspect-ratio: 3/4;
}

/* "Founded 1996" badge */
.founder-story__since-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: linear-gradient(135deg, var(--color-gold-btn-from) 0%, var(--color-gold-btn-to) 100%);
  color: var(--color-white);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-story__since-year {
  font-size: var(--font-size-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.founder-story__since-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-top: 2px;
}

/* Content column */
.founder-story__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding-top: var(--space-4);
}

.founder-story__headline {
  font-size: clamp(var(--font-size-2xl), 3.5vw, var(--font-size-3xl));
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 0;
}

.founder-story__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  border-left: 3px solid var(--color-gold-mid);
  padding-left: var(--space-6);
}

.founder-story__body p {
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 62ch;
  text-align: justify;
}

/* Closing emphasis quote */
.founder-story__closing {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
  border: none;
  margin: 0;
  padding: var(--space-6) var(--space-8);
  background: var(--color-gray-50);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-gold);
  position: relative;
}
.founder-story__closing::before {
  content: '\201C';
  position: absolute;
  top: var(--space-3);
  left: var(--space-4);
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.4;
  line-height: 1;
  font-family: Georgia, serif;
}

/* Source credit */
.founder-story__source {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
  font-style: italic;
  max-width: none;
  letter-spacing: 0.02em;
  margin-top: calc(-1 * var(--space-3));
}

/* Responsive */
@media (max-width: 1024px) {
  .founder-story__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .founder-story__image-wrap { max-width: 420px; }
  .founder-story__photo { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .founder-story__body { padding-left: var(--space-4); }
  .founder-story__closing { font-size: var(--font-size-lg); padding: var(--space-5) var(--space-6); }
  .founder-story__image-wrap { max-width: 100%; }
}

/* ============================================================
   30TH ANNIVERSARY SECTION
   ============================================================ */
.anniversary {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-24);
  background-color: var(--color-navy);
  background-image:
    linear-gradient(135deg, rgba(9,24,40,0.88) 0%, rgba(13,31,60,0.80) 50%, rgba(13,34,72,0.88) 100%),
    url('images/anniversary-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.anniversary__watermark {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.06em;
  user-select: none;
}
/* Top wave */
.anniversary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), rgba(200,153,58,0.3), var(--color-gold));
}

.anniversary__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-16);
  align-items: center;
}
.anniversary__inner > * { min-width: 0; }

.anniversary__badge-large {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #e8b84b 50%, var(--color-gold) 100%);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  box-shadow:
    0 0 0 14px rgba(200,153,58,0.12),
    0 0 0 28px rgba(200,153,58,0.05),
    0 20px 40px rgba(0,0,0,0.4);
}
.anniversary__badge-large span {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.05em;
}
.anniversary__badge-large small {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(13,31,60,0.7);
}

.anniversary__content { display: flex; flex-direction: column; gap: var(--space-5); overflow-wrap: break-word; word-break: break-word; min-width: 0; }
.anniversary__content h2 { color: var(--color-white); }
.anniversary__content p  { color: rgba(255,255,255,0.72); max-width: 66ch; text-align: justify; }
.anniversary__ctas { margin-top: var(--space-2); }

/* ============================================================
   FORMS & LINKS
   ============================================================ */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-5);
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-7, 1.75rem) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  border-top: 4px solid var(--color-gold);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-top-color var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.link-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-top-color: var(--color-gold-mid);
}
.link-card__icon { font-size: 2rem; }
.link-card h3    { font-size: var(--font-size-base); color: var(--color-navy); overflow-wrap: break-word; word-break: break-word; }
.link-card p     { font-size: var(--font-size-sm); max-width: none; overflow-wrap: break-word; word-break: break-word; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-6); }

/* Centered 2-card layout */
.team__grid--centered {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

.team__note {
  text-align: center;
  margin-top: var(--space-10);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.team__note a { color: var(--color-blue); font-weight: 500; }
.team__note a:hover { text-decoration: underline; }

.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-gray-100);
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__info { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); }
.team-card__name { font-size: var(--font-size-base); color: var(--color-navy); font-weight: 700; }
.team-card__role {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}
.team-card__bio { font-size: var(--font-size-sm); margin-top: var(--space-1); max-width: none; }

/* ============================================================
   FAQS
   ============================================================ */
.faqs__inner { max-width: 760px; margin-inline: auto; }
.faqs__list  { display: flex; flex-direction: column; gap: var(--space-3); }

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item[open] { border-color: var(--color-gold-mid); box-shadow: var(--shadow-md); }

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-navy);
  transition: background var(--transition-fast);
  user-select: none;
  overflow-wrap: break-word;
  word-break: break-word;
}
.faq-item__question::after {
  content: '+';
  font-size: var(--font-size-xl);
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-left: var(--space-4);
  transition: transform var(--transition-base);
}
.faq-item[open] .faq-item__question::after { content: '−'; }
.faq-item__question:hover { background: var(--color-gray-50); }
.faq-item__answer {
  padding: 0 var(--space-6) var(--space-5);
  border-top: 1px solid var(--color-gray-100);
  overflow-wrap: break-word;
  word-break: break-word;
}
.faq-item__answer p {
  font-size: var(--font-size-sm);
  line-height: 1.75;
  max-width: none;
  padding-top: var(--space-4);
}
.faq-item__answer a { color: var(--color-blue); font-weight: 500; }
.faq-item__answer a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: var(--space-5); min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.contact__info h2  { color: var(--color-white); }
.contact__info > p { color: rgba(255,255,255,0.7); max-width: 52ch; }

.contact__details { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-2); }
.contact__details li { display: flex; flex-direction: column; gap: var(--space-1); }
.contact__detail-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-mid);
}
.contact__detail-value { font-size: var(--font-size-base); color: rgba(255,255,255,0.9); line-height: 1.5; overflow-wrap: break-word; word-break: break-word; }
a.contact__detail-value:hover { color: var(--color-accent); text-decoration: underline; }

.contact__map-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: var(--font-size-sm);
  gap: var(--space-2);
}
.contact__map-placeholder small { font-size: var(--font-size-xs); opacity: 0.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--color-gray-800); color: rgba(255,255,255,0.7); }
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr);
  gap: var(--space-10);
  padding-block: var(--space-16);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-4); min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.footer__logo  { display: inline-flex; align-items: center; }
.footer__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* white SVG logo — no filter needed */
}
.footer__tagline { font-size: var(--font-size-sm); line-height: 1.7; max-width: 34ch; color: rgba(255,255,255,0.5); overflow-wrap: break-word; word-break: break-word; }

.footer__nav { display: flex; flex-direction: column; gap: var(--space-4); min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.footer__nav-title {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-1);
}
.footer__nav ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__nav a  { font-size: var(--font-size-sm); color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.footer__nav a:hover { color: var(--color-white); }

.footer__contact { display: flex; flex-direction: column; gap: var(--space-3); min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.footer__contact address { font-size: var(--font-size-sm); line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer__contact a { font-size: var(--font-size-sm); color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.footer__contact a:hover { color: var(--color-white); }
.footer__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-3); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-5);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer__bottom p   { font-size: var(--font-size-xs); color: rgba(255,255,255,0.3); max-width: none; }
.footer__bottom a   { color: rgba(255,255,255,0.4); font-size: var(--font-size-xs); transition: color var(--transition-fast); }
.footer__bottom a:hover { color: var(--color-white); }

/* ============================================================
   RESPONSIVE — Tablet ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad-y: var(--space-16); }

  .hero__inner { grid-template-columns: 1fr; max-width: 640px; }
  .hero__right { display: none; } /* hide stats card, too cramped */

  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer__brand { grid-column: span 2; }

  .about__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .about__image-col { max-width: 480px; margin-inline: auto; width: 100%; }

  .anniversary__inner { grid-template-columns: auto 1fr; gap: var(--space-10); }
  .contact__inner { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* ============================================================
   RESPONSIVE — Mobile ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad-y: var(--space-12); --container-pad: var(--space-5); }

  .nav, .header__actions { display: none; }
  .hamburger { display: flex; }

  .anniversary-banner p { font-size: var(--font-size-xs); }

  .hero { min-height: 500px; padding-bottom: 60px; }
  .hero__inner { padding-block: var(--space-14) var(--space-16); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__wave svg { height: 50px; }

  .trust-bar__divider { display: none; }
  .trust-bar__inner { gap: var(--space-4); justify-content: flex-start; }

  .actions-bar__inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .services__grid { grid-template-columns: 1fr; }

  .about__image-col::before { display: none; }
  .about__badge { left: var(--space-4); }

  .anniversary__inner { grid-template-columns: 1fr; text-align: center; gap: var(--space-8); }
  .anniversary__badge-large { margin-inline: auto; width: 120px; height: 120px; }
  .anniversary__badge-large span { font-size: 2.8rem; }
  .anniversary__badge-large small { font-size: 0.75rem; }
  .anniversary__content p { margin-inline: auto; }
  .anniversary__ctas { display: flex; justify-content: center; }
  .anniversary__watermark { font-size: clamp(8rem, 18vw, 14rem); }

  .founder-story__closing { font-size: var(--font-size-lg); padding: var(--space-4) var(--space-5); }

  .links-grid { grid-template-columns: 1fr 1fr; }
  .team__grid, .team__grid--centered { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }

  .faq-item__question { padding: var(--space-4) var(--space-5); }
  .faq-item__answer { padding: 0 var(--space-5) var(--space-4); }

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
}

/* ============================================================
   RESPONSIVE — Small-medium mobile ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .links-grid { grid-template-columns: 1fr; }
  .about__badge { left: var(--space-2); }
  .founder-story__closing { padding: var(--space-3) var(--space-4); }
  .anniversary__watermark { display: none; }
}

/* ============================================================
   RESPONSIVE — Small mobile ≤ 420px
   ============================================================ */
@media (max-width: 420px) {
  .mobile-menu__ctas { flex-direction: column; }
  .hero__ctas .btn { font-size: var(--font-size-sm); }
  .anniversary__badge-large { width: 90px; height: 90px; }
  .anniversary__badge-large span { font-size: 2.2rem; }
  .anniversary__badge-large small { font-size: 0.65rem; }
  .faq-item__question { padding: var(--space-3) var(--space-4); font-size: var(--font-size-sm); }
  .faq-item__answer { padding: 0 var(--space-4) var(--space-3); }
}

/* ============================================================
   ACCESSIBILITY — Skip-to-content link (FE-008 / A11Y-001)
   Visually hidden until focused by keyboard navigation
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only--focusable:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid var(--color-gold);
}

/* ============================================================
   HELP WIDGET — Floating help panel
   ============================================================ */

/* Button */
.help-widget {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 500;
  font-family: var(--font-base);
}

.help-widget__btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition-base), transform var(--transition-fast);
}

.help-widget__btn:hover {
  background: var(--color-navy-mid);
  transform: scale(1.05);
}

.help-widget__btn svg {
  width: 24px;
  height: 24px;
}

.help-widget__btn-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.help-widget__btn:hover .help-widget__btn-label {
  opacity: 1;
}

/* Hide label when panel is open */
.help-widget.is-open .help-widget__btn-label {
  display: none;
}

/* Panel */
.help-widget__panel {
  position: fixed;
  bottom: calc(var(--space-6) + 56px + var(--space-4));
  right: var(--space-6);
  width: 360px;
  max-width: calc(100vw - var(--space-6) * 2);
  max-height: 70vh;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  z-index: 501;
  transform: translateY(10px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base);
  overflow: hidden;
}

.help-widget__panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Panel Header */
.help-widget__panel-header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  padding: var(--space-5) var(--space-5) var(--space-4);
  position: relative;
  flex-shrink: 0;
}

.help-widget__panel-title {
  color: #fff;
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 var(--space-8) var(--space-1) 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.help-widget__panel-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  margin: 0 var(--space-8) 0 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.help-widget__panel-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: var(--font-size-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  line-height: 1;
}

.help-widget__panel-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Panel Body (scrollable) */
.help-widget__panel-body {
  padding: var(--space-4);
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  background: var(--color-gray-50);
}

/* Cards */
.help-widget__card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.help-widget__card:last-child {
  margin-bottom: 0;
}

.help-widget__card:hover {
  border-color: var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.help-widget__card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--font-size-lg);
}

.help-widget__card-icon svg {
  width: 20px;
  height: 20px;
}

.help-widget__card-icon--contact {
  background: rgba(30, 95, 191, 0.1);
  color: var(--color-blue);
}

.help-widget__card-icon--faqs {
  background: rgba(247, 148, 29, 0.1);
  color: var(--color-gold);
}

.help-widget__card-icon--links {
  background: rgba(13, 158, 110, 0.1);
  color: var(--color-green);
}

.help-widget__card-icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.help-widget__card-body {
  flex: 1;
  min-width: 0;
}

.help-widget__card-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  word-break: break-word;
}

.help-widget__card-desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 2px 0 0 0;
  word-break: break-word;
}

.help-widget__card-arrow {
  flex-shrink: 0;
  color: var(--color-gray-400);
  font-size: var(--font-size-md);
  transition: transform var(--transition-fast);
}

.help-widget__card:hover .help-widget__card-arrow {
  transform: translateX(2px);
  color: var(--color-gold);
}

/* Mobile: bottom sheet */
@media (max-width: 768px) {
  .help-widget {
    bottom: var(--space-4);
    right: var(--space-4);
  }

  .help-widget__btn {
    width: 48px;
    height: 48px;
  }

  .help-widget__btn svg {
    width: 20px;
    height: 20px;
  }

  .help-widget__btn-label {
    display: none;
  }

  .help-widget__panel {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
  }

  .help-widget__panel.is-open {
    transform: translateY(0);
  }
}

/* Backdrop for mobile */
.help-widget__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 499;
}

@media (max-width: 768px) {
  .help-widget__backdrop.is-open {
    display: block;
  }
}

/* ============================================================
   ACCESSIBILITY — Reduced motion (A11Y-006)
   Disable transitions and animations for users who prefer it
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-hidden {
    opacity: 1 !important;
    transform: none !important;
  }
}
