/* ============================================================
   Solidcon – Global CSS
   ============================================================ */

/* Variables */
:root {
  --blue:    #22548e;
  --blue-dark:#1a4070;
  --orange:  #f97316;
  --orange-dark:#ea6c0a;
  --dark:    #131f33;      /* deep navy – dark sections, footer, sticky bar */
  --gray-50: #f9fafb;
  --gray-100:#f3f4f6;
  --gray-200:#e5e7eb;
  --gray-300:#d1d5db;
  --gray-400:#9ca3af;
  --gray-500:#6b7280;
  --gray-600:#4b5563;
  --gray-700:#374151;
  --gray-800:#1f2937;
  --gray-900:#111827;
  --white:   #ffffff;
  --radius-sm:0.5rem;
  --radius:  0.75rem;
  --radius-lg:1rem;
  --shadow:  0 1px 3px rgba(15,30,50,.08), 0 4px 14px rgba(15,30,50,.06);
  --shadow-md:0 6px 16px -2px rgba(15,30,50,.12), 0 2px 6px -1px rgba(15,30,50,.07);
  --shadow-lg:0 20px 48px rgba(15,30,50,.16);
  --grad-orange: linear-gradient(135deg, #fb8c33 0%, #f97316 55%, #ea6c0a 100%);
  --grad-navy:   linear-gradient(135deg, #131f33 0%, #22548e 100%);
  --ring: 0 0 0 3px rgba(249,115,22,.35);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: #fff;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
main { flex: 1; display: block; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 1280px; }
.container--wide   { max-width: 1480px; }

/* ── Typography ────────────────────────────────────────────── */
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.2; color: var(--gray-900); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem);    font-weight: 700; line-height: 1.25; color: var(--gray-900); }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; color: var(--gray-900); }
p  { line-height: 1.7; }

.section-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .75rem;
}
.section-title--white { color: #fff; }
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 680px;
  line-height: 1.7;
}
.section-subtitle--white { color: rgba(255,255,255,.75); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: .9375rem;
  transition: background .18s, color .18s, border-color .18s, opacity .18s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
}
.btn--primary:hover { background: var(--orange-dark); }
.btn--outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--outline-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn--outline-white:hover { background: rgba(255,255,255,.15); }
.btn--lg { padding: .9rem 2rem; font-size: 1.0625rem; }
.btn--sm { padding: .5rem 1rem; font-size: .875rem; }
.btn__icon { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section--sm { padding: 2.5rem 0; }
.section--lg { padding: 5.5rem 0; }
.section--white { background: #fff; }
.section--gray  { background: var(--gray-50); }
.section--dark  { background: var(--dark); color: #fff; }
.section--blue  { background: var(--blue); color: #fff; }
.section--orange{ background: var(--orange); color: #fff; }

.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-label .req { color: var(--orange); }
.form-control {
  width: 100%;
  padding: .625rem .875rem;
  border: 1.5px solid var(--gray-300);
  border-radius: .5rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-900);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  line-height: 1.5;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34,84,142,.15);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 6rem; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.25rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full-width { grid-column: 1 / -1; }

/* Privacy consent: one coherent, responsive block instead of separate flex items. */
.form-consent { gap: 0; }
.consent-card {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: .75rem;
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: .75rem;
  background: var(--gray-50);
  color: var(--gray-600);
  cursor: pointer;
  transition: border-color .18s, background-color .18s, box-shadow .18s;
}
.consent-card:hover {
  border-color: #b7c8df;
  background: #f7faff;
}
.consent-card:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34,84,142,.12);
}
.consent-card input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin: .16rem 0 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.consent-card__content {
  display: block;
  min-width: 0;
}
.consent-card__title {
  display: block;
  margin-bottom: .15rem;
  color: var(--gray-800);
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.35;
}
.consent-card__text {
  display: block;
  color: var(--gray-500);
  font-size: .8125rem;
  line-height: 1.55;
}
.consent-card__text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .16em;
}
.consent-card__text a:hover { color: var(--blue-dark); }
.consent-card .req { color: var(--orange); font-weight: 700; }
@media (max-width: 599px) {
  .consent-card { padding: .8rem .875rem; gap: .65rem; }
}

.form-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.form-success__title { font-size: 1.125rem; font-weight: 700; color: #166534; margin-bottom: .5rem; }
.form-success__text  { font-size: .9375rem; color: #15803d; }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 2px solid var(--gray-100);
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  transition: box-shadow .22s ease, border-color .22s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1rem;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 38px; width: auto; }

.main-nav { display: none; }
@media(min-width:1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: .125rem;
    flex: 1;
    justify-content: center;
    align-self: stretch;
  }
}
.main-nav > a {
  align-self: center;
  padding: .4rem .65rem;
  border-radius: .3rem;
  font-size: .8375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--blue); background: var(--gray-50); }
.main-nav a.active {
  color: var(--blue);
  font-weight: 600;
}

/* Offer dropdown: groups service subpages in every language. */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .4rem .65rem;
  border-radius: .3rem;
  font-size: .8375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .15s, background .15s;
  white-space: nowrap;
  line-height: 1;
  align-self: center;
}
.nav-dropdown__trigger svg {
  display: block;
  flex: 0 0 auto;
  width: .82rem;
  height: .82rem;
  transition: transform .18s ease;
}
.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger,
.nav-dropdown.is-open .nav-dropdown__trigger,
.nav-dropdown.is-active .nav-dropdown__trigger {
  color: var(--blue);
  background: var(--gray-50);
}
.nav-dropdown:hover .nav-dropdown__trigger svg,
.nav-dropdown:focus-within .nav-dropdown__trigger svg,
.nav-dropdown.is-open .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 50%;
  min-width: 14rem;
  width: max-content;
  max-width: min(20rem, calc(100vw - 2rem));
  padding: .45rem;
  border: 1px solid var(--gray-200);
  border-radius: .65rem;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.main-nav .nav-dropdown__menu a {
  display: block;
  padding: .68rem .78rem;
  border-radius: .42rem;
  font-size: .85rem;
}
.main-nav .nav-dropdown__menu a:hover,
.main-nav .nav-dropdown__menu a.active {
  color: var(--blue);
  background: rgba(34, 84, 142, .07);
}


/* Location mega menu - PL only. Keeps city pages easy to reach without a flat menu. */
.nav-locations .locations-mega {
  width: min(45rem, calc(100vw - 2rem));
  max-width: min(45rem, calc(100vw - 2rem));
  padding: 0;
  overflow: hidden;
}
.locations-mega__top {
  padding: .55rem .7rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.main-nav .locations-mega__top a {
  display: inline-flex;
  padding: .55rem .65rem;
  font-weight: 600;
  color: var(--blue);
  border-radius: .42rem;
}
.locations-mega__body {
  display: grid;
  grid-template-columns: minmax(13.5rem, 42%) 1fr;
  min-height: 25rem;
  max-height: min(35rem, 72vh);
}
.locations-mega__regions {
  padding: .45rem;
  overflow-y: auto;
  border-right: 1px solid var(--gray-200);
  background: #fff;
}
.locations-mega__region {
  display: grid;
  grid-template-columns: 1rem 1fr auto;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .62rem .7rem;
  border-radius: .4rem;
  text-align: left;
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
  transition: color .14s, background .14s;
}
.locations-mega__region:hover,
.locations-mega__region:focus-visible,
.locations-mega__region.is-active {
  color: var(--blue);
  background: rgba(34,84,142,.08);
  outline: none;
}
.locations-mega__pin { color: var(--orange); font-size: 1.1rem; line-height: 1; }
.locations-mega__chevron { color: var(--gray-400); font-size: 1.15rem; }
.locations-mega__cities { padding: 1rem 1.1rem; overflow-y: auto; background: #fff; }
.locations-mega__panel { display: none; }
.locations-mega__panel.is-active { display: block; }
.locations-mega__heading { margin: 0 0 .65rem; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .045em; color: var(--gray-400); }
.locations-mega__city-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .18rem .45rem; }
.main-nav .locations-mega__city-links a {
  display: block;
  padding: .58rem .62rem;
  border-radius: .38rem;
  font-size: .84rem;
  color: var(--gray-700);
  white-space: normal;
}
.main-nav .locations-mega__city-links a:hover,
.main-nav .locations-mega__city-links a.active { color: var(--blue); background: rgba(34,84,142,.07); }

.mobile-locations { padding: 0 .75rem .65rem; background: var(--gray-50); }
.mobile-nav .mobile-locations__all { display: block; padding: .72rem .75rem; color: var(--blue); font-weight: 700; border-bottom: 0; }
.mobile-locations__region { border-top: 1px solid var(--gray-200); }
.mobile-locations__region > summary { padding: .68rem .75rem; font-size: .88rem; font-weight: 650; color: var(--gray-700); cursor: pointer; list-style: none; }
.mobile-locations__region > summary::-webkit-details-marker { display: none; }
.mobile-locations__cities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .2rem; padding: 0 .35rem .6rem; }
.mobile-nav .mobile-locations__cities a { padding: .55rem .65rem; border: 0; border-radius: .35rem; font-size: .84rem; }
@media (max-width: 480px) { .mobile-locations__cities { grid-template-columns: 1fr; } }

.header-actions { display: none; align-items: center; gap: .75rem; flex-shrink: 0; }
@media(min-width:1024px) { .header-actions { display: flex; } }
@media(min-width:1024px) and (max-width:1180px) {
  .header-phone, .header-cta { display: none; }
  .main-nav { justify-content: flex-end; }
}
@media(min-width:1181px) and (max-width:1330px) {
  .header-phone { display: none; }
}

/* Header language switcher */
.header-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .2rem;
  border: 1px solid rgba(34, 84, 142, .14);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 3px 12px rgba(15, 23, 42, .04);
}
.header-lang-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.45rem;
  height: 2rem;
  padding: 0 .65rem;
  border-radius: 999px;
  color: var(--gray-600);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.header-lang-btn:hover {
  background: rgba(255,255,255,.8);
  color: var(--blue);
}
.header-lang-btn.is-active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(34,84,142,.14);
}

.lang-switcher {
  padding: .3rem .6rem;
  border: 1px solid var(--gray-200);
  border-radius: .3rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: border-color .15s, color .15s;
}
.lang-switcher:hover { border-color: var(--blue); color: var(--blue); }

.header-phone {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .875rem;
  border: 1.5px solid var(--blue);
  border-radius: .375rem;
  font-size: .8375rem;
  font-weight: 600;
  color: var(--blue);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.header-phone:hover { background: var(--blue); color: #fff; }
.header-phone svg { width: .9rem; height: .9rem; }

.header-cta {
  padding: .45rem 1rem;
  background: var(--orange);
  color: #fff;
  border-radius: .375rem;
  font-size: .8375rem;
  font-weight: 600;
  transition: background .15s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--orange-dark); }

/* Mobile menu toggle */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: .375rem;
  transition: background .15s;
}
@media(min-width:1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn:hover { background: var(--gray-100); }
.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 1rem 0 1.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .75rem 1.5rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color .15s, background .15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--blue); background: var(--gray-50); }
.mobile-nav > a.active,
.mobile-nav-offer__links a.active { color: var(--blue); font-weight: 600; background: rgba(34,84,142,.06); }
.mobile-nav-offer {
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-offer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  color: var(--gray-700);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color .15s, background .15s;
}
.mobile-nav-offer summary::-webkit-details-marker { display: none; }
.mobile-nav-offer summary:hover { color: var(--blue); background: var(--gray-50); }
.mobile-nav-offer summary svg { width: 1rem; height: 1rem; transition: transform .18s ease; }
.mobile-nav-offer[open] summary { color: var(--blue); background: var(--gray-50); }
.mobile-nav-offer[open] summary svg { transform: rotate(180deg); }
.mobile-nav-offer__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 .75rem .55rem;
  background: var(--gray-50);
}
.mobile-nav-offer__links a {
  display: block;
  width: 100%;
  padding: .68rem 1.5rem;
  border-bottom: 0;
  border-radius: .35rem;
  font-size: .9rem;
}
.mobile-nav-actions {
  display: flex;
  gap: .75rem;
  padding: 1rem 1.5rem 0;
  flex-wrap: wrap;
}

/* ── Breadcrumbs ───────────────────────────────────────────── */
.breadcrumbs {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: .625rem 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
  font-size: .8125rem;
  color: var(--gray-500);
}
.breadcrumbs li { display: flex; align-items: center; gap: .25rem; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--gray-300); }
.breadcrumbs a { color: var(--gray-500); transition: color .15s; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs li:last-child { color: var(--gray-700); font-weight: 500; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse at 30% 120%, rgba(249,115,22,.12), transparent 55%),
    linear-gradient(135deg, #1e2a38 0%, #1a4070 55%, #22548e 100%);
  color: #fff;
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% -20%, rgba(34,84,142,.45), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(249,115,22,.08), transparent 45%);
  pointer-events: none;
}
@media(min-width:768px) { .hero { padding: 5.5rem 0; } }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media(min-width:900px) { .hero-inner { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: .375rem .875rem;
  background: rgba(249,115,22,.18);
  border: 1px solid rgba(249,115,22,.4);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  color: #fdb78c;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero h1,
.hero h2,
.hero .hero-title,
.hero [id*="-hero"] {
  color: #ffffff !important;
  margin-bottom: 1rem;
  font-weight: 800;
  display: block;
  opacity: 1;
  visibility: visible;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.90) !important;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Subpage Fullbleed Photo Hero ────────────────────────────── */
.hero--subpage {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  overflow: hidden;
  background: #0e1a2a;
}
@media(min-width:768px) {
  .hero--subpage {
    min-height: 440px;
    padding: 5.5rem 0;
  }
}

.hero--subpage .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--subpage .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero--subpage .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(14, 26, 42, 0.94) 0%,
    rgba(14, 26, 42, 0.85) 45%,
    rgba(14, 26, 42, 0.55) 100%
  );
}
@media(max-width: 767px) {
  .hero--subpage .hero-overlay {
    background: rgba(14, 26, 42, 0.88);
  }
}

.hero--subpage .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero--subpage .hero-badge {
  display: inline-flex;
  align-items: center;
  padding: .375rem .95rem;
  background: rgba(249,115,22,.20);
  border: 1px solid rgba(249,115,22,.45);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 700;
  color: #ffb07a;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero--subpage h1 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff !important;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.hero--subpage .hero-sub {
  font-size: clamp(1.025rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.90) !important;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 660px;
}

.hero--subpage .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}


/* ── Trust Section ─────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width:600px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.11);
}
.trust-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--blue);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
}
.trust-card__icon svg { width: 1.375rem; height: 1.375rem; }
.trust-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .375rem; }
.trust-card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width:640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card__image {
  aspect-ratio: 16/9;
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .875rem;
}
.service-card__image img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.service-card p  { font-size: .875rem; color: var(--gray-500); flex: 1; margin-bottom: .875rem; line-height: 1.6; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap .15s;
}
.service-card__link:hover { gap: .625rem; }

/* ── Process Steps ─────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width:900px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }

.process-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.process-step--light {
  background: #fff;
  border-color: var(--gray-200);
  box-shadow: var(--shadow);
}
.process-step__number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .75rem;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.process-step--dark h3 { color: #fff; }
.process-step p  { font-size: .875rem; line-height: 1.65; }
.process-step--dark p { color: rgba(255,255,255,.7); }

/* ── Advantages Section ────────────────────────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media(min-width:900px) { .advantages-grid { grid-template-columns: 1fr 1fr; } }
.advantages-list { display: flex; flex-direction: column; gap: 1rem; }
.advantage-item { display: flex; gap: .875rem; }
.advantage-item__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(249,115,22,.1);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-item__icon svg { width: 1.125rem; height: 1.125rem; color: var(--orange); }
.advantage-item h3 { font-size: .9375rem; font-weight: 600; color: var(--gray-900); margin-bottom: .25rem; }
.advantage-item p  { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }
.advantage-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-left: 3px solid var(--orange);
  border-radius: 0 .5rem .5rem 0;
  font-size: .8125rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.advantages-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}
.advantages-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.125rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  background: none;
  cursor: pointer;
  gap: 1rem;
  transition: color .15s;
}
.faq-question:hover { color: var(--blue); }
.faq-question svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--orange);
  transition: transform .25s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; font-size: 1.0625rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ── Customer Cards ────────────────────────────────────────── */
.customer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width:768px) { .customer-cards { grid-template-columns: repeat(3, 1fr); } }
.customer-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.customer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.11);
}
.customer-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); margin-bottom: .75rem; }
.customer-card p  { font-size: .875rem; color: var(--gray-600); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.customer-card-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.customer-card-link:hover { text-decoration: underline; }

/* ── Map placeholder ───────────────────────────────────────── */
.map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
  border: 2px dashed var(--gray-300);
}
.map-placeholder svg { width: 3rem; height: 3rem; color: var(--gray-400); }
.map-placeholder p { color: var(--gray-500); font-size: .9375rem; }
.map-placeholder a { font-weight: 600; color: var(--blue); text-decoration: underline; }

/* ── Contact info list ─────────────────────────────────────── */
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--blue);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: .125rem;
}
.contact-info-item__icon svg { width: 1.125rem; height: 1.125rem; }
.contact-info-item__label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  margin-bottom: .25rem;
}
.contact-info-item a { font-size: 1.0625rem; font-weight: 600; color: var(--gray-900); transition: color .15s; }
.contact-info-item a:hover { color: var(--blue); }
.contact-info-item address { font-style: normal; color: var(--gray-900); font-weight: 500; line-height: 1.5; }

/* ── Info cards (used on delivery page) ───────────────────── */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width:640px) { .info-cards { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .info-cards { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-card--light { background: #fff; border-color: var(--gray-200); box-shadow: var(--shadow); }
.info-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: .625rem;
  background: rgba(34,84,142,.1);
  border: 1px solid rgba(34,84,142,.14);
  color: var(--blue);
}
.info-card__icon svg { width: 1.375rem; height: 1.375rem; }
.info-card--dark .info-card__icon,
.section--dark .info-card__icon,
.section--blue .info-card__icon {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.info-card--dark h3 { color: #fff; }
.info-card p  { font-size: .875rem; line-height: 1.65; }
.info-card--dark p { color: rgba(255,255,255,.7); }

/* ── Checklist ─────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: .625rem; }
.checklist li {
  display: flex;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding-left: .25rem;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: .5rem;
  height: .5rem;
  background: var(--orange);
  border-radius: 50%;
  margin-top: .5rem;
}

/* ── Notice box ────────────────────────────────────────────── */
.notice {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .9375rem;
  line-height: 1.65;
}
.notice--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}
.notice--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.notice--orange {
  background: rgba(249,115,22,.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 .5rem .5rem 0;
  color: var(--gray-700);
}

/* ── Table ─────────────────────────────────────────────────── */
.data-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-200); box-shadow: var(--shadow); }
.data-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.data-table thead { background: var(--dark); }
.data-table th {
  padding: .875rem 1.125rem;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  white-space: nowrap;
}
.data-table td {
  padding: .75rem 1.125rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: var(--gray-50); }
.data-table .td-class { font-family: monospace; font-weight: 700; color: var(--blue); }

/* ── Strength cards ────────────────────────────────────────── */
.strength-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width:600px) { .strength-cards { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .strength-cards { grid-template-columns: repeat(3, 1fr); } }
.strength-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  transition: transform .28s ease, box-shadow .28s ease;
}
.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}
.strength-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--blue);
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.strength-card__icon svg { width: 1.5rem; height: 1.5rem; }
.strength-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .375rem; }
.strength-card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

/* ── Reasons dark section ──────────────────────────────────── */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media(min-width:640px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .reasons-grid { grid-template-columns: repeat(3, 1fr); } }
.reason-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: .875rem;
}
.reason-card__check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--orange);
  margin-top: .125rem;
}
.reason-card h3 { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.reason-card p  { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ── Quote info items ──────────────────────────────────────── */
.quote-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media(min-width:600px) { .quote-info-list { grid-template-columns: 1fr 1fr; } }
.quote-info-item {
  display: flex;
  gap: .875rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
}
.quote-info-item__check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .125rem;
}
.quote-info-item__check svg { width: .625rem; height: .625rem; color: #fff; }
.quote-info-item h4 { font-size: .875rem; font-weight: 700; color: var(--gray-900); margin-bottom: .2rem; }
.quote-info-item p  { font-size: .8125rem; color: var(--gray-500); line-height: 1.5; }

/* ── Alt contact buttons ───────────────────────────────────── */
.alt-contact-btns { display: flex; flex-direction: column; gap: .75rem; }
.alt-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: .5rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: border-color .15s, color .15s;
}
.alt-contact-btn:hover { border-color: var(--blue); color: var(--blue); }
.alt-contact-btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ── Sticky mobile bar ─────────────────────────────────────── */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  box-shadow: 0 -2px 12px rgba(0,0,0,.2);
}
@media(min-width:768px) { .sticky-mobile-bar { display: none; } }
.sticky-mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: .75rem .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  transition: background .15s;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sticky-mobile-bar a:first-child { background: var(--blue); }
.sticky-mobile-bar a:first-child:hover { background: var(--blue-dark); }
.sticky-mobile-bar a:last-child { background: var(--orange); }
.sticky-mobile-bar a:last-child:hover { background: var(--orange-dark); }
.sticky-mobile-bar svg { width: 1.25rem; height: 1.25rem; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: #d1d5db;
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media(min-width:640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand .logo-wrap { margin-bottom: 1.25rem; }
.footer-brand .logo-wrap img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .875rem; color: #9ca3af; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-lang-btns { display: flex; gap: .625rem; }
.footer-lang-btn {
  padding: .375rem .75rem;
  border-radius: .375rem;
  font-size: .75rem;
  font-weight: 600;
  border: 1px solid;
  transition: all .15s;
}
.footer-lang-btn--active { border-color: var(--blue); color: #93c5fd; background: rgba(34,84,142,.25); }
.footer-lang-btn--inactive { border-color: #4b5563; color: #9ca3af; }
.footer-lang-btn--inactive:hover { border-color: #9ca3af; }

.footer-col h3 {
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .875rem; color: #9ca3af; transition: color .15s; }
.footer-col a:hover { color: #fff; }

.footer-contact-list { display: flex; flex-direction: column; gap: .875rem; }
.footer-contact-item { display: flex; gap: .625rem; align-items: flex-start; }
.footer-contact-item svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: .25rem; color: var(--orange); }
.footer-contact-item a { font-size: .875rem; color: #9ca3af; transition: color .15s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item span { font-size: .875rem; color: #9ca3af; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
}
@media(min-width:640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: .75rem; color: #6b7280; }
.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-legal-links a { font-size: .75rem; color: #6b7280; transition: color .15s; }
.footer-legal-links a:hover { color: #d1d5db; }

/* ── Utility ───────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10{ margin-top: 2.5rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.hidden { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── Responsive padding for sticky bar ────────────────────── */
@media(max-width:767px) { body { padding-bottom: 56px; } }

/* ── Alert/flash ───────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  font-size: .9375rem;
  line-height: 1.6;
}
.alert--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── Two-col content grid ──────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media(min-width:768px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* ── Scroll reveal animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* Service cards image zoom on hover */
.service-card__image img {
  transition: transform .5s ease;
}
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

/* Section divider accent */
.section--white + .section--gray,
.section--gray + .section--white {
  position: relative;
}

/* Figure hover lift */
figure {
  transition: transform .28s ease, box-shadow .28s ease;
}
figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.13);
}

/* Anti-spam honeypot field – invisible to humans, bots fill it */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Cookie consent banner ──────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: #0f172a;
  color: #f8fafc;
  display: none;
  flex-direction: column;
  box-shadow: 0 -2px 48px rgba(0,0,0,.65);
  border-top: 2px solid var(--orange);
  max-height: 92vh;
  overflow-y: auto;
}

/* Main bar */
.cookie-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.125rem 1.75rem;
}

/* Icon + copy */
.cookie-lead {
  display: flex;
  align-items: center;
  gap: .875rem;
  flex: 1;
  min-width: 240px;
}
.cookie-lead-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(249,115,22,.14);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-lead-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cookie-lead-text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
}
.cookie-lead-text span {
  font-size: .8125rem;
  color: #94a3b8;
  line-height: 1.45;
}
.cookie-lead-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Buttons */
.cookie-btns { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; flex-wrap: wrap; }

#cookie-accept {
  padding: .5625rem 1.375rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: .375rem;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
#cookie-accept:hover { background: var(--orange-dark); }
#cookie-accept:active { transform: scale(.97); }

#cookie-customize {
  padding: .5rem 1rem;
  background: rgba(255,255,255,.06);
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: .375rem;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
#cookie-customize:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #f8fafc;
}

#cookie-reject {
  padding: .5rem .875rem;
  background: transparent;
  color: #64748b;
  border: none;
  border-radius: .375rem;
  font-size: .875rem;
  cursor: pointer;
  transition: color .15s;
  white-space: nowrap;
}
#cookie-reject:hover { color: #94a3b8; }

/* Details panel */
#cookie-details {
  background: #1e293b;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
#cookie-details[hidden] { display: none; }

.cookie-details-title {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: .875rem;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: .875rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cookie-toggle-row:last-of-type { border-bottom: none; }

.cookie-toggle-info { flex: 1; min-width: 0; }
.cookie-toggle-info strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: #e2e8f0;
}
.cookie-toggle-info span {
  display: block;
  font-size: .75rem;
  color: #64748b;
  margin-top: .125rem;
  line-height: 1.5;
}

/* Status badges */
.cookie-badge {
  flex-shrink: 0;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: 20px;
  white-space: nowrap;
}
.cookie-badge--on {
  background: rgba(34,197,94,.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,.2);
}
.cookie-badge--none {
  background: rgba(148,163,184,.07);
  color: #475569;
  border: 1px solid rgba(148,163,184,.13);
}

/* Toggle switch */
.cookie-switch { display: inline-flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.cookie-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-switch-track {
  width: 44px;
  height: 24px;
  background: #334155;
  border-radius: 12px;
  position: relative;
  transition: background .22s;
}
.cookie-switch-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.cookie-switch input:checked + .cookie-switch-track { background: var(--orange); }
.cookie-switch input:checked + .cookie-switch-track::after { transform: translateX(20px); }
.cookie-switch input:focus-visible + .cookie-switch-track { outline: 2px solid var(--orange); outline-offset: 3px; }

/* Save row */
.cookie-save-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
  margin-top: .25rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.cookie-save-btn {
  padding: .5625rem 1.375rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: .375rem;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.cookie-save-btn:hover { background: var(--orange-dark); }
.cookie-save-btn:active { transform: scale(.97); }

@media (max-width: 767px) {
  .cookie-top { padding: .875rem 1rem; }
  #cookie-details { padding: 1rem 1rem 1.25rem; }
  #cookie-banner { bottom: 56px; }
  .cookie-btns { width: 100%; }
  #cookie-accept, #cookie-customize, #cookie-reject { flex: 1; text-align: center; }
  .cookie-save-row { justify-content: stretch; }
  .cookie-save-btn { width: 100%; text-align: center; }
}

/* Smooth orange bottom border on trust-card hover */
.trust-card {
  border-bottom: 3px solid transparent;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.trust-card:hover {
  border-bottom-color: var(--orange);
}

/* ── Subpage hero improvements ──────────────────────────────── */

/* Richer background for subpage heroes */
.hero:not(.hero--fullbleed) {
  min-height: 420px;
  padding: 5rem 0;
  background-image:
    radial-gradient(ellipse 720px 480px at 88% 55%, rgba(34,84,142,.55) 0%, transparent 65%),
    radial-gradient(ellipse 340px 280px at 5% 10%,  rgba(249,115,22,.06) 0%, transparent 55%),
    linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
}

/* Orange accent line at bottom of subpage hero */
.hero:not(.hero--fullbleed)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(249,115,22,.25) 40%, transparent 70%);
  pointer-events: none;
}

/* Hero image – elevated shadow + subtle perspective tilt on desktop */
.hero-image {
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
}
@media(min-width:900px) {
  .hero-image { transform: perspective(1200px) rotateY(-3deg) rotateX(.5deg); }
}

/* Badge – subtle pulse animation */
@keyframes badge-pulse {
  0%, 100% { border-color: rgba(249,115,22,.4); }
  50%       { border-color: rgba(249,115,22,.9); box-shadow: 0 0 14px rgba(249,115,22,.22); }
}
.hero-badge { animation: badge-pulse 3.5s ease-in-out infinite; }

/* ── Section title accent ───────────────────────────────────── */
/* Orange underline in section-header wrappers */
.section-header .section-title::after,
.section-header--center .section-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: .625rem;
}
.section-header--center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* ── Breadcrumbs – current page accent ─────────────────────── */
.breadcrumbs li:last-child {
  color: var(--blue);
  font-weight: 600;
}

/* ── CTA section – decorative background circles ───────────── */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  top: -5.5rem; right: -5rem;
  width: 22rem; height: 22rem;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -4rem; left: -2.5rem;
  width: 17rem; height: 17rem;
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  pointer-events: none;
}

/* ── Data table row hover ───────────────────────────────────── */
.data-table tbody tr { transition: background .12s; }
.data-table tbody tr:hover { background: rgba(34,84,142,.05) !important; }

/* ── Strength card – orange top accent on hover ─────────────── */
.strength-card { border-top: 2px solid transparent; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.strength-card:hover { border-top-color: var(--orange); }

/* ── Two-col image – gentle shadow on desktop ──────────────── */
.two-col > div > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ── Notice box icon ────────────────────────────────────────── */
.notice strong { display: inline; }



/* ── Three-language selector ───────────────────────────────── */
.language-menu { position: relative; }
.language-menu__button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .34rem .58rem;
  border: 1px solid var(--gray-200);
  border-radius: .375rem;
  background: #fff;
  color: var(--gray-600);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.language-menu__button:hover,
.language-menu.is-open .language-menu__button { border-color: var(--blue); color: var(--blue); }
.language-menu__button svg { width: .85rem; height: .85rem; transition: transform .18s ease; }
.language-menu.is-open .language-menu__button svg { transform: rotate(180deg); }
.language-menu__list {
  position: absolute;
  z-index: 100;
  top: calc(100% + .5rem);
  right: 0;
  min-width: 112px;
  padding: .35rem;
  border: 1px solid var(--gray-200);
  border-radius: .5rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.language-menu.is-open .language-menu__list { opacity: 1; visibility: visible; transform: translateY(0); }
.language-menu__list a {
  display: block;
  padding: .55rem .65rem;
  border-radius: .35rem;
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 600;
}
.language-menu__list a:hover { background: var(--gray-50); color: var(--blue); }
.language-menu__list a.is-active { background: rgba(34,84,142,.09); color: var(--blue); }
.mobile-language-menu {
  display: flex;
  gap: .5rem;
  padding: .9rem 1.5rem .2rem;
}
.mobile-language-menu a {
  flex: 1;
  padding: .55rem .4rem;
  border: 1px solid var(--gray-200);
  border-radius: .4rem;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
}
.mobile-language-menu a.is-active { border-color: var(--blue); background: rgba(34,84,142,.08); color: var(--blue); }

/* Reusable Polish content blocks */
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.logo-cloud__item {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.logo-cloud__item strong { color: var(--gray-900); font-size: .95rem; }
.logo-cloud__item span { color: var(--gray-500); font-size: .8rem; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.coverage-card {
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.coverage-card h3 { margin-bottom: .45rem; font-size: 1rem; }
.coverage-card p { color: var(--gray-600); font-size: .9rem; line-height: 1.65; }

/* Polish gallery, legal content and about-page helpers */
.realizacie-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.realizacie-item {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.realizacie-item img { display: block; width: 100%; height: 250px; object-fit: cover; }
.realizacie-item figcaption { padding: .85rem 1rem; color: var(--gray-600); font-size: .875rem; }
.legal-content { color: var(--gray-700); line-height: 1.75; }
.legal-content h1 { margin-bottom: .5rem; }
.legal-content h2 { margin-top: 2.25rem; margin-bottom: .75rem; font-size: 1.35rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.35rem; margin: .75rem 0 1rem; }
.legal-content li { margin-bottom: .45rem; }
.legal-content a { color: var(--blue); text-decoration: underline; }
.reason-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.reason-item > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
}
.reason-item h3 { margin-bottom: .35rem; font-size: 1rem; }
.reason-item p { color: var(--gray-600); font-size: .9rem; line-height: 1.6; }

/* ── Mobile image edge spacing ─────────────────────────────── */
/* Give image panels next to text a small inset on phones/tablets.
   The image itself still fills 100% of its available frame. */
@media (max-width: 899px) {
  .hero-inner > .hero-image,
  .advantages-grid > .advantages-image {
    width: calc(100% - 1rem);
    margin-inline: auto;
  }

  .hero-inner > .hero-image img,
  .advantages-grid > .advantages-image img {
    display: block;
    width: 100%;
  }
}

/* ============================================================
   Modern UI refresh layer
   Overrides that modernize the shared design system for every
   language version. Kept at the end of the file so the cascade
   wins without touching the rules above.
   ============================================================ */

/* ── Typography polish ─────────────────────────────────────── */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, .section-title { letter-spacing: -.022em; }
h1 { font-weight: 850; }
::selection { background: rgba(249,115,22,.25); }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Header: frosted glass ─────────────────────────────────── */
.site-header {
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  backdrop-filter: blur(14px) saturate(1.5);
  border-bottom: 1px solid rgba(19,31,51,.07);
  box-shadow: none;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 6px 24px rgba(19,31,51,.09);
}
.main-nav a,
.nav-dropdown__trigger { font-size: .875rem; }
.header-cta {
  background: var(--grad-orange);
  box-shadow: 0 3px 10px rgba(249,115,22,.28);
  transition: box-shadow .18s ease, transform .18s ease, filter .18s ease;
}
.header-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249,115,22,.36);
}

/* ── Buttons: gradient, lift, press ────────────────────────── */
.btn {
  border-radius: .625rem;
  transition: background .18s, color .18s, border-color .18s,
              transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn--primary {
  background: var(--grad-orange);
  box-shadow: 0 4px 14px rgba(249,115,22,.30), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--primary:hover {
  background: var(--grad-orange);
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(249,115,22,.38), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn--outline:hover,
.btn--outline-white:hover { transform: translateY(-1px); }

/* ── Forms: friendlier fields ──────────────────────────────── */
.form-control {
  padding: .7rem 1rem;
  border-radius: .625rem;
}
.form-control:hover:not(:focus) { border-color: var(--gray-400); }
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.16);
}

/* ── Cards: crisper depth ──────────────────────────────────── */
.service-card {
  border-radius: var(--radius-lg);
  transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34,84,142,.22);
  box-shadow: var(--shadow-lg);
}
.trust-card__icon,
.strength-card__icon,
.contact-info-item__icon {
  background: var(--grad-navy);
}

/* ── Fullbleed hero: cinematic entrance + graded overlay ───── */
@keyframes hero-zoom {
  from { transform: scale(1.055); }
  to   { transform: scale(1); }
}
.hero--fullbleed .hero-bg { animation: hero-zoom 7s cubic-bezier(.16,1,.3,1) both; }
.hero--fullbleed .hero-overlay {
  background:
    radial-gradient(ellipse 90% 70% at 50% 42%, rgba(10,20,38,.30) 0%, rgba(10,20,38,.62) 100%),
    linear-gradient(to bottom, rgba(10,20,38,.55) 0%, rgba(10,20,38,.42) 55%, rgba(13,24,44,.82) 100%);
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero--fullbleed .hero-badge  { animation: hero-rise .7s .05s cubic-bezier(.16,1,.3,1) both, badge-pulse 3.5s 1s ease-in-out infinite; }
.hero--fullbleed h1           { animation: hero-rise .7s .14s cubic-bezier(.16,1,.3,1) both; }
.hero--fullbleed .hero-sub    { animation: hero-rise .7s .24s cubic-bezier(.16,1,.3,1) both; }
.hero--fullbleed .hero-ctas   { animation: hero-rise .7s .34s cubic-bezier(.16,1,.3,1) both; }
.hero--fullbleed .hero-stats  { animation: hero-rise .7s .46s cubic-bezier(.16,1,.3,1) both; }

/* ── Dark sections: subtle depth instead of flat fill ──────── */
.section--dark,
.cta-section {
  background-image:
    radial-gradient(ellipse 640px 420px at 85% 20%, rgba(34,84,142,.35) 0%, transparent 65%),
    linear-gradient(160deg, #131f33 0%, #182946 100%);
}
.process-step {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.45);
  background: rgba(255,255,255,.08);
}
.process-step__number {
  background: linear-gradient(135deg, #ffb579 0%, var(--orange) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange);
}

/* ── FAQ: card-style accordion ─────────────────────────────── */
.faq-list { gap: .625rem; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  padding-inline: 1.25rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: rgba(34,84,142,.28); }
.faq-item.open {
  border-color: rgba(249,115,22,.45);
  box-shadow: var(--shadow-md);
}
.faq-question { padding: 1rem 0; }

/* ── Footer: deep navy, orange hairline ────────────────────── */
.site-footer {
  background:
    radial-gradient(ellipse 560px 320px at 12% 0%, rgba(34,84,142,.28) 0%, transparent 60%),
    #10192b;
  border-top: 3px solid var(--orange);
}

/* ── Sticky mobile bar: safe-area aware ────────────────────── */
.sticky-mobile-bar {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ── Back to top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(19,31,51,.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15,30,50,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s, background .18s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); }
.back-to-top svg { width: 1.125rem; height: 1.125rem; }
@media (max-width: 767px) { .back-to-top { bottom: calc(64px + env(safe-area-inset-bottom, 0px)); right: .875rem; } }

/* ── Reduced motion: respect user preference ───────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
