:root {
  --blue-900: #07215a;
  --blue-800: #0b3a8c;
  --blue-700: #134bb0;
  --blue-600: #1f6fe5;
  --blue-100: #e7f0ff;
  --blue-50: #f4f8ff;
  --ink: #14213d;
  --ink-2: #3b4566;
  --muted: #6b7488;
  --line: #e3e8f2;
  --bg: #ffffff;
  --bg-soft: #f6f9ff;
  --warm: #fff7e7;
  --accent: #f4a627;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 58, 140, 0.06), 0 4px 14px rgba(11, 58, 140, 0.06);
  --shadow-md: 0 6px 20px rgba(11, 58, 140, 0.12);
  --shadow-lg: 0 18px 50px rgba(11, 58, 140, 0.18);
  --container: 1160px;
  --pad: clamp(16px, 3vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  color: var(--blue-900);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }

p { margin: 0 0 1em; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg, iframe { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-800);
  color: #fff;
  padding: 10px 14px;
  z-index: 200;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-900);
  color: #cfe0ff;
  font-size: 0.85rem;
}
.topbar a { color: inherit; }
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar-spacer { flex: 1; }
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}
.brand-text em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav a:hover { color: var(--blue-800); text-decoration: none; background: var(--bg-soft); }
.nav-cta { margin-left: 8px; }
.nav a.nav-cta,
.nav a.nav-cta:hover { color: #fff; background: var(--blue-700); padding: 12px 22px; border-radius: 999px; }

/* ---------- Services dropdown ---------- */
.nav-item {
  position: relative;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-item > a svg { transition: transform .2s; flex-shrink: 0; }
.nav-item:hover > a svg,
.nav-item:focus-within > a svg { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 100;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }

/* arrow tip */
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  rotate: 45deg;
  border-radius: 2px;
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.dropdown-header span {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.dropdown-header a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-700);
  padding: 0;
  background: none;
  border-radius: 0;
}
.dropdown-header a:hover { background: none; color: var(--blue-900); text-decoration: underline; }

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.dropdown-item {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-size: .875rem !important;
  font-weight: 500 !important;
  white-space: normal !important;
  border-bottom: none !important;
  line-height: 1.3;
  transition: background .15s !important;
}
.dropdown-item:hover { background: var(--bg-soft) !important; color: var(--blue-800) !important; }
.dropdown-item-icon {
  width: 30px; height: 30px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-700);
  margin-top: 1px;
}
.dropdown-item-text strong {
  display: block;
  font-weight: 600;
  color: var(--blue-900);
  font-size: .875rem;
  margin-bottom: 1px;
}
.dropdown-item-text span {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 400;
}
.dropdown-item-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900)) !important;
  border-radius: 10px !important;
  margin-top: 4px;
}
.dropdown-item-highlight:hover { opacity: .92; background: linear-gradient(135deg, var(--blue-800), var(--blue-900)) !important; }
.dropdown-item-highlight .dropdown-item-icon { background: rgba(255,255,255,.15); border-color: transparent; color: #fff; }
.dropdown-item-highlight .dropdown-item-text strong { color: #fff; }
.dropdown-item-highlight .dropdown-item-text span { color: #a0c4ff; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-800);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--blue-800); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--blue-800);
  border-color: var(--blue-100);
}
.btn-ghost:hover { background: var(--blue-50); }

/* ---------- Icons ---------- */
.ico {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.ico-phone { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6.6 10.8a15.05 15.05 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.36 11.36 0 0 0 3.55.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.55 1 1 0 0 1-.25 1z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6.6 10.8a15.05 15.05 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.36 11.36 0 0 0 3.55.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.55 1 1 0 0 1-.25 1z'/></svg>"); }
.ico-mail  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5-8-5V6l8 5 8-5z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5-8-5V6l8 5 8-5z'/></svg>"); }
.ico-pin   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a8 8 0 0 0-8 8c0 5.5 8 12 8 12s8-6.5 8-12a8 8 0 0 0-8-8zm0 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a8 8 0 0 0-8 8c0 5.5 8 12 8 12s8-6.5 8-12a8 8 0 0 0-8-8zm0 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/></svg>"); }
.ico-clock { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 11h-4V7h2v4h2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 11h-4V7h2v4h2z'/></svg>"); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 90% -10%, #d6e6ff 0, transparent 60%),
    radial-gradient(900px 500px at -10% 30%, #eaf2ff 0, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 56px;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 88px);
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-light {
  background: rgba(255, 255, 255, 0.14);
  color: #cfe0ff;
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-2);
  max-width: 56ch;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
}
.chips li {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue-800);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hero-stats div { margin: 0; }
.hero-stats dt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-800);
}
.hero-stats dd {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

/* ---------- Forms ---------- */
.quick-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
}
input, select, textarea {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(31, 111, 229, 0.18);
}
textarea { resize: vertical; }
.form-status { margin: 4px 0 0; font-size: 0.85rem; color: var(--blue-700); min-height: 1em; }
.form-status.error { color: #b3261e; }

/* ---------- Sections ---------- */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: #e7eefc;
}
.section-dark h2 { color: #fff; }
.section-dark .muted { color: #b9c7e6; }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head-light .eyebrow { background: rgba(255, 255, 255, 0.14); color: #cfe0ff; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }

.cta-row {
  margin-top: 36px;
  text-align: center;
}

/* ---------- Pillars (about) ---------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillars li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.pillars h3 {
  margin-bottom: 6px;
  color: var(--blue-800);
}
.pillars p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-2);
}

/* ---------- Grids of cards ---------- */
.grid {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cdddf7;
}
.card h3 { color: var(--blue-800); margin-bottom: 6px; }
.card p { margin: 0; color: var(--ink-2); }

/* Service cards */
.services .service {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  min-height: 300px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.services .service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cdddf7;
}
.service-num {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.service h3 { margin-bottom: 6px; color: var(--blue-900); }
.service p { color: var(--ink-2); margin: 0; }
.services .service-feature {
  background: linear-gradient(160deg, var(--blue-700), var(--blue-900));
  color: #e7eefc;
  border-color: transparent;
}
.services .service-feature h3 { color: #fff; }
.services .service-feature p { color: #cfe0ff; }
.link {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}
.link:hover { text-decoration: none; border-color: #fff; }

/* Conditions */
.conditions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.conditions li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  backdrop-filter: blur(2px);
}

/* Why us check list */
.check-list {
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: 10px;
  padding: 14px 18px 14px 18px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.check-list li strong { color: var(--blue-900); }

/* Visit / contact info */
.info-list { display: grid; gap: 14px; margin-top: 8px; }
.info-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.info-list .ico {
  color: var(--blue-700);
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: #eaf0fb;
  aspect-ratio: 4 / 3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* CTA section */
.section-cta {
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: #eaf0fc;
}
.section-cta h2 { color: #fff; }
.section-cta input,
.section-cta select,
.section-cta textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.section-cta input::placeholder,
.section-cta textarea::placeholder { color: #b9c7e6; }
.section-cta input:focus,
.section-cta select:focus,
.section-cta textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}
.section-cta label { color: #cfe0ff; }
.section-cta a { color: #fff; text-decoration: underline; }
.section-cta .btn { text-decoration: none; }
.section-cta .btn-primary {
  background: #fff;
  color: var(--blue-800);
  border-color: transparent;
}
.section-cta .btn-primary:hover {
  background: #e8f0ff;
  color: var(--blue-900);
}
.section-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.section-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}
.section-cta a:not(.btn) { text-decoration: underline; }
.contact-direct { color: #cfe0ff; }

/* ---------- Footer ---------- */
.footer {
  background: #07153a;
  color: #cfd9ee;
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer .brand-text strong { color: #fff; }
.footer .brand-text em { color: #91a3c7; }
.footer .brand-mark img {
  width: 36px;
  height: 36px;
}
.footer h4 { color: #fff; margin-bottom: 14px; }
.footer ul { display: grid; gap: 8px; }
.footer a { color: #cfd9ee; }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 0.85rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
  text-align: center;
  flex-direction: column;
}
.footer-bottom .muted { color: #91a3c7; }

/* ---------- Floating action ---------- */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-700);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}
.fab:hover { background: var(--blue-800); text-decoration: none; }
.fab .ico { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .brand-text em { display: none; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse > :first-child { order: initial; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .conditions { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .topbar { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--pad);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 10px; border-bottom: 1px solid var(--line); border-radius: 0; background: none; }
  .nav a:hover { background: var(--bg-soft); }
  .nav a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: 8px; align-self: flex-start; border-radius: 999px; }
  .nav a.nav-cta:hover { background: var(--blue-800); }
  .nav-toggle { display: inline-flex; }
  .header-inner { position: relative; }

  /* Mobile dropdown  shown inline, not floating */
  .nav-item { display: contents; }
  .nav-item > a { order: unset; }
  .dropdown {
    display: none !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 0 16px !important;
    background: var(--bg-soft) !important;
    margin: 0 calc(-1 * var(--pad));
  }
  .dropdown::before { display: none; }
  .dropdown-header { display: none; }
  .dropdown-grid { grid-template-columns: 1fr; gap: 0; }
  .dropdown-item {
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    padding: 12px 10px !important;
  }
  .dropdown-item-highlight { grid-column: auto; margin-top: 0; border-radius: 0 !important; background: var(--blue-50) !important; }
  .dropdown-item-highlight .dropdown-item-text strong { color: var(--blue-800); }
  .dropdown-item-highlight .dropdown-item-text span { color: var(--muted); }
  .dropdown-item-highlight .dropdown-item-icon { background: var(--blue-100); color: var(--blue-700); }
  .nav-item.is-open .dropdown { display: block !important; }
  .nav-services-trigger { cursor: pointer; }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .conditions { grid-template-columns: 1fr 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .hero-stats dt { font-size: 1.3rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .fab span:not(.ico) { display: none; }
  .fab { padding: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
