:root {
  --navy: #08264a;
  --navy-dark: #04162c;
  --navy-mid: #0b2a50;
  --ink: #071d3a;
  --muted: #496176;
  --line: #b9c9d8;
  --soft: #eef5fb;
  --soft-2: #dfe8f1;
  --card: #ffffff;
  --accent: #d8b46a;
  --shadow: 0 18px 46px rgba(8, 38, 74, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7f9fc;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.top-strip {
  background: var(--navy-dark);
  color: #edf5ff;
  font-size: 13px;
}

.top-strip .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip span { color: var(--accent); font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(8, 38, 74, 0.16);
  background: rgba(247, 249, 252, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
}

.brand { display: inline-flex; min-width: 0; }
.brand-logo {
  width: clamp(172px, 15vw, 210px);
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  padding-block: 27px 24px;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.phone { color: var(--muted); font-size: 14px; font-weight: 600; }

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  direction: ltr;
  padding: 3px;
  border: 1px solid rgba(8, 38, 74, 0.14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 38, 74, 0.08);
}

.lang-btn {
  min-width: 72px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--navy);
  color: #fff;
}

.mobile-language {
  width: fit-content;
  margin-top: 4px;
}

#anmar_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
body > .skiptranslate {
  display: none !important;
}

body { top: 0 !important; }

.btn {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}

.btn.light {
  color: var(--navy);
  background: #fff;
  border-color: rgba(8, 38, 74, 0.16);
}

.btn.outline {
  color: #f7fbff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(8, 38, 74, 0.16);
  font-weight: 800;
  font-size: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-btn:hover,
.menu-btn[aria-expanded="true"] {
  background: var(--navy-dark);
  box-shadow: 0 14px 30px rgba(8, 38, 74, 0.22);
}

.menu-btn::before {
  content: "";
  width: 22px;
  height: 14px;
  display: block;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
}

.menu-btn[aria-expanded="true"]::before {
  height: 22px;
  background:
    linear-gradient(45deg, transparent 45%, currentColor 45% 55%, transparent 55%) center / 22px 22px no-repeat,
    linear-gradient(-45deg, transparent 45%, currentColor 45% 55%, transparent 55%) center / 22px 22px no-repeat;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-panel.open { display: block; }
.mobile-panel .container { display: grid; gap: 10px; padding-block: 16px; }
.mobile-panel a {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: #d9e8f7;
  color: var(--navy-dark);
}

.page-hero {
  padding: 78px 0 72px;
  background:
    radial-gradient(circle at 18% 18%, rgba(216,180,106,0.22), transparent 30%),
    linear-gradient(128deg, var(--navy-dark) 0%, var(--navy) 62%, #f7f9fc 62%, #dfe8f1 100%);
  color: #f7fbff;
}

html[dir="rtl"] .page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(216,180,106,0.22), transparent 30%),
    linear-gradient(270deg, var(--navy-dark) 0%, var(--navy) 62%, #f7f9fc 62%, #dfe8f1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(216,180,106,0.42);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #edf5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(216,180,106,0.52);
  border-radius: 999px;
  background: rgba(216,180,106,0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(216,180,106,0.15);
}

.offer-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(216,180,106,0.34);
  border-radius: 10px;
  background: #fff8e6;
  color: #6d501d;
  font-weight: 800;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 64px);
  color: #f7fbff;
}

h1 span, .section-kicker { color: var(--accent); }
.nowrap { white-space: nowrap; }

.locations-hero {
  padding: 72px 0 68px;
  background:
    radial-gradient(circle at 12% 18%, rgba(216,180,106,0.22), transparent 30%),
    linear-gradient(122deg, var(--navy-dark) 0%, var(--navy) 66%, #eef5fb 66%, #dfe8f1 100%);
}

html[dir="rtl"] .locations-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(216,180,106,0.22), transparent 30%),
    linear-gradient(238deg, var(--navy-dark) 0%, var(--navy) 66%, #eef5fb 66%, #dfe8f1 100%);
}

.locations-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.92fr);
  gap: clamp(34px, 5vw, 62px);
}

.locations-hero h1 {
  max-width: 690px;
  font-size: clamp(40px, 4.4vw, 58px);
}

.locations-hero .hero-lead {
  max-width: 620px;
}

.locations-hero .hero-card {
  max-width: 560px;
  justify-self: end;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #dbe8f4;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-card {
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.24);
}

.hero-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-card-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.banner-hero {
  position: relative;
  min-height: auto;
  padding: 76px 0 72px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(216,180,106,0.18), transparent 28%),
    linear-gradient(115deg, rgba(4,22,44,0.98) 0%, rgba(8,38,74,0.94) 50%, rgba(8,38,74,0.76) 100%),
    var(--hero-banner);
  background-size: cover;
  background-position: center;
}

html[dir="rtl"] .banner-hero {
  background:
    radial-gradient(circle at 86% 22%, rgba(216,180,106,0.18), transparent 28%),
    linear-gradient(245deg, rgba(4,22,44,0.98) 0%, rgba(8,38,74,0.94) 50%, rgba(8,38,74,0.76) 100%),
    var(--hero-banner);
  background-size: cover;
  background-position: center;
}

.banner-hero .hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.banner-hero .hero-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 520px);
  border: 1px solid rgba(216,180,106,0.34);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  overflow: hidden;
}

.banner-hero .hero-card img {
  display: block;
  width: 100%;
  height: clamp(310px, 32vw, 430px);
  min-height: 0;
  object-fit: cover;
}

.banner-hero .hero-card-body {
  background: rgba(8,38,74,0.12);
}

.banner-hero .mini-stat {
  min-height: 92px;
  background: #fff;
}

.medical-hero {
  min-height: auto;
  padding: 76px 0 72px;
  background:
    radial-gradient(circle at 14% 22%, rgba(216,180,106,0.18), transparent 28%),
    linear-gradient(115deg, rgba(4,22,44,0.98) 0%, rgba(8,38,74,0.94) 48%, rgba(8,38,74,0.72) 100%),
    var(--hero-banner);
  background-size: cover;
  background-position: center;
}

.medical-hero .hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.medical-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.4vw, 58px);
}

.medical-hero .hero-lead {
  max-width: 700px;
}

.medical-hero .offer-note {
  max-width: 650px;
}

.medical-hero .hero-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 520px);
  border-color: rgba(216,180,106,0.34);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  overflow: hidden;
}

.medical-hero .hero-card img {
  display: block;
  width: 100%;
  height: clamp(310px, 32vw, 430px);
  min-height: 0;
  object-fit: cover;
}

.medical-hero .hero-card-body {
  background: rgba(8,38,74,0.12);
}

.medical-hero .mini-stat {
  background: #fff;
  min-height: 92px;
}

.mini-stat {
  padding: 18px;
  background: #fff;
  color: var(--ink);
}

.mini-stat strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.mini-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.section { padding: 84px 0; }
.section.blue { background: var(--soft); }
.section.dark { background: var(--navy-dark); color: #fff; }
.section.dark > .container > .section-title h2,
.section.dark > .container > .section-title h3 { color: #f7fbff; }
.section.dark > .container > .section-title p { color: #dbe8f4; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 150ms; }
.reveal-delay-3 { transition-delay: 220ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title { display: grid; gap: 10px; max-width: 720px; }
.section-title.center { margin-inline: auto; text-align: center; }
h2 { color: var(--ink); font-size: clamp(30px, 3vw, 42px); }
.section-title p { margin: 0; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.dark-panel {
  padding: 34px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 80% 12%, rgba(216,180,106,0.18), transparent 26%),
    linear-gradient(145deg, var(--navy-dark), var(--navy));
  color: #fff;
  box-shadow: var(--shadow);
}

.dark-panel h2,
.dark-panel h3 { color: #f7fbff; }
.dark-panel p { color: #dbe8f4; }

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(216,180,106,0.24);
  box-shadow: var(--shadow);
}

.proof-cell {
  min-height: 132px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  background:
    linear-gradient(135deg, rgba(216,180,106,0.12), rgba(255,255,255,0)),
    var(--navy-mid);
  color: #edf5ff;
}

.proof-cell strong {
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.proof-cell span {
  font-size: 13px;
  font-weight: 800;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: process-step;
}

.step-card {
  position: relative;
  min-height: 250px;
  padding: 30px 26px 26px;
  border: 1px solid rgba(216,180,106,0.26);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(247,251,255,0.98), rgba(236,244,252,0.98)),
    #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #f1d796, var(--navy));
}

.step-card b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.25), transparent 36%),
    var(--navy);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 12px 24px rgba(8, 38, 74, 0.22);
}

.step-card h3 {
  color: var(--ink);
  font-size: 24px;
}

.step-card p {
  margin: 16px 0 0;
  color: #496176;
  font-size: 17px;
  line-height: 1.55;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-item {
  padding: 16px;
  border: 1px solid rgba(8,38,74,0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.check-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(216,180,106,0.2), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

.faq-section .split-panel {
  grid-template-columns: 1fr;
  gap: 28px;
}

.faq-section .faq-intro {
  padding: 34px;
  border: 1px solid rgba(216,180,106,0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 18%, rgba(216,180,106,0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: #fff;
  box-shadow: var(--shadow);
}

.faq-section .section-title {
  max-width: 100%;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  align-items: end;
  column-gap: 34px;
}

.faq-section .section-kicker {
  grid-column: 1;
  width: fit-content;
  color: var(--accent);
}

.faq-section .section-title h2 {
  grid-column: 1;
  color: #f7fbff;
}

.faq-section .section-title p {
  grid-column: 2;
  color: #dbe8f4;
  font-size: 18px;
  line-height: 1.65;
}

.faq-section .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-section details {
  min-height: 104px;
  border-color: rgba(8,38,74,0.1);
  border-radius: 16px;
  background: #fff;
}

.faq-section details[open] {
  grid-row: span 2;
  border-color: rgba(216,180,106,0.55);
  background:
    linear-gradient(180deg, #ffffff, #f2f7fc);
}

.faq-section summary {
  min-height: 92px;
  padding: 24px 28px;
}

.faq-section details p {
  padding: 6px 28px 28px 78px;
  font-size: 17px;
}

details {
  border: 1px solid rgba(8,38,74,0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 0;
  box-shadow: 0 14px 34px rgba(8,38,74,0.08);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

details:hover {
  border-color: rgba(8,38,74,0.22);
  box-shadow: 0 18px 46px rgba(8,38,74,0.12);
  transform: translateY(-1px);
}

details[open] {
  border-color: rgba(216,180,106,0.46);
  background:
    linear-gradient(180deg, #ffffff, #eef5fb);
}

summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  padding: 22px 26px;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::before {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

details[open] summary {
  border-bottom: 1px solid rgba(8,38,74,0.1);
}

details[open] summary::before {
  content: "-";
  background: var(--accent);
  color: var(--navy-dark);
}

details p {
  margin: 0;
  padding: 22px 26px 26px 74px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.sticky-quote {
  position: sticky;
  top: 110px;
}

.card {
  border: 1px solid rgba(8,38,74,0.14);
  border-radius: 10px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body { padding: 24px; display: grid; gap: 12px; }
.card h3 { color: var(--ink); font-size: 24px; }
.card p { margin: 0; color: var(--muted); }

.card-top {
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(8,38,74,0.2), rgba(216,180,106,0.12)),
    url("warehouse-hero.png");
  background-size: cover;
  background-position: center;
}

.card-top.medical { background-image: linear-gradient(135deg, rgba(8,38,74,0.18), rgba(216,180,106,0.1)), url("medical-storage-generated.png"); }
.card-top.food { background-image: linear-gradient(135deg, rgba(8,38,74,0.18), rgba(216,180,106,0.1)), url("food-storage-generated.png"); }
.card-top.cosmetics { background-image: linear-gradient(135deg, rgba(8,38,74,0.18), rgba(216,180,106,0.1)), url("cosmetics-storage-generated.png"); }
.card-top.cold { background-image: linear-gradient(135deg, rgba(8,38,74,0.18), rgba(216,180,106,0.1)), url("cold-storage-generated.png"); }
.card-top.dry,
.card-top.threepl { background-image: linear-gradient(135deg, rgba(8,38,74,0.18), rgba(216,180,106,0.1)), url("storage-3pl-generated.png"); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--navy);
  font-weight: 800;
}

.feature {
  min-height: 160px;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #d9e8f7;
  color: var(--navy);
}

.list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 16px;
  border: 1px solid rgba(8,38,74,0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.quote-panel {
  padding: 28px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.field textarea { min-height: 118px; resize: vertical; }
.field.full { grid-column: 1 / -1; }

.form-status {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: #dbe8f4;
  font-size: 13px;
}

.breadcrumb a { color: #fff; font-weight: 800; }

.cta {
  padding: 46px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(216,180,106,0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta h2 { color: #f7fbff; }
.cta p { margin: 8px 0 0; color: #dbe8f4; }

.footer {
  border-top: 1px solid rgba(216,180,106,0.28);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 34px;
  align-items: start;
  padding: 48px 0;
}

.footer .brand {
  width: fit-content;
  margin: 0 0 18px;
  padding: 18px 24px;
  border-radius: 12px;
  background: #fff;
}

.footer .brand-logo { width: 210px; height: auto; }
.footer h4 { margin: 0 0 14px; color: #f7fbff; font-size: 17px; }
.footer p, .footer a { color: #dbe8f4; font-size: 13px; }
.footer p { max-width: 300px; margin: 0; line-height: 1.65; }
.footer-links { display: grid; gap: 10px; }
.copyright {
  border-top: 1px solid rgba(216,180,106,0.2);
  padding: 18px 0;
  color: #dbe8f4;
  font-size: 12px;
}

.floating-wa {
  --float-size: 64px;
  --float-right: 22px;
  --float-bottom: 22px;
  position: fixed;
  right: var(--float-right);
  bottom: var(--float-bottom);
  z-index: 30;
  width: var(--float-size);
  height: var(--float-size);
  min-height: var(--float-size);
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
  background: url("buttons/whatsapp-floating-button.png") center / 100% 100% no-repeat;
  color: #fff;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 18px 42px rgba(4, 22, 44, 0.22);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.floating-wa::before {
  display: none;
}

.floating-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(4, 22, 44, 0.3);
}

.floating-wa.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-links, .nav-actions { display: none; }
  .menu-btn { display: flex; }
  .hero-grid, .grid-2, .footer-grid, .cta, .split-panel { grid-template-columns: 1fr; }
  .banner-hero .hero-grid { grid-template-columns: 1fr; }
  .banner-hero .hero-card {
    justify-self: stretch;
    width: min(100%, 620px);
  }
  .medical-hero .hero-grid { grid-template-columns: 1fr; }
  .medical-hero .hero-card {
    justify-self: stretch;
    width: min(100%, 620px);
  }
  .grid-3, .grid-4, .proof-row, .step-list { grid-template-columns: repeat(2, 1fr); }
  .sticky-quote { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, var(--container)); }
  .top-strip .container { align-items: flex-start; flex-direction: column; padding-block: 10px; }
  .nav { min-height: 66px; }
  .brand-logo { width: 156px; height: 50px; }
  .page-hero {
    padding: 44px 0 52px;
    background:
      radial-gradient(circle at 20% 8%, rgba(216,180,106,0.18), transparent 35%),
      linear-gradient(180deg, var(--navy-dark), var(--navy));
  }
  html[dir="rtl"] .page-hero {
    background:
      radial-gradient(circle at 80% 8%, rgba(216,180,106,0.18), transparent 35%),
      linear-gradient(180deg, var(--navy-dark), var(--navy));
  }
  .locations-hero {
    padding: 48px 0 54px;
  }
  .locations-hero .hero-grid {
    gap: 30px;
  }
  .locations-hero h1 {
    max-width: 100%;
    font-size: 34px;
  }
  .locations-hero .hero-card {
    max-width: 100%;
    justify-self: stretch;
  }
  .banner-hero {
    min-height: auto;
    padding: 48px 0 44px;
    background:
      radial-gradient(circle at 18% 12%, rgba(216,180,106,0.16), transparent 32%),
      linear-gradient(180deg, rgba(4,22,44,0.97) 0%, rgba(8,38,74,0.9) 100%),
      var(--hero-banner);
    background-size: cover;
    background-position: center right;
  }
  html[dir="rtl"] .banner-hero {
    background:
      radial-gradient(circle at 82% 12%, rgba(216,180,106,0.16), transparent 32%),
      linear-gradient(180deg, rgba(4,22,44,0.97) 0%, rgba(8,38,74,0.9) 100%),
      var(--hero-banner);
    background-size: cover;
    background-position: center left;
  }
  .banner-hero .hero-card img {
    height: 260px;
  }
  .medical-hero {
    padding: 48px 0 44px;
  }
  .medical-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .medical-hero .hero-card img {
    height: 260px;
  }
  h1 { font-size: 36px; }
  .hero-card img { min-height: 240px; }
  .hero-card-body, .grid-3, .grid-4, .form-grid, .proof-row, .step-list, .check-grid { grid-template-columns: 1fr; }
  .faq-section .faq-intro { padding: 26px 22px; }
  .faq-section .section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .faq-section .section-kicker,
  .faq-section .section-title h2,
  .faq-section .section-title p {
    grid-column: auto;
  }
  .faq-section .faq-list { grid-template-columns: 1fr; }
  .faq-section details[open] { grid-row: auto; }
  .faq-section summary {
    min-height: 76px;
    padding: 20px;
    font-size: 18px;
  }
  .faq-section details p {
    padding: 4px 20px 22px 68px;
    font-size: 16px;
  }
  .section { padding: 58px 0; }
  .section-head { display: grid; }
  .field.full { grid-column: auto; }
  .cta { padding: 30px 22px; }
  .cta .btn { width: 100%; }
  .floating-wa {
    --float-size: 58px;
    --float-right: 14px;
    --float-bottom: 16px;
    left: auto;
    right: var(--float-right);
    bottom: var(--float-bottom);
    width: var(--float-size);
    height: var(--float-size);
    min-height: var(--float-size);
  }
}
