/* PhantomWebsite — main stylesheet.
   Industrial-mature rebrand: navy + muted brass, warm grays, thin lines,
   Heebo Hebrew type, clean line-icons. RTL, responsive.
   Heebo is loaded via <link> in each page's <head>. */

:root {
  /* ink / text */
  --ink: #161A20;
  --ink-soft: #39414E;
  --ink-muted: #6B7480;
  /* surfaces (warm, concrete-leaning) */
  --surface: #FFFFFF;
  --surface-2: #F5F5F2;
  --surface-3: #EAE8E2;
  --line: #DCDAD2;
  /* brand navy */
  --accent: #16304F;
  --accent-2: #21436A;
  --accent-deep: #0F2238;
  /* brand blue — sampled from the PHANTOM logo (replaces the old gold accent).
     Token names kept as --brass* to avoid touching every rule. */
  --brass: #1670B8;        /* primary accent / CTA / highlights on light */
  --brass-light: #79B4E8;  /* highlights on dark backgrounds (lightened for WCAG AA contrast on navy) */
  --brass-dark: #0F5489;   /* accent text weight on white (AA contrast) */
  --steel: #586475;
  --danger: #B91C1C;
  --success: #059669;
  /* focus ring — brand blue (a11y: visible focus for keyboard users) */
  --focus-ring: 0 0 0 3px rgba(22,112,184,0.40);
  /* shape */
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgba(16,24,40,.06), 0 6px 18px rgba(16,24,40,.05);
  --shadow-lg: 0 12px 40px rgba(16,24,40,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', 'Segoe UI', 'Arial Hebrew', 'Helvetica Neue', Arial, sans-serif;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── ICONS (line system) ── */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1.25em; height: 1.25em;
  display: inline-block; vertical-align: -0.18em;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* ── FOCUS (a11y: visible keyboard focus on all interactive elements) ── */
a:focus-visible, button:focus-visible, select:focus-visible,
input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: var(--radius);
}
/* Inputs keep their soft ring instead of an offset outline */
.form-group input:focus-visible, .form-group select:focus-visible,
.form-group textarea:focus-visible { outline: none; }

/* ── SKIP LINK (a11y: keyboard users jump to main content) ── */
.skip-link {
  position: absolute;
  right: 1rem;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── NAV ── */
/* Scoped to #main-nav so other <nav> elements (e.g. .breadcrumb) stay in normal flow */
#main-nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, border-color 0.3s;
}
#main-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 84px; width: auto; display: block; }
.nav-logo span { color: var(--brass); }
.nav-links { display: flex; gap: 0.15rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--accent); background: var(--surface-2); }
.nav-cta {
  background: var(--brass);
  color: #fff !important;
  font-weight: 700;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--brass-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--accent-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Phantom site hero (branded vests, Israeli flag). Dark on the text side
     (right, RTL), lighter on the left so the scene stays visible. */
  background-image:
    linear-gradient(100deg, rgba(15,34,56,0.92) 0%, rgba(15,34,56,0.68) 45%, rgba(15,34,56,0.34) 100%),
    url('/images/hero-site.jpg');
  background-size: cover;
  background-position: center 38%;
}
/* hairline industrial grid overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to left, transparent, black 60%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 2rem 70px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90,160,220,0.16);
  border: 1px solid rgba(90,160,220,0.45);
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-badge .icon { width: 1em; height: 1em; }
.hero-h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-h1 em { font-style: normal; color: var(--brass-light); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.76);
  margin-bottom: 1.75rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brass);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--brass-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }
.btn-wa { background: #1f8f4e; border-color: transparent; }
.btn-wa:hover { background: #19763f; }

/* hero proof row (qualitative, replaces unproven numbers) */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.6rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.proof-item .icon { color: var(--brass-light); width: 1.15em; height: 1.15em; }

/* hero form card (compact, 3 fields) */
.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--brass);
  align-self: start;
}
.hero-form-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.hero-form-card .form-lead {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
}
/* Compact the hero lead form (~25% tighter) without touching the contact form */
.hero-form-card .form-group { margin-bottom: 0.55rem; }
.hero-form-card .form-group label { font-size: 0.76rem; margin-bottom: 3px; }
.hero-form-card .form-group input,
.hero-form-card .form-group select { padding: 8px 11px; font-size: 0.88rem; }
.hero-form-card .form-note { margin-top: 0.55rem; }
.form-group { margin-bottom: 0.8rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--surface);
  direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(22,112,184,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--accent-deep); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-submit.is-success { background: var(--success); color: #fff; opacity: 1; }

/* Inline per-field validation */
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.12);
}
.field-error {
  display: block;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 5px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 0.85rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-note .icon { width: 1em; height: 1em; color: var(--brass-dark); }

/* Form status message */
.form-status {
  display: none;
  padding: 12px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}
.form-status.success { background: #DEF3E6; color: #11663B; display: block; }
.form-status.error { background: #FCE6E6; color: #99211B; display: block; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 2rem;
}
.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-item .icon { width: 1.35em; height: 1.35em; color: var(--brass); flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 84px 2rem; }
.container { max-width: 1180px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 8px;
}
.section-header.center .section-eyebrow { justify-content: center; }
.section-eyebrow::before {
  content: ''; width: 22px; height: 2px; background: var(--brass); display: inline-block;
}
.section-header.center .section-eyebrow::before { display: none; }
.section-title {
  font-size: clamp(1.7rem, 2.9vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.04rem;
  color: var(--ink-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── ABOUT ── */
#about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.35rem;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  border-top: 3px solid var(--brass);
}
.about-accent small { display: block; font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-top: 3px; }
.about-lead { color: var(--ink-soft); margin-bottom: 1.3rem; line-height: 1.85; }
.about-features { margin-top: 1.75rem; display: grid; gap: 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.about-feature:last-child { border-bottom: none; }
.about-feature .icon { width: 1.6em; height: 1.6em; color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.about-feature-title { font-size: 0.98rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.about-feature-text { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.6; }

/* ── PROFESSIONS (the one section that keeps cards) ── */
#professions { background: var(--surface-2); }
.professions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.profession-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profession-card:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.profession-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--brass);
}
.profession-icon .icon { width: 1.5em; height: 1.5em; }
.profession-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.profession-desc { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.55; margin-bottom: 0.9rem; flex: 1; }
.profession-link { font-size: 0.85rem; font-weight: 700; color: var(--brass-dark); display: inline-flex; align-items: center; gap: 5px; }
.profession-card:hover .profession-link { gap: 9px; }
.profession-link .icon { width: 1em; height: 1em; }

/* ── COUNTRIES (credibility / regulated international sourcing) ── */
#countries { background: var(--accent-deep); color: #fff; }
#countries .section-title { color: #fff; }
#countries .section-eyebrow { color: var(--brass-light); }

/* world map with subtle source-country markers */
.countries-map { position: relative; max-width: 680px; margin: 2.5rem auto 0; }
.world-map { width: 100%; height: auto; display: block; opacity: 0.92; }
.map-marker {
  position: absolute;
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
}
.map-marker::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 0 3px rgba(121,180,232,0.28), 0 0 8px rgba(121,180,232,0.7);
}
.map-marker::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(121,180,232,0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .map-marker::after { animation: markerPulse 2.6s ease-out infinite; }
}
@keyframes markerPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  70%, 100% { transform: scale(2.1); opacity: 0; }
}
.marker-label {
  position: absolute;
  bottom: 150%; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--accent-deep);
  font-size: 0.72rem; font-weight: 700; white-space: nowrap;
  padding: 3px 8px; border-radius: 4px;
  opacity: 0; pointer-events: none; transition: opacity 0.18s;
  box-shadow: var(--shadow);
}
.map-marker:hover .marker-label { opacity: 1; }

/* minimalist flag + name chips */
.countries-list {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem 0.85rem;
  max-width: 820px; margin: 2.25rem auto 0; padding: 0;
}
.country-chip {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #fff; font-weight: 600; font-size: 0.92rem;
}
.country-chip img {
  width: 26px; height: auto; display: block;
  border-radius: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}
a.country-chip { text-decoration: none; transition: transform 0.15s, border-color 0.15s, background 0.15s; }
a.country-chip:hover { border-color: var(--brass-light); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.countries-note {
  max-width: 760px; margin: 2.25rem auto 0;
  text-align: center; font-size: 0.9rem; line-height: 1.8;
  color: rgba(255,255,255,0.66);
}

/* ── PROCESS ── */
#process { background: var(--surface); }
/* premium connected process steps */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
/* very subtle progress line linking the steps (peeks through the gaps only) */
.process-grid::before {
  content: "";
  position: absolute;
  top: 44px;            /* aligned to the icon's vertical center */
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(22,112,184,0.30), rgba(22,112,184,0.14));
  z-index: 0;
}
.process-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.95rem 1.3rem 0.9rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(16,24,40,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.process-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--brass);
}
.process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.process-step-num {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--brass);
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
}
.process-card.is-lead .process-step-num { color: var(--accent); opacity: 0.8; }
.process-card-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: rgba(22,112,184,0.10);
  color: var(--brass);
  display: grid; place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.process-card-icon .icon { width: 30px; height: 30px; }
.process-card:hover .process-card-icon { background: var(--brass); color: #fff; }
.process-card-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.process-card-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 0.6rem; flex: 1 1 auto; }
.process-card-time {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  font-size: 0.78rem; font-weight: 600;
  color: var(--brass-dark);
  background: rgba(22,112,184,0.08);
  padding: 5px 11px;
  border-radius: 999px;
}
.process-card-time .icon { width: 1em; height: 1em; }

/* STEP 1 — emphasized entry point (clear hierarchy over the rest) */
.process-card.is-lead {
  background: linear-gradient(180deg, rgba(22,112,184,0.055), var(--surface) 62%);
  border-color: var(--brass);
  box-shadow: 0 6px 22px rgba(22,112,184,0.12);
}
.process-card.is-lead::after {
  content: "";
  position: absolute;
  top: -1px; right: -1px; left: -1px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.process-card.is-lead .process-card-icon { background: var(--accent); color: #fff; }
.process-card.is-lead .process-card-title { color: var(--accent); }

/* responsive: drop to fewer columns and hide the connector once steps wrap */
@media (max-width: 1000px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 620px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ── WHY US (systematic feature list, not boxed cards) ── */
#why { background: var(--surface-2); }
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3.5rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon .icon { width: 1.45em; height: 1.45em; }
.why-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.why-text { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.6; }

/* ── OUTCOMES (replaces fictional testimonials) ── */
#outcomes { background: var(--accent-deep); color: #fff; }
#outcomes .section-title { color: #fff; }
#outcomes .section-sub { color: rgba(255,255,255,0.72); }
#outcomes .section-eyebrow { color: var(--brass-light); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.outcome {
  background: var(--accent-deep);
  padding: 1.75rem;
}
.outcome .icon { width: 1.7em; height: 1.7em; color: var(--brass-light); margin-bottom: 0.85rem; }
.outcome h3 { font-size: 1.02rem; font-weight: 700; color: #fff; margin-bottom: 0.45rem; }
.outcome p { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.65; }

/* ── SECTORS ── */
#sectors { background: var(--surface); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.sector-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.sector-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: saturate(0.9); }
.sector-card:hover img { transform: scale(1.04); }
.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,34,56,0.92) 0%, rgba(15,34,56,0.15) 65%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.sector-name { color: #fff; font-size: 1.02rem; font-weight: 700; margin-bottom: 0.25rem; }
.sector-desc { color: rgba(255,255,255,0.75); font-size: 0.78rem; }

/* ── FAQ ── */
#faq { background: var(--surface-2); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  padding: 0;
  font-family: inherit;
}
.faq-arrow {
  width: 26px; height: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s, color 0.2s;
  color: var(--ink-soft);
}
.faq-arrow .icon { width: 1.1em; height: 1.1em; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--brass); border-color: var(--brass); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 360px; padding-top: 0.8rem; }

/* ── CONTACT ── */
#contact { background: var(--accent); color: #fff; }
#contact .section-title { color: #fff; }
#contact .section-sub { color: rgba(255,255,255,0.72); }
#contact .section-eyebrow { color: var(--brass-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.86);
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-light);
  flex-shrink: 0;
}
.contact-icon .icon { width: 1.25em; height: 1.25em; }
.contact-detail a { color: inherit; text-decoration: none; }
.contact-detail a:hover { color: var(--brass-light); }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--brass);
}
.contact-form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.contact-form-card .form-lead { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 1.25rem; }

/* ── Contact form: modern floating-label fields (Stripe / Linear / Notion vibe) ── */
.contact-form-card { padding: 1.7rem; }                 /* tighter card (~15% shorter) */
.contact-form-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.contact-form-card .form-lead { margin-bottom: 1rem; }
.contact-form-card .form-group { position: relative; margin-bottom: 0.55rem; }
.contact-form-card .form-group label {
  position: absolute;
  inset-inline-start: 11px;          /* right edge in RTL */
  top: 13px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-muted);
  background: #fff;
  padding: 0 5px;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
}
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
  padding: 16px 13px 7px;            /* leaves room for the floated label; compact */
  font-size: 0.93rem;
  background: #fff;
}
.contact-form-card .form-group textarea { min-height: 62px; padding-top: 19px; }
/* float label up: on focus, when filled, and always for the <select>.
   Sibling selectors (label comes after the control in the DOM) — works
   dynamically in every browser, unlike :has(). */
.contact-form-card .form-group:focus-within label,
.contact-form-card .form-group.is-filled label,
.contact-form-card .form-group input:not(:placeholder-shown) ~ label,
.contact-form-card .form-group textarea:not(:placeholder-shown) ~ label,
.contact-form-card .form-group select ~ label {
  top: -7px;
  font-size: 0.71rem;
  font-weight: 600;
  color: var(--brass-dark);
}
/* Native <select> ignores the asymmetric floating-label padding and clips its
   text. Strip the native chrome and supply our own arrow so padding is honored. */
.contact-form-card .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%2364748b" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: left 13px center;  /* RTL (site default): arrow on inline-end = left */
  padding-inline-end: 34px;
}
.join-page .form-group select {
  background-position: right 13px center;  /* LTR (join pages): arrow on inline-end = right */
}
.contact-form-card .form-submit { margin-top: 0.4rem; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.68);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-top.cols-4 { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { font-size: 1.25rem; font-weight: 800; color: var(--brass-light); margin-bottom: 0.85rem; }
.footer-logo span { color: #fff; }
.footer-about { font-size: 0.85rem; line-height: 1.75; max-width: 380px; }
.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--brass-light); }
.footer-legal { color: rgba(255,255,255,0.5); }
.footer-legal a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-legal a:hover { color: var(--brass-light); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 5.75rem;         /* raised so it sits ABOVE the accessibility widget launcher (bottom-left) */
  left: 1.75rem;
  z-index: 200;
  background: #1f8f4e;
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 18px 12px 15px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 22px rgba(31,143,78,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,143,78,0.5); }
.wa-float svg { width: 22px; height: 22px; }

/* ── PROFESSION / SUB PAGES ── */
.sub-hero {
  background: var(--accent-deep) url('/images/site-aerial.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 135px 2rem 60px;
  color: #fff;
}
.sub-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,34,56,0.92) 0%, rgba(22,48,79,0.72) 100%);
  z-index: 0;
}
.sub-hero .container { position: relative; z-index: 1; }
.sub-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 820px;
}
.sub-hero h1 em { font-style: normal; color: var(--brass-light); }
.sub-hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.sub-hero .hero-actions a { font-size: 0.95rem; }

/* breadcrumb */
.breadcrumb {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 2rem;
}
.breadcrumb .container { display: flex; }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--brass-dark); }
.breadcrumb li::after { content: '‹'; margin-right: 0.5rem; color: var(--ink-muted); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb li:last-child { color: var(--brass-dark); font-weight: 600; }

/* prose content blocks */
.prose-section { background: var(--surface); }
.prose-section.alt { background: var(--surface-2); }
.prose { max-width: 800px; }
.prose h2 { margin-bottom: 1.25rem; }
.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1.75rem 0 0.75rem;
}
.prose p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.1rem; font-size: 1rem; }
.prose ul { margin: 0 1.25rem 1.25rem; color: var(--ink-soft); line-height: 1.8; }
.prose ul li { margin-bottom: 0.5rem; }
.prose strong { color: var(--ink); }
/* Legal pages (terms/privacy/accessibility): modest, proportional clause headings
   — not the large marketing section-title size. */
.prose-legal .section-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 2.25rem 0 0.55rem;
}
.prose-legal .section-title:first-of-type { margin-top: 0.5rem; }
.prose-legal p, .prose-legal ul { font-size: 0.97rem; }
.prose img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1.75rem auto;
  box-shadow: var(--shadow);
}

/* Field gallery — real Phantom workers on site */
.field-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 820px;
}
.field-gallery figure { margin: 0; }
.field-gallery img {
  width: 100%;
  height: auto;            /* keep the photo's natural aspect — no cropping */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}
@media (max-width: 560px) {
  .field-gallery { grid-template-columns: 1fr; max-width: 420px; }
}

/* modern image carousel (worker-housing etc.) */
.carousel { position: relative; max-width: 860px; margin: 2.5rem auto 0; }
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--surface-3);
}
.carousel-track { display: flex; direction: ltr; transition: transform 0.55s cubic-bezier(.45,0,.2,1); }
.carousel-track.no-anim { transition: none; }
.carousel-slide { flex: 0 0 100%; min-width: 0; }
.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn:active { transform: translateY(-50%) scale(0.94); }
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-prev { right: 14px; }   /* RTL: previous sits on the right */
.carousel-next { left: 14px; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 1.1rem; }
.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.carousel-dot[aria-current="true"] { background: var(--brass); width: 24px; border-radius: 5px; }
@media (max-width: 560px) { .carousel-btn { width: 40px; height: 40px; } .carousel-btn svg { width: 19px; height: 19px; } }

/* "what we provide" cards on profession pages */
.provide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.provide-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.provide-card .provide-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.provide-card .provide-icon .icon { width: 1.6em; height: 1.6em; color: var(--brass); }
.provide-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0 0 0.4rem; }
.provide-card p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.6; margin: 0; }

/* related professions links */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.related-grid a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.related-grid a:hover { border-color: var(--brass); color: var(--brass-dark); }

/* ── BLOG POST: cover image + related articles ── */
.post-cover {
  max-width: 800px;
  margin: 0 auto 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.post-cover img { display: block; width: 100%; max-height: 440px; object-fit: cover; }

.related-posts { max-width: 1040px; margin: 0 auto; }
.related-posts h2 { font-size: 1.5rem; color: var(--accent); margin-bottom: 1.25rem; }
.related-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-posts-grid .post-card {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.related-posts-grid .post-card:hover { box-shadow: var(--shadow); border-color: var(--brass); transform: translateY(-3px); }
.related-posts-grid .post-thumb { display: block; }
.related-posts-grid .post-thumb img { display: block; width: 100%; height: 160px; object-fit: cover; }
.related-posts-grid .post-thumb-ph { height: 160px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); }
.related-posts-grid .post-thumb-ph .icon { width: 42px; height: 42px; color: rgba(255,255,255,0.45); }
.related-posts-grid .post-card-h { font-size: 1.05rem; line-height: 1.4; margin: 0.9rem 1.1rem 0.4rem; }
.related-posts-grid .post-card-h a { color: var(--accent); text-decoration: none; }
.related-posts-grid .post-card-h a:hover { color: var(--brass-dark); }
.related-posts-grid .post-date { font-size: 0.8rem; color: var(--ink-muted); margin: 0 1.1rem 0.6rem; }
.related-posts-grid .read-more { color: var(--brass-dark); font-weight: 700; text-decoration: none; font-size: 0.85rem; margin: 0 1.1rem 1.1rem; }
.related-posts-grid .read-more:hover { text-decoration: underline; }
@media (max-width: 760px) { .related-posts-grid { grid-template-columns: 1fr; } }

/* ── JOIN US (worker recruitment pages, LTR) ── */
.join-lang { display: flex; align-items: center; gap: 0.85rem; font-size: 0.9rem; flex-wrap: wrap; }
.join-lang a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.join-lang a:hover { color: var(--brass-dark); }
.join-lang .lang-cur { color: var(--brass-dark); font-weight: 800; }
.join-back { padding-inline-start: 0.85rem; border-inline-start: 1px solid var(--line); color: var(--ink-muted) !important; }
.fee-banner { background: rgba(22,112,184,0.08); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fee-banner p { display: flex; align-items: center; gap: 0.6rem; justify-content: center; margin: 0; padding: 0.9rem 1.25rem; color: var(--brass-dark); font-weight: 700; font-size: 0.95rem; text-align: center; }
.fee-banner .icon { width: 1.2em; height: 1.2em; flex: none; }
.join-note { max-width: 900px; margin: 2.5rem auto 0; padding: 1rem 1.25rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-muted); font-size: 0.85rem; line-height: 1.6; text-align: center; }
/* join pages are LTR — override the site-wide RTL direction */
.join-page { direction: ltr; }
.join-page .form-group input,
.join-page .form-group select,
.join-page .form-group textarea { direction: ltr; }
/* hero trust line (worker pages) */
.join-page .hero-trust {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.1rem; color: #fff; font-weight: 700; font-size: 1rem;
}
.join-page .hero-trust .icon { width: 1.1em; height: 1.1em; color: var(--brass); }
/* trust stat cards */
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin: 2.5rem auto 0; max-width: 900px;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 1.6rem 1rem; text-align: center;
}
.stat-num { font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--brass); margin-bottom: 0.5rem; }
.stat-label { font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); }
/* photo trust tags (worker gallery) */
.join-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin: 1.5rem auto 0; max-width: 720px; }
.join-tag {
  background: var(--surface-3); color: var(--brass-dark);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4rem 0.95rem; font-size: 0.9rem; font-weight: 600;
}
@media (max-width: 700px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-form-card { margin-top: 0.5rem; }
  #hero { min-height: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .why-list { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 680px) {
  /* compact mobile nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 62px; padding: 0 1.25rem; }
  .nav-logo img { height: 52px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px; right: 0; left: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.5rem 1rem;
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav-links.open a { padding: 13px 0; border-bottom: 1px solid var(--line); display: block; }
  .nav-links.open .nav-cta { margin-top: 0.7rem; text-align: center; }

  /* tighter section rhythm */
  section { padding: 50px 1.25rem; }
  .section-header { margin-bottom: 2.25rem; }

  /* hero — shorter, full-width CTAs, form reachable sooner */
  .hero-grid { padding: 82px 1.25rem 44px; gap: 1.5rem; }
  .hero-badge { margin-bottom: 1rem; }
  .hero-h1 { font-size: 1.9rem; margin-bottom: 0.9rem; }
  .hero-sub { font-size: 1rem; line-height: 1.65; margin-bottom: 1.35rem; }
  .hero-actions { gap: 0.6rem; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .hero-proof { margin-top: 1.6rem; padding-top: 1.25rem; gap: 0.5rem 1.25rem; grid-template-columns: 1fr; }

  /* sub-hero on inner pages (match the shorter nav) */
  .sub-hero { padding: 82px 1.25rem 44px; }
  .sub-hero p { font-size: 1rem; }
  .sub-hero .hero-actions a { width: 100%; text-align: center; justify-content: center; }

  .marker-label { font-size: 0.66rem; }
  .trust-inner { gap: 0.85rem; }
  /* WhatsApp float → compact circular FAB so it doesn't cover text */
  .wa-float { padding: 0; width: 54px; height: 54px; justify-content: center; border-radius: 50%; bottom: 5.25rem; left: 1.1rem; right: auto; }
  .wa-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
