@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --navy: #07182e;
  --navy-raised: #0d2946;
  --ink: #0b1524;
  --muted: #46586b;
  --line: #cbd5df;
  --line-input: #7c8f9f;
  --line-dark: #29415a;
  --surface: #f3f7fa;
  --surface-blue: #e7f3f7;
  --white: #ffffff;
  --cyan: #55d2f3;
  --cyan-strong: #2ac1eb;
  --cyan-deep: #0098da;
  --link: #005f85;
  --link-dark: #005f9e;
  --success: #146239;
  --success-bg: #e7f7ee;
  --error: #a31d2d;
  --error-bg: #fff0f2;
  --focus: #ffc857;
  --shadow: 0 18px 46px rgba(7, 24, 46, 0.15);
  --shadow-small: 0 8px 24px rgba(7, 24, 46, 0.12);
  --radius: 16px;
  --header-height: 72px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --font-heading: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  /* Dark surface palette (footer, contact panel, hero-dark backgrounds) */
  --bg-deep: #041120;
  --on-dark-strong: #e1ebf3;
  --on-dark-base: #d3dfeb;
  --on-dark-mid: #bdccda;
  --on-dark-muted: #9fb1c3;
  --on-dark-subtle: #aebfd0;
  --on-dark-faint: #c5d6e6;
  --line-deep: #29415a;

  /* Amber accent (HQ marker, WhatsApp badge) */
  --amber: #d97706;
  --amber-dark: #b45309;
  --amber-bg: rgba(217, 119, 6, 0.12);

  /* Map light palette tokens */
  --map-bg: #eef2f6;
  --map-border: #cbd5e1;
  --map-country: #dce3eb;
  --map-country-border: #c5d0dc;
  --map-presence: #bacde0;
  --map-surface-light: #f8fafc;
}

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

html {
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  padding-bottom: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--cyan);
  color: var(--navy);
}

* {
  scrollbar-color: var(--navy-raised) var(--surface);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-raised);
  border: 2px solid var(--surface);
  border-radius: 10px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 10vw, 3.5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 8vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 20px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 32px), 1180px);
  margin-inline: auto;
}

.section {
  padding-block: 72px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p,
.model-copy > p,
.lead-intro > p,
.details-hero p {
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.0625rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--cyan);
  border-radius: 12px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button .ph,
.text-link .ph,
.row-arrow {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 24px;
  text-decoration: none;
  border-bottom: none;
}

.button:active {
  transform: translateY(1px);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.button-small {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 0.9375rem;
}

.button-secondary {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-secondary,
.button-secondary span,
.button-secondary .ph {
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--link);
  background: var(--navy-raised);
  color: var(--white);
}

.button-secondary:hover span,
.button-secondary:hover .ph {
  color: var(--white);
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--link);
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy);
  color: var(--white);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.brand {
  flex: none;
}

.brand img {
  width: 76px;
  height: 49px;
  object-fit: contain;
}

.desktop-nav,
.header-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(3, 44px);
  height: 50px;
  padding: 2px;
  border-radius: 9999px;
  background: var(--navy-raised);
  border: 1px solid var(--line-dark);
  user-select: none;
  -webkit-user-select: none;
  align-items: center;
  align-content: center;
  justify-items: center;
}

.lang-indicator {
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: calc((100% - 4px) / 3);
  border-radius: 9999px;
  background: var(--cyan);
  box-shadow: none;
  pointer-events: none;
  z-index: 1;
  transform: translateX(0%);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.language-switcher[data-active="tr"] .lang-indicator {
  transform: translateX(0%);
}

.language-switcher[data-active="en"] .lang-indicator {
  transform: translateX(100%);
}

.language-switcher[data-active="ru"] .lang-indicator {
  transform: translateX(200%);
}

.language-switcher button {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--on-dark-muted);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  cursor: pointer;
  align-self: center;
  transition: color 200ms ease;
}

.language-switcher button:hover {
  color: var(--white);
}

.language-switcher button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.language-switcher button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--navy);
  font-weight: 800;
}

.menu-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.menu-button:focus {
  outline: none;
  box-shadow: none;
}

.menu-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

@media (hover: hover) {
  .menu-button:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

.menu-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
}

.menu-icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.menu-icon-wrap .ph {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 200ms ease,
              color 180ms ease;
}

.menu-icon-wrap .icon-burger {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  color: var(--white);
}

.menu-icon-wrap .icon-close {
  transform: rotate(-90deg) scale(0.4);
  opacity: 0;
  color: var(--white);
}

.menu-button[aria-expanded="true"] .menu-icon-wrap .icon-burger {
  transform: rotate(90deg) scale(0.4);
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-icon-wrap .icon-close {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  border-top: 1px solid var(--line-dark);
  background: var(--navy);
  box-shadow: 0 20px 40px rgba(4, 17, 32, 0.5);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              visibility 220ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-backdrop {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  background: rgba(4, 17, 32, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  touch-action: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: grid;
  padding-block: 14px 20px;
}

.mobile-nav > a:not(.button) {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav .button {
  margin-top: 16px;
}

.hero {
  overflow: hidden;
  padding-block: 48px 40px;
  background: var(--surface);
}

.hero-grid {
  display: grid;
  gap: 36px;
}

.hero-copy > p:first-of-type {
  max-width: 62ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.0625rem;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-actions .button,
.hero-actions .text-link {
  white-space: nowrap;
}

@media (max-width: 599px) {
  .hero-actions .button {
    padding-inline: 12px;
    font-size: 0.9375rem;
  }
}

.hero-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
  animation: hero-reveal 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media picture {
  display: block;
  aspect-ratio: 4 / 5;
}

@keyframes hero-reveal {
  from {
    clip-path: inset(0 0 22% 0 round 16px);
    filter: saturate(0.75);
  }
  to {
    clip-path: inset(0 0 0 0 round 16px);
    filter: saturate(1);
  }
}

.proof-strip {
  padding-block: 28px;
  border-block: 1px solid var(--line);
  background: var(--white);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px;
  border: none;
  background: transparent;
  min-width: 0;
}

.stat-value {
  display: flex;
  align-items: baseline;
  color: var(--navy);
  font-size: clamp(2rem, 7vw, 2.625rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum" on, "lnum" on;
}

.stat-value.stat-text {
  font-size: clamp(1.625rem, 5.5vw, 2.25rem);
  letter-spacing: -0.02em;
}

.stat-suffix {
  color: var(--link);
  font-size: 0.75em;
  font-weight: 800;
  margin-left: 2px;
}

.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reveal-stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-stat.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ==========================================================================
   COMPLIANCE LEDGER — Institutional Verification Protocols
   ========================================================================== */

.compliance-ledger {
  padding-block: 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.compliance-header {
  margin-bottom: 24px;
}

.compliance-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.compliance-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 72ch;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(7, 24, 46, 0.04);
}

.compliance-col {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease;
}

.compliance-col:last-child {
  border-bottom: none;
}

.compliance-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.compliance-index {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--link);
  text-transform: uppercase;
}

.compliance-icon {
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
}

.compliance-entity {
  margin-bottom: 10px;
}

.compliance-org {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #005f9e;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.compliance-spec {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.compliance-desc {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  flex-grow: 1;
}

.compliance-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(203, 213, 223, 0.6);
  padding-top: 12px;
}

.compliance-points li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.compliance-points li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--link);
  flex-shrink: 0;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--link);
  transition: transform 180ms cubic-bezier(.16, 1, .3, 1);
}

.service-icon .ph {
  font-size: 26px;
}

.service-text {
  display: grid;
  gap: 5px;
}

.service-text strong {
  font-size: 1.0625rem;
  line-height: 1.35;
}

.service-text small {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.row-arrow {
  color: var(--link);
}

.services-link {
  width: 100%;
  margin-top: 28px;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.check-list li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 800;
}

.check-list li > span .ph {
  font-size: 16px;
}

.check-list strong {
  display: block;
  margin-bottom: 4px;
}

.check-list p {
  margin: 0;
  color: var(--muted);
}

/* ==========================================================================
   EXECUTION SEQUENCE
   ========================================================================== */

.process-section {
  background: var(--surface);
}

.process-section .section-heading {
  max-width: 760px;
}

.pipeline-stages {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--navy);
  list-style: none;
}

.pipeline-stage {
  position: relative;
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
}

.pipeline-stage::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--cyan-deep);
  content: "";
}

.stage-marker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}

.stage-num {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stage-tag {
  color: var(--link);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-title {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.stage-desc {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.stage-signals {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.stage-signals li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

.stage-signals .ph {
  color: var(--link);
  font-size: 1.0625rem;
  flex: 0 0 auto;
}

.lead-section {
  background: var(--navy);
  color: var(--white);
}

.lead-grid {
  display: grid;
  gap: 38px;
}

.lead-intro h2,
.lead-intro h3 {
  color: var(--white);
}

.lead-intro > p {
  color: var(--on-dark-base);
}

.request-guide {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.request-guide h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.request-guide ul {
  margin: 0;
  padding-left: 22px;
  color: var(--on-dark-base);
}

.request-guide li + li {
  margin-top: 8px;
}

.direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.direct-contact p {
  margin-bottom: 2px;
  color: var(--on-dark-subtle);
  font-size: 0.9375rem;
}

.direct-contact a {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.lead-form {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 16px);
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(7, 24, 46, 0.16);
  border: 1px solid var(--line);
}

.form-field + .form-field {
  margin-top: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 750;
}

.field-required {
  color: var(--error);
  font-weight: 800;
  margin-left: 2px;
}

.form-field-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 160ms ease;
  user-select: none;
}

.chip-btn .ph {
  font-size: 0.9375rem;
  color: var(--link);
  transition: color 160ms ease, transform 160ms ease;
}

.chip-btn:hover {
  border-color: var(--link);
  background: var(--surface-blue);
  color: var(--link-dark);
}

.chip-btn:hover .ph {
  color: var(--link-dark);
}

.chip-btn.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.chip-btn.is-active .ph {
  color: var(--cyan);
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line-input);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  caret-color: var(--link);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.textarea-wrap {
  position: relative;
  width: 100%;
}

.textarea-wrap textarea {
  width: 100%;
  min-height: 130px;
  padding: 13px 14px 34px;
  border-radius: 10px 10px 0 0;
  display: block;
  resize: vertical;
}

.textarea-wrap .char-counter {
  position: absolute;
  right: 12px;
  bottom: 22px;
  pointer-events: none;
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(203, 213, 223, 0.7);
  line-height: 1.2;
}

.textarea-wrap .char-counter.is-limit-near {
  color: var(--error);
  border-color: var(--error);
  background: var(--error-bg);
}

.textarea-resizer {
  width: 100%;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line-input);
  border-top: 1px solid rgba(203, 213, 223, 0.5);
  border-radius: 0 0 10px 10px;
  cursor: ns-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.textarea-resizer:hover,
.textarea-resizer:focus-visible,
.textarea-resizer.is-dragging {
  background: var(--surface-blue);
  border-color: var(--link);
  outline: none;
}

.resizer-bar {
  width: 38px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  transition: background-color 150ms ease, transform 150ms ease;
}

.textarea-resizer:hover .resizer-bar,
.textarea-resizer:focus-visible .resizer-bar,
.textarea-resizer.is-dragging .resizer-bar {
  background: var(--link);
  transform: scaleX(1.35);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--link);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 95, 133, 0.18);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--error);
  background: var(--error-bg);
}

.textarea-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.textarea-meta .field-hint {
  margin: 0;
  flex: 1;
}

.loi-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface-blue);
  border: 1px solid rgba(0, 95, 133, 0.15);
  color: var(--link-dark);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.loi-notice .ph {
  font-size: 1.0625rem;
  flex: none;
  margin-top: 1px;
  color: var(--link);
}

.file-upload-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 84px;
  padding: 16px 20px;
  border: 1.5px dashed var(--line-input);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  transition: all 180ms ease;
  user-select: none;
}

.file-upload-zone:hover,
.file-upload-zone:focus-visible,
.file-upload-zone.is-dragover {
  border-color: var(--link);
  background: var(--surface-blue);
  outline: none;
}

.file-upload-zone.is-dragover {
  border-style: solid;
  box-shadow: 0 0 0 3px rgba(0, 95, 133, 0.18);
}

.file-input-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}

.file-prompt {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.file-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--link);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 95, 133, 0.25);
  transition: background 160ms ease, transform 140ms ease;
}

.file-upload-zone:hover .file-badge {
  background: var(--navy);
  transform: translateY(-1px);
}

.file-badge i {
  font-size: 1.15rem;
}

.file-prompt-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.file-action {
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--ink);
}

.file-hint {
  font-size: 0.78125rem;
  color: var(--muted);
  line-height: 1.35;
}

.file-attached {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.file-pdf-icon {
  font-size: 1.75rem;
  color: var(--error);
  flex-shrink: 0;
}

.file-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.file-name {
  font-size: 0.875rem;
  font-weight: 750;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size {
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.file-remove-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 160ms ease;
}

.file-remove-btn:hover {
  border-color: var(--error);
  background: var(--error-bg);
  color: var(--error);
}

.field-hint,
.field-error,
.form-privacy {
  margin: 7px 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
}

.field-hint,
.form-privacy {
  color: var(--muted);
}

.field-error {
  min-height: 0;
  color: var(--error);
  font-weight: 700;
}

.field-error:empty {
  display: none;
}

.bot-field {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit-wrap {
  margin-top: 24px;
}

.form-submit-wrap[hidden] {
  display: none !important;
}

.form-submit {
  width: 100%;
}

.button-spinner {
  width: 18px;
  height: 18px;
  display: none;
  border: 2px solid rgba(7, 24, 46, 0.28);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.lead-form[aria-busy="true"] .button-spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  margin-top: 16px;
  padding: 0;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding: 14px 18px;
  border-radius: 10px;
}

.form-status.is-success {
  background: var(--success-bg);
  border: 1px solid rgba(22, 101, 52, 0.2);
  color: var(--success);
  font-size: 0.9375rem;
}

.form-status.is-error {
  background: var(--error-bg);
  border: 1px solid rgba(153, 27, 27, 0.2);
  color: var(--error);
  font-size: 0.9375rem;
}

.form-followup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.form-followup[hidden] {
  display: none !important;
}

.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  background: #25D366;
  color: #FFFFFF !important;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: background 180ms ease, transform 160ms ease, box-shadow 180ms ease;
  text-decoration: none;
  cursor: pointer;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
  color: #FFFFFF !important;
  outline: none;
}

.button-whatsapp i {
  font-size: 1.35rem;
}

.button-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  padding: 0 18px;
  border: 1.5px solid var(--line-input);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy) !important;
  font-size: 0.9375rem;
  font-weight: 650;
  transition: all 160ms ease;
  cursor: pointer;
}

.button-reset:hover,
.button-reset:focus-visible {
  border-color: var(--navy);
  background: var(--surface);
  color: var(--navy) !important;
  outline: none;
}

.button-reset i {
  font-size: 1.15rem;
  color: var(--muted);
  transition: transform 220ms ease, color 160ms ease;
}

.button-reset:hover i {
  transform: rotate(-60deg);
  color: var(--navy);
}

.contact-section {
  padding-block: 72px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  gap: 32px;
}

.contact-desks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-desk-card {
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-desk-card:hover {
  border-color: var(--navy-raised);
  box-shadow: var(--shadow-small);
}

.desk-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.desk-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface-blue);
  color: var(--navy);
  flex-shrink: 0;
}

.desk-icon .ph {
  font-size: 22px;
}

.desk-icon-wa {
  background: var(--success-bg);
  color: var(--success);
}

.desk-card-header h3 {
  margin: 0 0 2px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy);
}

.desk-subtitle {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desk-card-body p,
.desk-card-body address {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
  font-style: normal;
}

.desk-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.desk-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 750;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.desk-links a:hover {
  color: var(--link);
  background-color: var(--surface-blue);
}

.contact-pill-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--surface-blue);
  color: var(--link) !important;
  font-size: 0.875rem !important;
  width: fit-content;
}

.contact-cta-panel {
  padding: 28px 22px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(85, 210, 243, 0.15);
  color: var(--cyan);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-header-intro {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-header-intro .cta-badge {
  margin-bottom: 12px;
  background: var(--surface-blue);
  color: var(--link);
}

.form-lead-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  line-height: 1.25;
}

.form-lead-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.form-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 750;
}

.form-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.form-trust-pills .ph {
  color: var(--link);
  font-size: 1rem;
}

.contact-cta-panel h3 {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  font-weight: 800;
  line-height: 1.25;
}

.contact-cta-panel p {
  margin: 0;
  color: var(--on-dark-faint);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.cta-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.button-cta-panel {
  width: 100%;
}

.cta-panel-link {
  color: var(--on-dark-strong);
}

.cta-panel-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--on-dark-muted);
  font-size: 0.8125rem;
  font-weight: 750;
}

.cta-panel-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-panel-proof .ph {
  color: var(--cyan);
}

.request-hero {
  padding-block: 40px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.request-page-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block: 28px 56px;
}

.request-sidebar {
  display: contents;
}

.request-guide-card {
  order: 1;
}

.request-form-wrap {
  order: 2;
}

.request-desks-card {
  order: 3;
}

.request-compliance-ledger {
  padding-block: 40px 72px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.request-sidebar-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.request-sidebar-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy);
}

.request-sidebar-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.desk-links {
  display: grid;
  gap: 8px;
}

.desk-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 650;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 160ms ease;
}

.desk-links a:hover {
  border-color: var(--link);
  background: var(--surface-blue);
  color: var(--link-dark);
}

.desk-links a i {
  font-size: 1.125rem;
  color: var(--link);
}

/* Mobile-First Fine-Tuning (<= 640px) */
@media (max-width: 640px) {
  .request-hero {
    padding-block: 24px 14px;
  }

  .request-hero h1 {
    font-size: clamp(1.65rem, 5.5vw, 2rem);
    line-height: 1.18;
  }

  .request-page-grid {
    padding-block: 16px 36px;
    gap: 16px;
  }

  .lead-form {
    padding: 18px 14px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(7, 24, 46, 0.08);
  }

  .form-field + .form-field {
    margin-top: 16px;
  }

  .form-field input,
  .form-field textarea {
    min-height: 48px;
    padding: 11px 13px;
    border-radius: 10px;
  }

  .form-field textarea {
    min-height: 110px;
  }

  .category-chips {
    gap: 6px;
  }

  .chip-btn {
    min-height: 38px;
    padding: 6px 12px;
    font-size: 0.8125rem;
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }

  .textarea-wrap textarea {
    min-height: 110px;
    padding: 11px 13px 32px;
  }

  .textarea-wrap .char-counter {
    right: 10px;
    bottom: 22px;
    font-size: 0.6875rem;
    padding: 1px 5px;
  }

  .textarea-resizer {
    height: 20px;
  }

  .textarea-meta {
    margin-top: 5px;
  }

  .file-upload-zone {
    padding: 14px;
    min-height: 72px;
  }

  .file-prompt {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .file-badge {
    width: 100%;
    height: 44px;
    justify-content: center;
    font-size: 0.9375rem;
  }

  .file-action {
    display: none;
  }

  .file-hint {
    text-align: center;
    font-size: 0.75rem;
  }

  .file-attached {
    gap: 8px;
  }

  .file-name {
    max-width: calc(100vw - 140px);
    font-size: 0.8125rem;
  }

  .file-remove-btn {
    width: 44px;
    height: 44px;
  }

  .form-submit-wrap {
    margin-top: 18px;
  }

  .button-whatsapp {
    height: 50px;
    font-size: 0.96875rem;
  }

  .button-reset {
    height: 46px;
    font-size: 0.90625rem;
  }

  .request-sidebar-card {
    padding: 16px 14px;
    border-radius: 12px;
  }
}

.site-footer {
  padding-block: 56px 24px;
  background: var(--bg-deep);
  color: var(--on-dark-base);
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.footer-brand img {
  width: 112px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 34ch;
  margin-bottom: 0;
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-block h2 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-block a {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--on-dark-strong);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-block address,
.footer-hours {
  max-width: 44ch;
  color: var(--on-dark-mid);
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-hours {
  margin-top: 8px;
}

.footer-bottom {
  display: grid;
  gap: 10px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line-deep);
  color: var(--on-dark-muted);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--on-dark-mid);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-credit {
  color: var(--on-dark-muted) !important;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-credit .credit-brand {
  color: var(--cyan);
  font-weight: 750;
  transition: color 180ms ease;
}

.footer-credit:hover {
  color: var(--white) !important;
}

.footer-credit:hover .credit-brand {
  color: var(--cyan-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Detailed services page */
.details-hero {
  padding-block: 56px;
  background: var(--surface);
}

.details-hero h1 {
  max-width: 16ch;
}

.breadcrumb {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--link);
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.details-index {
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.details-index nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.details-index a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 750;
  text-decoration: none;
}

.vertical-group {
  scroll-margin-top: calc(var(--header-height) + 90px);
  padding-block: 58px;
  border-bottom: 1px solid var(--line);
}

.vertical-group:nth-child(even) {
  background: var(--surface);
}

.vertical-header {
  margin-bottom: 32px;
}

.vertical-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.vertical-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding-inline: 8px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--hiram-cyan, #0098DA);
  font-family: var(--font-heading, inherit);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.vertical-badge-text {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hiram-cyan, #0098DA);
}

.vertical-header h2 {
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.vertical-header p {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 68ch;
  margin: 0;
}

.vertical-subcards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.subcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(7, 24, 46, 0.04);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease;
}

.subcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 24, 46, 0.09);
  border-color: rgba(0, 152, 218, 0.35);
}

.subcard-media {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}

.subcard-media picture,
.subcard-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.subcard-media img {
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.subcard:hover .subcard-media img {
  transform: scale(1.04);
}

.subcard-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

.subcard-title {
  font-size: 1.1875rem;
  font-weight: 750;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.subcard-copy {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 18px;
  flex-grow: 1;
}

.subcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.subcard-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 9px;
  line-height: 1.3;
}

.subcard-action {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.subcard-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.subcard-link .ph {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.subcard:hover .subcard-link {
  color: var(--link-hover, #005F9E);
}

.subcard:hover .subcard-link .ph {
  transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
  .vertical-subcards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .vertical-subcards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .subcard-body {
    padding: 18px;
  }
}

.availability-note {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--link);
  font-weight: 650;
}

.details-cta {
  padding-block: clamp(48px, 8vw, 88px);
  background: var(--navy);
  color: var(--white);
  text-align: left;
}

.details-cta-shell {
  display: grid;
  gap: 32px;
}

.details-cta h2 {
  max-width: 16ch;
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.details-cta p {
  max-width: 60ch;
  margin: 0;
  color: var(--on-dark-base);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.details-cta-checklist {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.details-cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 44px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark-strong);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.details-cta-checklist .ph {
  flex: none;
  margin-top: 2px;
  color: var(--cyan);
  font-size: 1.125rem;
}

.details-cta-action {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(225, 235, 243, 0.22);
  border-radius: var(--radius);
  background: var(--navy-raised);
}

.details-cta-action .button {
  width: 100%;
  min-height: 56px;
}

.details-cta-action-note {
  color: var(--on-dark-mid) !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

@media (min-width: 760px) {
  .details-cta-shell {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
  }

  .details-cta-action {
    padding: 24px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    border-color: var(--cyan-strong);
    background: var(--cyan-strong);
    box-shadow: 0 10px 26px rgba(7, 24, 46, 0.2);
    transform: translateY(-2px);
  }

  .button .ph-arrow-right,
  .text-link .ph,
  .service-row .row-arrow {
    transition: transform 180ms cubic-bezier(.16, 1, .3, 1);
  }

  .button:hover .ph-arrow-right,
  .button:focus-visible .ph-arrow-right {
    transform: translateX(4px);
  }

  .text-link:hover .ph,
  .text-link:focus-visible .ph,
  .service-row:hover .row-arrow,
  .service-row:focus-visible .row-arrow {
    transform: translateX(4px);
  }

  .service-row:hover .service-icon,
  .service-row:focus-visible .service-icon {
    transform: translateY(-2px) scale(1.04);
  }

  .chip-btn:hover .ph,
  .chip-btn:focus-visible .ph {
    transform: translateX(2px);
  }

  .button:active {
    transform: translateY(0) scale(.99);
  }

  .button-secondary:hover,
  .button-whatsapp:hover {
    border-color: var(--navy-raised);
    background: var(--navy-raised);
  }

  .service-row:hover {
    transform: translateX(4px);
    background: var(--surface);
  }

  .text-link:hover {
    color: var(--link);
  }

  .desktop-nav a:hover,
  .footer-block a:hover,
  .footer-bottom a:hover,
  .direct-contact a:hover {
    color: var(--cyan);
  }

  .breadcrumb:hover {
    color: var(--navy);
  }

  .details-index a:hover {
    border-color: var(--link);
    background: var(--surface-blue);
  }
}

@media (min-width: 600px) {
  .shell {
    width: min(calc(100% - 48px), 1180px);
  }

  .hero-actions {
    display: flex;
    align-items: center;
  }

  .stat-grid {
    gap: 16px;
  }

  .stat-item {
    padding: 20px 18px;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .services-link {
    width: fit-content;
  }

  .lead-form {
    padding: 32px;
  }

  .contact-desks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-panel-actions {
    flex-direction: row;
    align-items: center;
  }

  .button-cta-panel {
    width: fit-content;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-col:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .compliance-col:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (min-width: 760px) {
  .section {
    padding-block: 92px;
  }

  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .service-row {
    min-height: 92px;
    grid-template-columns: 56px minmax(0, 1fr) 28px;
    gap: 20px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }

  .service-text {
    grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
    align-items: center;
    gap: 24px;
  }

  .pipeline-stages {
    grid-template-columns: repeat(3, 1fr);
  }

  .pipeline-stage {
    min-width: 0;
    padding: 34px 28px 4px 0;
    border-bottom: 0;
  }

  .pipeline-stage + .pipeline-stage {
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }

  .pipeline-stage + .pipeline-stage::before {
    left: 28px;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.8fr 1.3fr;
  }
}

@media (min-width: 940px) {
  :root {
    --header-height: 82px;
  }

  body {
    padding-bottom: 0;
  }

  .shell {
    width: min(calc(100% - 64px), 1180px);
  }

  .brand img {
    width: 98px;
    height: 63px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: 18px;
  }

  .desktop-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--on-dark-strong);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-button,
  .mobile-menu,
  .mobile-backdrop {
    display: none !important;
  }

  .hero {
    padding-block: 72px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3.4rem, 5.3vw, 4.75rem);
  }

  .hero-copy > p:first-of-type {
    font-size: 1.125rem;
  }

  .hero-media picture {
    aspect-ratio: 16 / 9;
  }

  .model-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 72px;
  }

  .model-photo {
    aspect-ratio: 1 / 1;
  }

  .lead-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
    align-items: start;
    gap: 84px;
  }

  .details-hero {
    padding-block: 82px;
  }

  .vertical-grid {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(48px, 6vw, 72px);
  }

  .compliance-ledger {
    padding-block: 56px;
  }

  .compliance-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .compliance-col {
    padding: 26px 22px;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }

  .compliance-col:last-child {
    border-right: none;
  }

  .compliance-col:hover {
    background: var(--surface);
  }


  .proof-strip {
    padding-block: 36px;
  }

  .stat-grid {
    gap: 20px;
  }

  .stat-item {
    padding: 12px 16px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .stat-item:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .contact-section {
    padding-block: 92px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.95fr);
    align-items: start;
    gap: 36px;
  }

  .contact-desks-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .request-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    align-items: start;
    gap: 48px;
    padding-block: 64px 96px;
  }

  .request-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }

  .request-guide-card,
  .request-form-wrap,
  .request-desks-card {
    order: unset;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1.2fr;
    gap: 40px;
  }
}

@media (min-width: 1200px) {
  .desktop-nav {
    gap: 36px;
  }

  .header-actions {
    gap: 12px;
  }
}


/* ==========================================================================
   HOMEPAGE ABOUT PREVIEW SECTION
   ========================================================================== */
.home-about-section {
  padding-block: clamp(48px, 6vw, 76px);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.home-about-points {
  display: grid;
  gap: 12px;
  margin-block: 22px 28px;
  padding: 0;
  list-style: none;
}

.home-about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.home-about-points .ph-check-circle {
  font-size: 1.25rem;
  color: #0077aa;
  flex-shrink: 0;
}

.home-about-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px 28px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 20px;
}

.home-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.1;
}

.home-about-stat span {
  display: block;
  font-size: 0.75rem;
  color: var(--on-dark-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-about-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--map-border);
}

.home-about-badge-row .ph-shield-check {
  font-size: 1.25rem;
  color: var(--cyan);
}

@media (max-width: 900px) {
  .home-about-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT PAGE: HERO & PROOF METRICS
   ========================================================================== */
.about-hero {
  padding-block: clamp(48px, 6vw, 76px) clamp(40px, 5vw, 60px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.about-hero-inner {
  max-width: 940px;
}

.about-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.125rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.about-hero-tagline {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}

.about-hero-copy {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 820px;
  margin-bottom: 36px;
}

.about-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.about-metric-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.about-metric-card:hover {
  transform: none;
  border-color: transparent;
}

.about-metric-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw, 2.375rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.about-metric-card span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 550;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .about-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .about-metrics-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT PAGE: MISSION, VISION & VALUES
   ========================================================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.philosophy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.philosophy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 152, 218, 0.4);
  box-shadow: var(--shadow-md);
}

.philosophy-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 152, 218, 0.1);
  color: var(--link);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.philosophy-icon svg,
.philosophy-icon .ph {
  width: 28px;
  height: 28px;
  font-size: 26px;
  display: grid;
  place-items: center;
}

.philosophy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 750;
  color: var(--navy);
  margin-bottom: 12px;
}

.philosophy-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 0;
}

@media (max-width: 940px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   ABOUT PAGE: 9 SUPPLY VERTICALS (CONTRAST PANEL)
   ========================================================================== */
.about-verticals-panel {
  background: var(--navy);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
  color: var(--white);
}

.about-verticals-panel .section-heading h2 {
  color: var(--white);
}

.about-verticals-panel .section-heading p {
  color: var(--on-dark-muted);
}

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

.about-vertical-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.about-vertical-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.about-vertical-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.about-vertical-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 152, 218, 0.15);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.about-vertical-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.about-vertical-card h3 {
  font-size: 1.0625rem;
  font-weight: 750;
  color: var(--white);
  margin-bottom: 8px;
}

.about-vertical-card p {
  color: var(--on-dark-muted);
  font-size: 0.84375rem;
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.about-vertical-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cyan);
}

.about-vertical-cta .ph {
  transition: transform 180ms ease;
}

.about-vertical-card:hover .about-vertical-cta .ph {
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .about-verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-verticals-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT PAGE: OPERATIONS NETWORK & VECTOR MAP DASHBOARD
   ========================================================================== */
.about-network-section {
  padding-block: clamp(26px, 3.8vh, 46px);
  background: var(--map-surface-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.network-header-copy {
  max-width: 620px;
}

.network-header-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.22;
}

.network-header-copy p {
  font-size: 0.84375rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.map-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.map-filter-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.78125rem;
  font-weight: 700;
  padding: 10px 16px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 180ms ease;
  white-space: nowrap;
}

.map-filter-btn:hover {
  border-color: var(--link);
  color: var(--link);
}

.map-filter-btn.is-active,
.map-filter-btn.is-active:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

/* Full-Width Desktop Operations Map Stage */
.network-map-stage {
  position: relative;
  width: 100%;
  height: clamp(380px, 48vh, 520px);
  border-radius: 20px;
  overflow: visible;
  touch-action: pan-y !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--map-bg);
  border: 1px solid var(--map-border);
  box-shadow: 0 8px 30px rgba(11, 21, 36, 0.05);
  margin-bottom: 24px;
}

.operations-svg-map {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  border-radius: 17px;
  aspect-ratio: 300 / 280;
  object-fit: contain;
  padding: 12px 16px;
  box-sizing: border-box;
}

.map-ocean {
  fill: var(--map-bg);
}

.map-country {
  fill: var(--map-country);
  stroke: var(--map-country-border);
  stroke-width: 0.55;
  transition: fill 200ms ease;
}

.map-country.is-presence {
  fill: var(--map-presence);
  stroke: var(--cyan-deep);
  stroke-width: 0.85;
}

.map-corridor-arc {
  stroke: var(--cyan-deep);
  stroke-width: 1.25;
  stroke-dasharray: 4 3;
  fill: none;
  opacity: 0.45;
  transition: opacity 250ms ease, stroke 250ms ease;
}

.map-corridor-arc.is-active {
  stroke: var(--link-dark);
  stroke-width: 2.2;
  stroke-dasharray: none;
  opacity: 1;
}

.map-node {
  cursor: pointer;
}

.map-node .node-hit {
  fill: transparent;
  pointer-events: all;
}

.map-node:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.node-ping {
  fill: var(--cyan-deep);
  fill-opacity: 0.35;
  animation: radarPing 2.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  transform-origin: center;
}

.node-outer {
  fill: var(--white);
  stroke: var(--cyan-deep);
  stroke-width: 1.85;
  transition: transform 180ms ease, stroke 180ms ease;
}

.node-core {
  fill: var(--cyan-deep);
  transition: fill 180ms ease;
}

.map-node:hover .node-outer,
.map-node:focus .node-outer,
.map-node.is-active .node-outer {
  stroke: var(--link-dark);
  transform: scale(1.3);
}

.map-node.is-hq .node-core {
  fill: var(--amber);
}

.map-node.is-hq .node-outer {
  fill: var(--white);
  stroke: var(--amber);
  stroke-width: 2.2;
}

.node-label-hq {
  font-family: var(--font-heading);
  font-size: 7.5px;
  font-weight: 800;
  fill: var(--navy);
  letter-spacing: 0.08em;
  pointer-events: none;
  paint-order: stroke fill;
  stroke: var(--white);
  stroke-width: 2.5px;
  stroke-linejoin: round;
}

@keyframes radarPing {
  0% {
    r: 3px;
    opacity: 0.9;
  }
  100% {
    r: 16px;
    opacity: 0;
  }
}

/* Floating Tooltip with Boundary Clamping & Auto-Flip */
.map-tooltip {
  position: absolute;
  z-index: 50;
  pointer-events: none;
  transform: translate(-50%, -100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, visibility 160ms ease;
  background: rgba(8, 22, 40, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 152, 218, 0.45);
  border-radius: 12px;
  padding: 11px 32px 11px 15px;
  width: max-content;
  max-width: 270px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.map-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -100%);
}

.map-tooltip.is-visible.is-flipped {
  transform: translate(-50%, 0);
}

.tooltip-close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 22px;
  height: 22px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-dark-muted);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: all 150ms ease;
}

.tooltip-close:hover,
.tooltip-close:focus {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

/* Arrow for normal top position */
.map-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(calc(-50% + var(--arrow-offset, 0px)));
  border-width: 6px;
  border-style: solid;
  border-color: rgba(8, 22, 40, 0.97) transparent transparent transparent;
  pointer-events: none;
}

/* Arrow for flipped bottom position */
.map-tooltip.is-flipped::after {
  top: auto;
  bottom: 100%;
  transform: translateX(calc(-50% + var(--arrow-offset, 0px)));
  border-color: transparent transparent rgba(8, 22, 40, 0.97) transparent;
}

.tooltip-city {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.tooltip-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.tooltip-phones:empty {
  display: none;
  margin-top: 0;
}

.tooltip-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  transition: color 150ms ease;
  white-space: nowrap;
}

.tooltip-phone .ph {
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.tooltip-phone:hover,
.tooltip-phone:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

/* ==========================================================================
   ABOUT PAGE: COMPACT REGIONAL HUBS DIRECTORY (INFORMATIONAL MATRIX)
   ========================================================================== */
.network-hubs-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hubs-matrix-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 18px rgba(7, 24, 46, 0.03);
  transition: opacity 220ms ease, border-color 220ms ease;
}

.hubs-matrix-col.is-dimmed {
  opacity: 0.3;
}

.matrix-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.matrix-col-header .ph {
  font-size: 18px;
  color: var(--link);
  flex-shrink: 0;
}

.matrix-col-header h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.matrix-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.matrix-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.4;
  padding-block: 2px;
}

.matrix-city {
  font-weight: 700;
  color: var(--navy);
}

.matrix-list li.is-hq .matrix-city {
  color: var(--navy);
  font-weight: 800;
}

.matrix-list .hub-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(0, 95, 133, 0.08);
  color: var(--link);
  white-space: nowrap;
}

.matrix-list .hub-badge.is-hq {
  background: rgba(255, 200, 55, 0.2);
  color: var(--amber-dark);
}

@media (max-width: 900px) {
  .network-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .network-map-stage {
    height: 380px;
  }

  .network-hubs-matrix {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .about-network-section {
    padding-block: 36px;
  }

  .network-map-stage {
    height: 320px;
    border-radius: 14px;
  }
}

/* ==========================================================================
   ABOUT PAGE: TRADE SCOPE SUMMARY
   ========================================================================== */
.about-scope-section {
  padding-block: clamp(48px, 6vw, 76px);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.about-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.scope-group {
  padding: 28px 28px 32px;
  background: var(--white);
}

.scope-group + .scope-group {
  border-left: 1px solid var(--line);
}

.scope-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.scope-group-header .ph {
  font-size: 20px;
  color: var(--link);
  flex-shrink: 0;
}

.scope-group-header h3 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.scope-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scope-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.4;
}

.scope-list li .ph {
  font-size: 16px;
  color: var(--muted);
  flex-shrink: 0;
}

.scope-cta-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.scope-cta-row .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 860px) {
  .about-scope-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .scope-group + .scope-group {
    border-left: none;
    border-top: 1px solid var(--line);
  }
}

/* ==========================================================================
   ABOUT PAGE: DIRECT DESKS & CTA
   ========================================================================== */
.about-desks-section {
  padding-block: clamp(48px, 6vw, 76px);
}

.about-cta-panel {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-cta-copy h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 750;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-cta-copy p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .about-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .about-cta-actions .button {
    width: 100%;
  }
}

@media (forced-colors: active) {
  .button,
  .service-icon,
  .check-list li > span,
  .compliance-col,
  .pipeline-stage {
    border: 1px solid ButtonText;
  }
}



/* Country-first directory: the full row calls the named regional desk. */
.contact-directory-panel { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); min-width: 0; }
.contact-directory-panel h3 { margin: 0 0 8px; }
.contact-directory-panel > p { color: var(--muted); margin: 0 0 20px; }
.trade-directory { min-width: 0; }
.trade-directory .trade-directory-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 16px; min-height: 76px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.trade-directory-place { font-size: 0.9375rem; font-weight: 650; }
.trade-directory-number { display: inline-flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 750; white-space: nowrap; font-variant-numeric: tabular-nums; }
.trade-directory-number i { color: var(--link); }
.trade-directory-channels { display: grid; gap: 4px; padding-top: 16px; }
.trade-directory .trade-directory-channels a { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; min-height: 44px; color: var(--link); text-decoration: none; font-size: 0.9375rem; }
.trade-directory a:hover { text-decoration: underline; text-underline-offset: 4px; }
.about-contact-directory { max-width: 820px; margin-top: 32px; }
.site-footer .trade-directory-row { color: var(--white); border-color: rgba(255,255,255,.2); min-height: 64px; padding-block: 10px; }
.site-footer .trade-directory-place { width: 100%; color: #c7d9e8; font-size: .875rem; }
.site-footer .trade-directory-number { font-size: .9375rem; }
.site-footer .trade-directory-number i { display: none; }
.site-footer .trade-directory-channels a { color: #c7d9e8; }
.hero-media { background: #f2eee7; box-shadow: none; }
.hero-media picture { aspect-ratio: 4 / 3; }
@media (min-width: 940px) { .hero-media picture { aspect-ratio: 16 / 9; } }
@media (max-width: 359px) { .contact-directory-panel { padding: 18px; } }
@media (max-width: 599px) {
  .trade-directory-place { flex-basis: 100%; }
}
.trade-directory .trade-directory-turkey { align-items: flex-start; }
.trade-directory-turkey > .trade-directory-place { flex-basis: 100%; }
.trade-directory-phones { width: 100%; }
.trade-directory .trade-directory-phones a { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 12px; min-height: 44px; padding-block: 6px; color: inherit; text-decoration: none; transition: color 180ms ease, background-color 180ms ease; }
.trade-directory-phones a:hover .trade-directory-number,
.trade-directory-phones a:focus-visible .trade-directory-number { text-decoration: underline; text-underline-offset: 4px; }
.trade-directory-phones a > span:first-child { color: var(--muted); font-size: .875rem; }
.site-footer .trade-directory-phones a { color: var(--white); }
.site-footer .trade-directory-phones a > span:first-child { color: #c7d9e8; }
@media (max-width: 599px) {
  .trade-directory-phones a > span:first-child { flex-basis: 100%; }
}
/* Country flags remain independent of translated text and cannot shrink. */
.trade-directory-place { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.country-flag { width: 24px; height: 24px; flex: 0 0 24px; object-fit: contain; }
/* Mobile-first accessibility and responsive refinements, September 2026. */
html { scroll-padding-top: calc(var(--header-height) + 20px); }
body.menu-is-open { overflow: hidden; }
main, section, article, aside, .header-actions, .form-field { min-width: 0; }
h1, h2, h3 { overflow-wrap: break-word; }
h1 { font-size: clamp(2rem, 7vw, 3.5rem); line-height: 1.12; }
h2 { font-size: clamp(1.75rem, 6vw, 2.75rem); line-height: 1.16; }
.hero { padding-block: 40px; }
.hero-grid { gap: 28px; }
.hero-copy > p:first-of-type { max-width: 62ch; }
.language-switcher { grid-template-columns: repeat(3, 44px); height: 50px; flex: none; }
.language-switcher button { width: 44px; height: 44px; min-height: 44px; font-size: .875rem; color: var(--on-dark-strong); transition: none; }
.language-switcher button::after { content: none; }
.language-switcher .lang-indicator { display: none; }
.language-switcher button[aria-pressed="true"] { background: var(--cyan); color: var(--navy); }
.language-switcher button:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.mobile-menu { max-height: calc(100dvh - var(--header-height)); overflow-y: auto; overscroll-behavior: contain; }
.header-inner { gap: 6px; }
.header-actions { gap: 4px; }
.brand img { width: 68px; height: 44px; }
.reveal-stat { opacity: 1; transform: none; will-change: auto; }
.node-ping { animation: none; opacity: .25; }
.stat-label, .compliance-index, .stage-tag, .char-counter, .file-hint,
.matrix-list .hub-badge, .home-about-proof .hub-badge, .map-filter-btn,
.matrix-col-header h3, .network-header-copy p, .tooltip-role,
.tooltip-desc, .desk-subtitle, .about-vertical-card p { font-size: .875rem; }
.compliance-desc, .compliance-points, .stage-list, .field-hint, .form-privacy,
.home-about-points li, .about-ledger-card p, .service-text p { font-size: .9375rem; line-height: 1.65; }
.chip-btn { min-height: 44px; font-size: .875rem; white-space: normal; text-align: left; flex: 1 1 100%; justify-content: flex-start; }
.category-chips { gap: 8px; }
.form-field input, .form-field textarea { font-size: 1rem; }
.textarea-wrap textarea { resize: vertical; min-height: 150px; padding-bottom: 36px; }
.textarea-wrap .char-counter { bottom: 8px; font-size: .875rem; }
.file-badge { min-height: 44px; height: auto; border: 0; cursor: pointer; font: inherit; font-weight: 700; }
.file-upload-zone { cursor: default; }
.file-upload-zone:focus-within { outline: 3px solid var(--focus); outline-offset: 3px; }
.file-name { overflow-wrap: anywhere; }
.request-sidebar-card h2 { font-size: 1.2rem; line-height: 1.35; margin-bottom: 12px; }
.request-sidebar-card { min-width: 0; }
.details-index { position: static; }
.details-index .shell { flex-wrap: wrap; overflow: visible; }
.details-index a { white-space: normal; min-height: 44px; flex: 1 1 100%; font-size: .875rem; }
.home-about-grid, .about-ledger-grid, .about-verticals-grid { grid-template-columns: minmax(0, 1fr); }
.home-about-grid { gap: 28px; }
.network-header-bar { flex-direction: column; align-items: flex-start; }
.map-filter-group { width: 100%; }
.map-filter-btn { flex: 1 1 140px; white-space: normal; line-height: 1.4; }
.network-hubs-matrix { grid-template-columns: minmax(0, 1fr); }
.matrix-list li { display: block; padding: 0; }
.hub-entry { width: 100%; }
.hub-entry summary { cursor: pointer; min-height: 52px; padding: 12px 0; font-size: .9375rem; line-height: 1.5; }
.hub-entry summary::marker { color: var(--link); }
.hub-entry .hub-badge { display: inline-block; margin: 6px 0 0 12px; font-size: .875rem; white-space: normal; }
.hub-entry-description { padding: 0 0 16px; margin: 0; font-size: .9375rem; color: var(--muted); line-height: 1.65; }
.network-map-stage { height: 300px; box-shadow: none; border-radius: var(--radius); }
.tooltip-close { width: 32px; height: 32px; font-size: 20px; top: 6px; right: 6px; }
.map-tooltip { padding: 12px 42px 12px 14px; max-width: min(280px, calc(100vw - 32px)); backdrop-filter: none; -webkit-backdrop-filter: none; }
.map-tooltip::before, .map-tooltip::after { pointer-events: none; }
.about-cta-actions { flex-wrap: wrap; }
.about-cta-actions .button { min-width: 0; height: auto; min-height: 52px; }
.trade-directory { container-type: inline-size; }
.trade-directory-place { flex-basis: 100%; }
.trade-directory-phones a > span:first-child { flex-basis: 100%; }
.trade-directory-number { white-space: normal; overflow-wrap: anywhere; }
@container (min-width: 400px) {
 .trade-directory-place { flex-basis: auto; }
 .trade-directory-turkey > .trade-directory-place { flex-basis: 100%; }
 .trade-directory .trade-directory-phones a > span:first-child { flex-basis: auto; }
}
@media (min-width: 600px) {
 .brand img { width: 76px; height: 49px; }
 .hero { padding-block: 52px; }
 .chip-btn { flex-basis: calc(50% - 8px); }
 .details-index a { flex-basis: calc(50% - 8px); }
 .about-ledger-grid, .about-verticals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .network-map-stage { height: 400px; }
}
@media (min-width: 940px) {
 .brand img { width: 98px; height: 63px; }
 .desktop-nav { gap: 16px; margin-right: 8px; }
 .hero { padding-block: 64px; }
 .hero-grid { gap: 40px; }
 .hero-copy h1 { font-size: clamp(2.75rem, 4.2vw, 3.75rem); }
 .home-about-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
 .about-ledger-grid, .network-hubs-matrix { grid-template-columns: repeat(3, minmax(0, 1fr)); }
 .details-index a { flex: 1 1 0; }
 .request-sidebar { position: static; }
 .network-map-stage { height: 480px; }
}
@media (min-width: 1200px) {
 .desktop-nav { gap: 28px; margin-right: 16px; }
 .header-actions { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
 .hero-media, .node-ping, .button-spinner { animation: none; }
 .hero-media, .reveal-stat, .map-node, .map-tooltip, .menu-icon-wrap .ph,
 .mobile-menu, .mobile-backdrop, .button .ph-arrow-right, .text-link .ph,
 .service-row .row-arrow, .service-icon, .chip-btn .ph,
 .trade-directory-phones a { transition: none; }
 .service-row:hover, .button:hover { transform: none; }
}

/* Footer conversion path: one decisive action, then a compact sitemap. */
.footer-cta {
  display: grid;
  gap: 24px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line-deep);
}
.footer-cta-copy h2 {
  max-width: 22ch;
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.footer-cta-copy p {
  max-width: 52ch;
  margin: 0;
  color: var(--on-dark-mid);
  font-size: 1rem;
  line-height: 1.55;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}
.footer-cta-actions .button {
  width: 100%;
}
.footer-email-link,
.footer-address-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--on-dark-strong);
  text-decoration: none;
}
.footer-email-link:hover,
.footer-email-link:focus-visible,
.footer-address-email:hover,
.footer-address-email:focus-visible {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-email-link .ph,
.footer-address-email .ph {
  font-size: 20px;
}
.footer-sitemap a {
  color: var(--on-dark-strong);
}
.footer-address-email {
  margin-top: 4px;
  color: var(--on-dark-strong);
  font-size: 0.9375rem;
}
@media (min-width: 600px) {
  .footer-cta {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: end;
  }
  .footer-cta-actions {
    justify-content: flex-end;
  }
  .footer-cta-actions .button {
    width: auto;
  }
}

/* Cookie choices: analytics is loaded only after an active opt-in. */
.cookie-notice {
  position: fixed;
  z-index: 900;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 16px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(7, 24, 46, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 32px));
  transition: opacity 220ms ease,
    transform 260ms cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear 260ms;
}

.cookie-notice.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.cookie-notice.is-closing {
  pointer-events: none;
}

.cookie-notice p {
  max-width: 46ch;
  margin: 0;
  color: var(--on-dark-base);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cookie-notice-copy {
  display: grid;
  gap: 6px;
}

.cookie-notice-copy a {
  width: fit-content;
  color: var(--cyan);
  font-size: 0.8125rem;
  font-weight: 700;
  text-underline-offset: 3px;
}

.cookie-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-notice button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--cyan);
  border-radius: 10px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
}

.cookie-notice button:active {
  transform: translateY(1px);
}

.cookie-notice button:disabled {
  cursor: default;
}

.cookie-choice {
  flex: 1 1 auto;
}

.cookie-choice-secondary {
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: transparent !important;
  color: var(--on-dark-strong) !important;
}

.cookie-choice-secondary:hover,
.cookie-choice-secondary:focus-visible {
  border-color: var(--cyan) !important;
  color: var(--white) !important;
}

@media (hover: hover) and (pointer: fine) {
  .cookie-notice button:hover {
    border-color: var(--cyan-strong);
    background: var(--cyan-strong);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
  }
}

@media (min-width: 600px) {
  .cookie-notice {
    right: 24px;
    bottom: max(24px, env(safe-area-inset-bottom));
    left: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    width: min(560px, calc(100% - 48px));
    padding: 16px 16px 16px 20px;
  }
}

/* Focused, readable legal pages shared by all three locales. */
.legal-hero {
  padding-block: clamp(48px, 8vw, 96px) 42px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 18ch;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  letter-spacing: -0.045em;
}

.legal-lead {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
}

.legal-updated {
  margin: 24px 0 0;
  color: var(--muted-soft);
  font-size: 0.8125rem;
}

.legal-section {
  padding-block: clamp(40px, 7vw, 88px);
}

.legal-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

.legal-document {
  max-width: 76ch;
}

.legal-document h2 {
  margin: 36px 0 12px;
  color: var(--navy);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  letter-spacing: -0.025em;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li,
.legal-address {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.3rem;
}

.legal-document a {
  color: var(--link);
  text-underline-offset: 3px;
}

.legal-address {
  margin: 18px 0;
  font-style: normal;
}

.legal-aside {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.legal-aside-label {
  margin: 0 0 8px;
  color: var(--muted-soft) !important;
  font-size: 0.75rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-aside a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.legal-aside a:hover,
.legal-aside a:focus-visible {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-settings-trigger {
  margin-top: 8px;
}

@media (min-width: 940px) {
  .legal-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 72px;
  }

  .legal-aside {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice,
  .cookie-notice button {
    transition: none;
  }
}

@media print {
  .cookie-notice {
    display: none;
  }
}
.seo-answer-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 194, 255, 0.08), transparent 38%),
    var(--surface, #f7f9fc);
}

.seo-answer-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.seo-answer-grid article {
  min-width: 0;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border: 1px solid rgba(11, 35, 65, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.75rem 2.25rem rgba(7, 24, 46, 0.06);
}

.seo-answer-grid h3 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: clamp(1.05rem, 3.2vw, 1.25rem);
  line-height: 1.3;
}

.seo-answer-grid p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.seo-answer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.seo-answer-links a {
  color: var(--navy);
  font-weight: 700;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

.seo-answer-links a:hover {
  color: var(--cyan-dark, #007da6);
}

@media (min-width: 760px) {
  .seo-answer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
