:root {
  color-scheme: light;
  --ink: #10202f;
  --muted: #5a6a7a;
  --line: #d9e3ec;
  --paper: #ffffff;
  --soft: #f3f7fa;
  --brand: #0b6bcb;
  --brand-dark: #084a8c;
  --brand-soft: #eaf4ff;
  --accent: #f47b20;
  --ok: #0f7a4f;
  --danger: #b3261e;
  --shadow: 0 20px 55px rgba(16, 32, 47, .12);
  --shadow-soft: 0 12px 30px rgba(16, 32, 47, .08);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(243,247,250,.96)),
    radial-gradient(circle at 18% 0%, rgba(11,107,203,.08), transparent 32%);
  line-height: 1.55;
}

a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 46px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(16,32,47,.1);
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: .8rem; }

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 750;
}
.top-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.top-nav a:hover,
.top-nav a:focus,
.top-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brand);
}
.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.btn, .header-cta, .header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-whatsapp {
  min-height: 46px;
  padding: 11px 15px;
  background: #12a35a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(18,163,90,.18);
}
.header-whatsapp:hover, .header-whatsapp:focus { background: #0d8548; }
.btn-primary, .header-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(11,107,203,.22);
}
.btn-primary:hover, .btn-primary:focus, .header-cta:hover, .header-cta:focus {
  background: linear-gradient(135deg, var(--brand-dark), #063968);
}
.btn-secondary {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-color: rgba(255,255,255,.72);
  box-shadow: 0 10px 22px rgba(16,32,47,.1);
}
.btn.is-disabled {
  opacity: .62;
  cursor: not-allowed;
  pointer-events: none;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 720px);
  padding: clamp(54px, 8vw, 92px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,34,.76) 0%, rgba(7,18,34,.56) 43%, rgba(7,18,34,.18) 74%, rgba(7,18,34,.22) 100%),
    linear-gradient(180deg, rgba(7,18,34,.08), rgba(7,18,34,.34));
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 790px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  justify-items: start;
}
.hero-copy {
  max-width: 790px;
  text-align: left;
}
.hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(3rem, 7.3vw, 5.75rem);
  line-height: .98;
  letter-spacing: 0;
  max-width: 960px;
}
.hero p { max-width: 780px; color: rgba(255,255,255,.9); font-size: 1.07rem; }
.hero-lead { font-size: clamp(1.12rem, 2.1vw, 1.48rem) !important; font-weight: 850; color: #fff !important; }
.hero-note {
  margin: 16px 0 0;
  max-width: 700px !important;
  padding: 13px 15px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92) !important;
  font-weight: 750;
  backdrop-filter: blur(8px);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 26px; }
.hero-actions .btn { min-width: 230px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.trust-list li {
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 850;
}
.trust-list.dark { display: grid; gap: 10px; }
.trust-list.dark li {
  background: #eef6ff;
  border-color: #cfe5fb;
  color: var(--ink);
}

.hero-service-panel {
  overflow: hidden;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.hero-panel-image { overflow: hidden; background: #dbe6ef; }
.hero-panel-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-panel-brand {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 24px 24px 0;
}
.hero-panel-brand img {
  width: min(210px, 100%);
  height: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 26px rgba(16,32,47,.12);
}
.hero-panel-brand span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff3e9;
  color: #9b3d05;
  font-weight: 900;
  font-size: .86rem;
}
.hero-panel-body { display: grid; gap: 12px; padding: 22px; }
.hero-panel-body h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2rem); line-height: 1.05; }
.hero-panel-body p { margin: 0; color: var(--muted); font-size: .98rem; }
.hero-panel-body dl { display: grid; gap: 10px; margin: 4px 0 0; }
.hero-panel-body dl div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbff;
}
.hero-panel-body dt { color: var(--brand); font-weight: 900; }
.hero-panel-body dd { margin: 2px 0 0; color: var(--muted); font-weight: 700; }

.sub-hero {
  padding: clamp(44px, 7vw, 72px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(16,32,47,.96), rgba(18,95,165,.9)),
    url("/assets/images/istanbul-lost-property-hero.webp") center / cover;
  color: #fff;
}
.sub-hero > div, .sub-hero > p, .sub-hero > h1 {
  width: min(var(--container), 100%);
  margin-left: auto;
  margin-right: auto;
}
.sub-hero h1 {
  margin: 8px auto 16px;
  max-width: 980px;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}
.sub-hero p { max-width: 820px; color: rgba(255,255,255,.9); font-size: 1.12rem; }

.intro-strip, .content-section, .request-form, .success-banner {
  width: min(var(--container), calc(100% - 36px));
  margin: clamp(22px, 4vw, 40px) auto;
}
.content-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 10px 28px rgba(16,32,47,.045);
}
.content-section h2 { margin: 8px 0 18px; font-size: clamp(1.75rem, 4vw, 2.65rem); line-height: 1.08; }
.visual-section { border: 0; box-shadow: none; background: transparent; padding: clamp(16px, 3vw, 24px) 0; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.location-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.location-card:hover, .location-card:focus { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(16,32,47,.13); }
.location-image { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: #dbe6ef; }
.location-image img, .item-card img, .request-info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-image img { transition: transform .2s ease; }
.location-card:hover img, .location-card:focus img { transform: scale(1.025); }
.location-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  min-height: 176px;
  padding: 20px;
}
.location-body strong { font-size: 1.2rem; }
.location-body span { color: var(--muted); font-weight: 650; }
.location-body em { margin-top: 8px; color: var(--brand); font-style: normal; font-weight: 900; }

.request-showcase {
  width: min(var(--container), calc(100% - 36px));
  margin: clamp(28px, 5vw, 48px) auto;
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.request-info {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(180deg, #fff, #f5f9fd);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.request-info h2 { margin: 0; font-size: clamp(1.85rem, 3.4vw, 3rem); line-height: 1.05; }
.request-info p { color: var(--muted); margin: 0; font-weight: 700; }
.request-info img { aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: 0 16px 34px rgba(16,32,47,.12); }
.request-showcase .request-form { width: 100%; margin: 0; }
.request-showcase .form-head, .request-showcase .form-card, .request-showcase .submit-bar { box-shadow: none; }
.request-cta-card {
  display: grid;
  gap: 16px;
  align-self: stretch;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbfe);
  box-shadow: var(--shadow);
}
.request-cta-card h3,
.request-cta-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
}
.request-cta-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.compact-request-form .form-head p {
  max-width: 760px;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.item-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.item-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(16,32,47,.1); }
.item-card img { aspect-ratio: 1 / 1; background: #edf3f8; }
.item-card h3 { margin: 0; padding: 14px; font-size: 1rem; text-align: center; }

.success-banner {
  background: #eaf8f1;
  border: 1px solid rgba(15,122,79,.3);
  color: #063d28;
  border-radius: var(--radius);
  padding: 22px;
}
.success-banner h2 { margin-top: 0; }

.request-form { display: grid; gap: 18px; }
.form-head, .form-card, .submit-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-soft);
}
.form-head h2 { margin: 8px 0; font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.08; }
.form-head p { color: var(--muted); }
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -4px -4px 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.section-title span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}
.section-title h3 { margin: 0; font-size: 1.28rem; }

.field-grid { display: grid; gap: 16px; }
.field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.span-two { grid-column: 1 / -1; }
label, fieldset { display: grid; gap: 7px; font-weight: 850; min-width: 0; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { margin-bottom: 12px; font-weight: 900; }
label strong, legend strong { color: var(--danger); }
small, .help-line { color: var(--muted); font-weight: 650; font-size: .86rem; }
input, textarea, select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #b7c7d6;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  font-weight: 650;
}
textarea { resize: vertical; min-height: 118px; }
input:focus, textarea:focus, select:focus, button:focus, a:focus {
  outline: 3px solid rgba(11,107,203,.25);
  outline-offset: 2px;
  border-color: var(--brand);
}
.is-invalid { border-color: var(--danger) !important; box-shadow: 0 0 0 3px rgba(179,38,30,.12); }
.field-error { color: var(--danger); font-weight: 800; font-size: .88rem; }

.measure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.input-suffix { display: flex; align-items: stretch; }
.input-suffix input { border-radius: var(--radius) 0 0 var(--radius); }
.input-suffix em {
  display: grid;
  place-items: center;
  min-width: 48px;
  padding: 0 10px;
  border: 1px solid #b7c7d6;
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #f4f8fb;
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}
.notice, .info-message {
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff6ec;
  color: #6a3504;
  border: 1px solid #ffd2a6;
  font-weight: 750;
}
.info-message { background: #edf5ff; color: #123f68; border-color: #bdd9f8; }

.radio-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.radio-cards.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.radio-cards label {
  position: relative;
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  cursor: pointer;
}
.radio-cards input { width: 20px; min-height: 20px; }
.radio-cards span { font-weight: 900; }

.check-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 12px; }
.check-row input { width: 22px; min-width: 22px; min-height: 22px; margin-top: 2px; }
.submit-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.btn-submit { min-width: 240px; }
.hp-field { position: absolute; left: -100vw; width: 1px; height: 1px; opacity: 0; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 24px;
  align-items: start;
}
.shipping-strip {
  margin-top: 0;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fbff);
}
.carrier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0;
}
.carrier-grid img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.service-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  padding: 20px;
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-weight: 750;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.steps, .story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.steps.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps article, .story-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(180deg, #fff, #f8fbfe);
  box-shadow: var(--shadow-soft);
}
.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}
.steps p, .story-grid span, .faq p { color: var(--muted); }
.story-grid a { text-decoration: none; display: grid; gap: 8px; }
.story-grid strong { font-size: 1.05rem; }

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}
.section-heading-row p {
  max-width: 820px;
  color: var(--muted);
  font-weight: 700;
}
.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.trust-card-grid article {
  display: grid;
  gap: 8px;
  min-height: 145px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbfe);
  box-shadow: var(--shadow-soft);
}
.trust-card-grid strong { font-size: 1.05rem; }
.trust-card-grid span { color: var(--muted); font-weight: 700; }

.story-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: start;
}
.story-company-grid p {
  color: var(--muted);
  font-weight: 700;
}
.founder-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: var(--shadow-soft);
}
.founder-card h3 { margin: 0; font-size: 1.7rem; }
.founder-card strong { color: var(--ink); }
.founder-card a {
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}
.founder-photo {
  width: min(100%, 240px);
  max-width: 240px;
  height: auto;
  justify-self: center;
  border-radius: 0;
  object-fit: contain;
}
.social-media-panel {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.social-media-panel h4 {
  margin: 0;
  color: var(--ink);
  font-size: .98rem;
}
.social-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.social-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink) !important;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social-card:hover,
.social-card:focus {
  transform: translateY(-2px);
  border-color: rgba(244, 123, 32, .42);
  box-shadow: 0 12px 24px rgba(8, 18, 37, .10);
}
.social-card:hover .social-icon,
.social-card:focus .social-icon {
  background: #fff1e8;
  color: var(--brand);
}
.social-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f5f9fd;
  color: var(--brand-strong);
  transition: background .18s ease, color .18s ease;
}
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-card span:last-child {
  display: grid;
  gap: 3px;
}
.social-card strong,
.social-card small,
.social-card em {
  display: block;
}
.social-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.social-card em {
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
  font-size: .88rem;
}
.founder-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11,107,203,.14), rgba(244,123,32,.14)),
    #f5f9fd;
  color: var(--ink);
  font-weight: 900;
}
.company-doc-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid #ffd4ad;
  border-radius: var(--radius);
  background: #fff7ef;
}
.company-doc-card h3,
.company-doc-card p { margin: 0; }
.company-doc-card p { color: #794005; font-weight: 700; }
.company-doc-image {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(121, 64, 5, .22);
  background: #fff;
  box-shadow: 0 14px 28px rgba(121, 64, 5, .14);
}
.company-doc-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
}

.contact-cta-section {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(8,18,37,.96), rgba(13,67,115,.92)),
    url("/assets/images/airport-hero-skyline.webp") center / cover;
  color: #fff;
}
.contact-cta-section p { color: rgba(255,255,255,.82); font-weight: 700; }
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-method-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  min-width: 0;
}
.contact-method-grid span {
  color: rgba(255,255,255,.68);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.contact-method-grid a,
.contact-method-grid strong {
  color: #fff;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-section {
  background: linear-gradient(180deg, #fff, #f7fbff);
  overflow: hidden;
}
.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: end;
}
.reviews-head p {
  max-width: 780px;
  color: var(--muted);
  font-weight: 700;
}
.review-score-card {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.review-score-card span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.review-score-card strong {
  font-size: 3rem;
  line-height: 1;
}
.review-score-card p { margin: 0; color: var(--muted); font-weight: 700; }
.trustindex-shell {
  margin-top: 22px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(16px, 3vw, 24px);
  box-shadow: var(--shadow-soft);
}
.trustindex-fallback {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed #c8d8e7;
  border-radius: var(--radius);
  background: #f6fbff;
}
.trustindex-fallback strong { font-size: 1.1rem; }
.trustindex-fallback p { margin: 0; color: var(--muted); font-weight: 700; }
.trustindex-target .ti-widget {
  margin: 0 !important;
}

.story-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: stretch;
}
.story-track { min-width: 0; }
.empty-story {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fbfdff, #eef6ff);
  padding: 24px;
}
.story-placeholder-image {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11,107,203,.12), rgba(244,123,32,.12)),
    url("/assets/images/hotel.webp") center / cover;
}
.story-arrow {
  width: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
}
.story-arrow[hidden] { display: none; }

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: #fbfdff;
  overflow: hidden;
}
.faq details + details { margin-top: 10px; }
.faq details[open] { background: #fff; box-shadow: var(--shadow-soft); }
.faq summary {
  cursor: pointer;
  font-weight: 900;
  padding: 16px 18px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 900;
}
.faq details[open] summary::after { content: "-"; }
.faq details p { margin: 0; padding: 0 18px 18px; }

.legal-copy h2 { font-size: 1.35rem; margin-top: 26px; }
.legal-copy h2:first-child { margin-top: 0; }

.site-footer {
  margin-top: clamp(36px, 6vw, 64px);
  padding: clamp(34px, 6vw, 56px) clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, #091522, #10202f 58%, #0b3866);
  color: #fff;
}
.site-footer p { color: rgba(255,255,255,.78); }
.footer-logo {
  display: block;
  width: 156px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  width: min(var(--container), 100%);
  margin: 0 auto;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links h3 { margin: 0 0 4px; color: #fff; font-size: .95rem; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.82); font-weight: 750; text-decoration: none; overflow-wrap: anywhere; }
.footer-grid a:hover, .footer-grid a:focus { color: #fff; text-decoration: underline; }
.footer-notice {
  width: min(var(--container), 100%);
  max-width: 980px;
  margin: 22px auto 0;
  font-size: .93rem;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #12a35a;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0,0,0,.2);
}
.floating-whatsapp:hover, .floating-whatsapp:focus { background: #0d8548; }

.stories-hero {
  display: grid;
  gap: 12px;
}
.story-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}
.story-breadcrumbs a {
  color: var(--brand);
  text-decoration: none;
}
.story-breadcrumbs a:hover,
.story-breadcrumbs a:focus {
  text-decoration: underline;
}
.story-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.story-filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.story-filter:hover,
.story-filter:focus,
.story-filter.is-active {
  border-color: rgba(244, 123, 32, .44);
  background: #fff7ef;
  color: var(--brand);
}
.real-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.real-case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.real-case-card:hover,
.real-case-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(244, 123, 32, .34);
  box-shadow: 0 18px 34px rgba(8, 18, 37, .12);
}
.real-case-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: #edf3f8;
  overflow: hidden;
}
.real-case-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(8, 18, 37, .86);
  color: #fff;
  padding: 0 10px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.real-case-body {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 16px;
}
.case-category {
  margin: 0;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.real-case-body h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}
.real-case-body h3 a {
  color: var(--ink);
  text-decoration: none;
}
.real-case-body h3 a:hover,
.real-case-body h3 a:focus {
  color: var(--brand);
}
.real-case-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}
.case-outcome {
  color: var(--ink);
  font-weight: 900;
  font-size: .9rem;
}
.case-read-link {
  align-self: end;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}
.case-read-link:hover,
.case-read-link:focus {
  text-decoration: underline;
}
.category-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.category-link-grid a {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  padding: 14px;
  color: var(--ink);
  text-decoration: none;
}
.category-link-grid a:hover,
.category-link-grid a:focus {
  border-color: rgba(244, 123, 32, .4);
  box-shadow: var(--shadow-soft);
}
.category-link-grid span {
  color: var(--muted);
  font-weight: 700;
}
.empty-story-state {
  display: grid;
  gap: 12px;
  justify-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  padding: 24px;
}
.empty-story-state h2,
.empty-story-state p {
  margin: 0;
}
.story-filter-empty {
  margin-top: 16px;
}
.story-category-actions {
  margin-top: 20px;
}
.real-cases-home-section {
  overflow: hidden;
}
.home-case-carousel {
  margin-top: 20px;
  overflow: hidden;
}
.home-case-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31%);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.home-case-slide {
  scroll-snap-align: start;
}
.story-detail {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.story-detail-hero {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 56px) 0 24px;
}
.story-detail-hero .case-badge {
  position: static;
  justify-self: start;
}
.story-detail-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: .98;
}
.story-detail-hero p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 750;
  line-height: 1.65;
}
.story-detail-image {
  margin: 8px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #edf3f8;
  box-shadow: var(--shadow-soft);
}
.story-detail-image img {
  display: block;
  width: 100%;
  height: min(70vh, 620px);
  object-fit: contain;
  background: #edf3f8;
}
.story-detail-image figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-weight: 800;
  background: #fff;
}
.story-detail-body {
  display: grid;
  gap: 22px;
  max-width: 880px;
  padding: 16px 0 34px;
}
.story-detail-body section {
  display: grid;
  gap: 10px;
}
.story-detail-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.story-detail-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}
.story-service-link a {
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}
.story-service-link a:hover,
.story-service-link a:focus {
  text-decoration: underline;
}
.story-cta-box {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8,18,37,.96), rgba(13,67,115,.92));
  color: #fff;
  padding: clamp(22px, 4vw, 34px);
}
.story-cta-box h2,
.story-cta-box p {
  margin: 0;
}
.story-cta-box p {
  color: rgba(255,255,255,.82);
  font-weight: 750;
}

@media (max-width: 1020px) {
  .top-nav { gap: 12px; font-size: .95rem; }
  .item-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .real-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-case-track { grid-auto-columns: minmax(270px, 44%); }
}

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; gap: 12px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .top-nav {
    display: none;
    width: 100%;
    order: 4;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .top-nav.is-open { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero { min-height: auto; padding-block: 44px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bg { object-position: 64% center; }
  .hero-service-panel { grid-template-rows: auto auto; }
  .field-grid.two, .steps, .steps.four, .story-grid, .split-section, .check-list, .footer-grid, .request-showcase, .section-heading-row, .story-company-grid, .company-doc-card, .story-cta-box { grid-template-columns: 1fr; }
  .reviews-head { grid-template-columns: 1fr; }
  .request-info { position: static; }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-card-grid, .contact-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .measure-grid, .carrier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .radio-cards, .radio-cards.compact { grid-template-columns: 1fr; }
  .submit-bar { align-items: stretch; flex-direction: column; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .site-header { padding: 12px 14px; }
  .header-actions { width: 100%; order: 3; }
  .header-cta, .header-whatsapp { flex: 1; min-width: 0; padding-inline: 10px; font-size: .78rem; }
  .brand { gap: 9px; }
  .brand-logo-wrap { width: 58px; height: 38px; }
  .brand small { font-size: .72rem; }
  .hero { padding-inline: 18px; }
  .hero-bg { object-position: 68% center; }
  .hero h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { min-width: 0; }
  .trust-list { display: grid; }
  .intro-strip, .content-section, .request-form, .success-banner, .request-showcase { width: min(calc(100% - 24px), var(--container)); }
  .form-head, .form-card, .submit-bar { padding: 18px; }
  .measure-grid, .carrier-grid, .location-grid, .trust-card-grid, .contact-method-grid { grid-template-columns: 1fr; }
  .item-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .real-case-grid, .category-link-grid { grid-template-columns: 1fr; }
  .story-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .story-filter { flex: 0 0 auto; }
  .home-case-track { grid-auto-columns: minmax(260px, 86%); }
  .story-detail { width: min(calc(100% - 24px), var(--container)); }
  .story-detail-hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .story-detail-image img { height: min(64vh, 460px); }
  .empty-story { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 0 15px;
    font-size: .9rem;
  }
}
