:root {
  --navy-950: #07172f;
  --navy-900: #0a2148;
  --navy-800: #103469;
  --navy-700: #174783;
  --red-600: #d7232f;
  --red-700: #b91825;
  --sky-100: #e8f2fc;
  --ink: #15243b;
  --muted: #657287;
  --line: #dfe6ef;
  --surface: #f5f8fc;
  --white: #fff;
  --success: #117a52;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(7, 23, 47, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 23, 47, 0.18);
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
  --transition: 220ms ease;
}

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

html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: clip; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

/* Prevent long addresses, email links and grid children from widening the page. */
p, h1, h2, h3, h4, a, span { overflow-wrap: break-word; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .contact-layout > *, .footer-main > * { min-width: 0; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--navy-950); line-height: 1.12; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.75rem, 6.7vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--muted); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.surface { background: var(--surface); }
.navy-surface { background: var(--navy-950); color: var(--white); }
.red-text { color: var(--red-600); }
.muted { color: var(--muted); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 2px; background: currentColor; content: ""; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.center { margin-inline: auto; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { max-width: 660px; font-size: 1.08rem; }
.section-heading.center p { margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar { color: rgba(255,255,255,.78); background: var(--navy-950); font-size: .82rem; }
.topbar-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 24px; }
.topbar a { transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-contact { display: flex; align-items: center; gap: 24px; }
.topbar-contact span, .topbar-contact a { display: inline-flex; align-items: center; gap: 7px; }
.topbar .icon { width: 15px; height: 15px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(10,33,72,.08);
  backdrop-filter: blur(15px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(7,23,47,.09); }
.nav { display: flex; min-height: 98px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 180px; height: 90px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.nav-links > a:not(.button) {
  position: relative;
  color: #30415c;
  font-size: .92rem;
  font-weight: 700;
}
.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--red-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links > a:not(.button):hover,
.nav-links > a:not(.button)[aria-current="page"] { color: var(--navy-900); }
.nav-links > a:not(.button):hover::after,
.nav-links > a:not(.button)[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle .close-icon { display: none; }
.nav-toggle[aria-expanded="true"] .menu-icon { display: none; }
.nav-toggle[aria-expanded="true"] .close-icon { display: block; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--white);
  background: var(--red-600);
  border: 1px solid var(--red-600);
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(215,35,47,.18);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.button:hover { background: var(--red-700); border-color: var(--red-700); box-shadow: 0 15px 30px rgba(215,35,47,.25); transform: translateY(-2px); }
.button:focus-visible, .nav-toggle:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .faq-button:focus-visible { outline: 3px solid rgba(23,71,131,.3); outline-offset: 3px; }
.button.secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,.45); box-shadow: none; }
.button.secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.button.dark { background: var(--navy-900); border-color: var(--navy-900); box-shadow: 0 12px 25px rgba(7,23,47,.18); }
.button.dark:hover { background: var(--navy-800); border-color: var(--navy-800); }

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950) url("../images/hero-logistics.jpg") center/cover no-repeat;
}
.hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,23,47,.98) 0%, rgba(7,23,47,.88) 42%, rgba(7,23,47,.26) 76%, rgba(7,23,47,.08) 100%); content: ""; }
.hero::after { position: absolute; right: -14%; bottom: -38%; width: 600px; height: 600px; background: rgba(215,35,47,.25); border: 110px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; }
.hero-content { position: relative; z-index: 2; max-width: 770px; padding: 92px 0 126px; }
.hero .eyebrow { color: #ff6a73; }
.hero h1 { max-width: 760px; margin-bottom: 24px; color: var(--white); }
.hero h1 span { color: #ff4d59; }
.hero-copy { max-width: 650px; margin-bottom: 35px; color: rgba(255,255,255,.78); font-size: clamp(1.04rem, 1.7vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  position: absolute;
  right: max(20px, calc((100vw - 1180px)/2));
  bottom: 38px;
  left: max(20px, calc((100vw - 1180px)/2));
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-trust div { padding: 22px 24px 0 0; }
.hero-trust strong { display: block; color: var(--white); font-size: 1.08rem; }
.hero-trust span { color: rgba(255,255,255,.6); font-size: .84rem; }

.page-hero { position: relative; overflow: hidden; padding: 112px 0 100px; color: var(--white); background: var(--navy-950); }
.page-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(23,71,131,.72), transparent 32%), linear-gradient(135deg, transparent 35%, rgba(215,35,47,.1)); content: ""; }
.page-hero::after { position: absolute; right: 8%; bottom: -110px; width: 280px; height: 280px; border: 55px solid rgba(255,255,255,.05); border-radius: 50%; content: ""; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 850px; margin-bottom: 20px; color: var(--white); font-size: clamp(2.7rem, 6vw, 5.2rem); }
.page-hero p { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.7); font-size: 1.13rem; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 28px; color: rgba(255,255,255,.62); font-size: .86rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: #ff7780; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(48px, 7vw, 90px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.copy h2 { margin-bottom: 22px; }
.copy > p { font-size: 1.04rem; }
.copy p + p { margin-top: 18px; }
.image-frame { position: relative; }
.image-frame::before { position: absolute; top: -18px; left: -18px; width: 85px; height: 85px; border-top: 7px solid var(--red-600); border-left: 7px solid var(--red-600); border-radius: 8px 0 0; content: ""; }
.image-frame img { position: relative; z-index: 1; width: 100%; min-height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.experience-card { position: absolute; right: -22px; bottom: 28px; z-index: 2; max-width: 220px; padding: 24px; color: var(--white); background: var(--red-600); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.experience-card strong { display: block; font-size: 2.5rem; line-height: 1; }
.experience-card span { font-size: .82rem; font-weight: 700; }

.service-card {
  position: relative;
  min-height: 305px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { border-color: rgba(215,35,47,.3); box-shadow: var(--shadow-sm); transform: translateY(-6px); }
.service-card .number { position: absolute; top: 22px; right: 26px; color: rgba(10,33,72,.08); font-size: 3rem; font-weight: 900; line-height: 1; }
.service-card.photo-card { min-height: 0; display: flex; flex-direction: column; padding: 0; }
.photo-card .service-card-image { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 500ms ease; }
.photo-card:hover .service-card-image { transform: scale(1.035); }
.photo-card .service-card-content { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; padding: 28px 30px 30px; background: var(--white); }
.photo-card .service-card-content p { flex: 1; }
.photo-card .number { top: 18px; right: 18px; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: rgba(7,23,47,.86); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: .78rem; backdrop-filter: blur(5px); }
.icon-box { display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center; margin-bottom: 30px; color: var(--red-600); background: #fff0f1; border-radius: 15px; }
.icon-box .icon { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 13px; }
.service-card p { margin-bottom: 24px; font-size: .94rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--navy-800); font-size: .86rem; font-weight: 800; }
.text-link .icon { width: 18px; transition: transform var(--transition); }
.text-link:hover .icon { transform: translateX(4px); }

.feature-card { padding: 32px 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card .icon-box { margin-bottom: 22px; color: var(--navy-700); background: var(--sky-100); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.17rem; }
.feature-card p { margin-bottom: 0; font-size: .91rem; }

.stats { position: relative; overflow: hidden; background: var(--navy-900); }
.stats::before { position: absolute; inset: 0; background: radial-gradient(circle at 10% 100%, rgba(215,35,47,.25), transparent 28%), radial-gradient(circle at 90% 0, rgba(39,108,186,.3), transparent 25%); content: ""; }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 54px 30px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border: 0; }
.stat strong { display: block; margin-bottom: 5px; color: var(--white); font-size: clamp(2.2rem, 4vw, 3.45rem); line-height: 1; letter-spacing: -.05em; }
.stat span { color: rgba(255,255,255,.62); font-size: .84rem; font-weight: 700; }

.process { counter-reset: steps; }
.process-step { position: relative; padding: 30px 28px 30px 76px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.process-step::before { position: absolute; top: 28px; left: 24px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--red-600); border-radius: 50%; counter-increment: steps; content: counter(steps, decimal-leading-zero); font-size: .73rem; font-weight: 900; }
.process-step h3 { margin-bottom: 9px; font-size: 1.12rem; }
.process-step p { margin: 0; font-size: .9rem; }

.quote-card { position: relative; padding: 46px; color: var(--white); background: var(--navy-900); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.quote-card .icon { width: 44px; height: 44px; margin-bottom: 26px; color: #ff5d67; }
.quote-card blockquote { margin: 0 0 24px; font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.48; letter-spacing: -.02em; }
.quote-card cite { color: rgba(255,255,255,.65); font-size: .88rem; font-style: normal; font-weight: 700; }
.portrait img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; object-position: center 25%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.portrait-label { position: relative; z-index: 2; width: calc(100% - 36px); margin: -62px auto 0; padding: 22px 25px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.portrait-label strong { display: block; color: var(--navy-950); font-size: 1.1rem; }
.portrait-label span { color: var(--red-600); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 35px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.value-card span { display: block; margin-bottom: 18px; color: var(--red-600); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.value-card p { margin: 0; }

.service-detail { display: grid; grid-template-columns: minmax(260px, 330px) 1fr; gap: clamp(28px, 5vw, 56px); align-items: stretch; padding: 48px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border: 0; }
.service-detail-image { width: 100%; height: 100%; min-height: 280px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.service-detail h3 { margin-bottom: 13px; }
.service-detail p { max-width: 800px; margin-bottom: 16px; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; color: #46546a; font-size: .91rem; }
.check-list .icon { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 4px; color: var(--success); stroke-width: 2.4; }

.why-banner { position: relative; min-height: 520px; display: grid; align-items: end; overflow: hidden; background: var(--navy-950) url("../images/services-logistics.jpg") center/cover no-repeat; border-radius: var(--radius-lg); }
.why-banner::before { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,23,47,.95), rgba(7,23,47,.15)); content: ""; }
.why-banner-content { position: relative; z-index: 1; max-width: 680px; padding: 50px; }
.why-banner h2 { color: var(--white); }
.why-banner p { margin: 0; color: rgba(255,255,255,.72); }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 4px; color: var(--navy-950); background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 800; }
.faq-button .icon { transition: transform var(--transition); }
.faq-button[aria-expanded="true"] .icon { transform: rotate(180deg); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms ease; }
.faq-button[aria-expanded="true"] + .faq-panel { grid-template-rows: 1fr; }
.faq-panel > div { overflow: hidden; }
.faq-panel p { max-width: 760px; margin: 0; padding: 0 45px 25px 4px; }

.contact-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 70px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 35px; }
.contact-card { display: flex; gap: 16px; padding: 19px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
.contact-card .icon-box { width: 46px; height: 46px; flex: 0 0 auto; margin: 0; border-radius: 12px; }
.contact-card strong { display: block; color: var(--navy-950); font-size: .86rem; }
.contact-card a, .contact-card span { color: var(--muted); font-size: .9rem; }
.contact-card a:hover { color: var(--red-600); }
.form-card { padding: clamp(28px, 5vw, 50px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-card h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.form-card > p { margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #293a54; font-size: .84rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; color: var(--ink); background: #fbfcfe; border: 1px solid #cdd7e4; border-radius: 10px; outline: 0; transition: border-color var(--transition), box-shadow var(--transition); }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 154px; padding: 14px 15px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(23,71,131,.1); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.field-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.field-hint, .char-count { color: #8490a0; font-size: .73rem; }
.field-error { min-height: 18px; margin: 0; color: var(--danger); font-size: .75rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.form-footer small { max-width: 330px; color: #7c889a; }
.form-status { display: none; margin-top: 20px; padding: 13px 15px; border-radius: 10px; font-size: .88rem; }
.form-status.success { display: block; color: #075d3e; background: #e6f7f0; }
.form-status.error { display: block; color: #8f1e16; background: #fff0ef; }
.button[disabled] { opacity: .66; cursor: wait; transform: none; }

.map-card { position: relative; min-height: 390px; display: grid; place-items: center; overflow: hidden; background: var(--navy-900); border-radius: var(--radius-lg); }
.map-card::before { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 42px 42px; content: ""; transform: rotate(-8deg) scale(1.2); }
.map-pin { position: relative; z-index: 1; max-width: 340px; padding: 35px; color: var(--white); background: rgba(7,23,47,.88); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; backdrop-filter: blur(8px); }
.map-pin .icon { width: 42px; height: 42px; margin-bottom: 14px; color: #ff606b; }
.map-pin h3 { margin-bottom: 8px; color: var(--white); }
.map-pin p { margin: 0; color: rgba(255,255,255,.68); }

.cta { position: relative; overflow: hidden; background: var(--red-600); }
.cta::before, .cta::after { position: absolute; border: 48px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.cta::before { top: -120px; left: -80px; width: 270px; height: 270px; }
.cta::after { right: -70px; bottom: -130px; width: 330px; height: 330px; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 72px 0; }
.cta h2 { max-width: 760px; margin: 0; color: var(--white); font-size: clamp(2rem, 4vw, 3.4rem); }
.cta .button { flex: 0 0 auto; color: var(--navy-950); background: var(--white); border-color: var(--white); box-shadow: 0 14px 30px rgba(89,6,12,.2); }
.cta .button:hover { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); }

.site-footer { color: rgba(255,255,255,.65); background: #050f21; }
.footer-main { display: grid; grid-template-columns: 1.6fr .75fr 1fr 1.15fr; gap: 60px; padding: 78px 0 58px; }
.footer-brand img { width: 180px; height: 90px; object-fit: contain; object-position: left center; padding: 7px 10px; border-radius: 8px; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.58); font-size: .91rem; }
.footer-heading { margin-bottom: 23px; color: var(--white); font-size: .92rem; letter-spacing: .02em; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { width: fit-content; font-size: .88rem; transition: color var(--transition), transform var(--transition); }
.footer-links a:hover { color: var(--white); transform: translateX(3px); }
.footer-contact { display: grid; gap: 13px; }
.footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; }
.footer-contact .icon { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 4px; color: #ff4d59; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .77rem; }
.footer-bottom p { margin: 0; color: inherit; }

[data-reveal] { opacity: 1; }
.js [data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  :root { --container: min(calc(100% - 32px), 920px); }
  .topbar { display: none; }
  .nav { min-height: 84px; }
  .brand img { width: 150px; height: 75px; }
  .nav-toggle { display: inline-flex; }
  .site-header { background: var(--white); backdrop-filter: none; }
  .nav-links { position: fixed; top: 84px; right: 0; bottom: 0; z-index: 1001; width: min(380px, 88vw); max-height: calc(100dvh - 84px); flex-direction: column; align-items: stretch; gap: 0; padding: 28px; overflow-y: auto; overscroll-behavior: contain; background-color: var(--white); box-shadow: -20px 20px 50px rgba(7,23,47,.22); opacity: 1; transform: translateX(105%); visibility: hidden; transition: transform 300ms ease, visibility 300ms; }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links > a:not(.button) { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links > a:not(.button)::after { display: none; }
  .nav-links .button { margin-top: 24px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --container: min(calc(100% - 28px), 620px); }
  .section { padding: 76px 0; }
  .section-sm { padding: 58px 0; }
  .section-heading { margin-bottom: 36px; }
  .hero { min-height: 710px; background-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(7,23,47,.97), rgba(7,23,47,.82)); }
  .hero-content { padding: 78px 0 185px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4.4rem); }
  .hero-trust { grid-template-columns: 1fr; bottom: 22px; }
  .hero-trust div { display: flex; align-items: baseline; gap: 8px; padding: 8px 0; }
  .page-hero { padding: 72px 0 68px; }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 4rem); }
  .page-hero p { font-size: 1rem; }
  .grid-2, .grid-3, .values, .contact-layout { grid-template-columns: 1fr; }
  .grid-2 { gap: 50px; }
  .image-frame img { min-height: 390px; }
  .experience-card { right: 12px; bottom: 15px; }
  .service-card { min-height: 270px; }
  .service-detail { grid-template-columns: 1fr; gap: 25px; }
  .service-detail-image { aspect-ratio: 16 / 9; height: auto; min-height: 0; }
  .check-list { grid-template-columns: 1fr; }
  .why-banner { min-height: 470px; }
  .why-banner-content { padding: 32px; }
  .quote-card { padding: 32px; }
  .contact-layout { gap: 44px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-main > :first-child, .footer-main > :last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --container: calc(100% - 24px); }
  .section { padding: 62px 0; }
  .section-sm { padding: 50px 0; }
  .nav { min-height: 76px; }
  .brand img { width: 140px; height: 70px; }
  .nav-links { top: 76px; width: 100%; max-height: calc(100dvh - 76px); padding: 20px 22px 28px; }
  .page-hero { padding: 60px 0 56px; }
  .breadcrumbs { margin-bottom: 20px; }
  .hero { min-height: 680px; }
  .hero-content { padding-top: 62px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .grid-4, .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-card, .feature-card, .value-card { padding: 28px 24px; }
  .photo-card .service-card-content { padding: 24px; }
  .why-banner-content, .quote-card, .map-pin { padding: 26px 22px; }
  .form-card { padding: 24px 18px; border-radius: var(--radius); }
  .contact-card { padding: 16px 14px; }
  .faq-button { gap: 14px; padding-block: 20px; }
  .faq-panel p { padding-right: 4px; }
  .experience-card { position: relative; right: auto; bottom: auto; width: calc(100% - 30px); max-width: none; margin: -45px auto 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > * { grid-column: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .cta, .site-footer, .hero-actions, .nav-toggle { display: none !important; }
  .hero, .page-hero { min-height: auto; padding: 40px 0; color: #000; background: #fff; }
  .hero::before, .hero::after, .page-hero::before, .page-hero::after { display: none; }
  .hero h1, .page-hero h1 { color: #000; }
  .hero-copy, .page-hero p { color: #333; }
  [data-reveal] { opacity: 1; transform: none; }
}
