:root {
  --navy: #0b1f35;
  --navy-deep: #061424;
  --blue: #143a63;
  --red: #b4232a;
  --red-strong: #d9282f;
  --ink: #152033;
  --muted: #687386;
  --line: #dce3eb;
  --soft: #f4f7fa;
  --soft-warm: #f7f5f1;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(15, 31, 53, .10);
  --radius: 8px;
  --font-head: Sora, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(11, 31, 53, .04);
}
.topbar {
  min-height: 42px;
  padding: 0 clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--red-strong);
  color: var(--white);
  font-size: 14px;
}
.topbar-left, .topbar-socials { display: flex; align-items: center; gap: 18px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: inherit; font-weight: 700; }
.topbar svg { width: 15px; height: 15px; color: var(--white); }
.topbar-socials { gap: 10px; }
.topbar-socials a { width: 30px; height: 30px; justify-content: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); }
.topbar-socials a:hover { background: var(--navy); border-color: var(--navy); }
.topbar-socials i, .footer-socials i { font-size: 14px; line-height: 1; }

.site-header {
  min-height: 82px;
  padding: 0 clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); }
.brand-logo { width: auto; height: 64px; object-fit: contain; }
.brand-logo-footer { height: 74px; opacity: 1; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong, h1, h2, h3, .btn, .site-nav, .eyebrow { font-family: var(--font-head); }
.brand small { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0; }

.site-nav { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; }
.mobile-nav-head { display: none; }
.nav-item { position: relative; }
.nav-link,
.nav-parent {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}
.nav-link svg, .nav-parent svg { width: 15px; height: 15px; }
.nav-link:hover, .nav-parent:hover { color: var(--red); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 34px rgba(11, 31, 53, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  z-index: 30;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  color: var(--ink);
  border-radius: 4px;
  margin: 0;
}
.nav-dropdown a:hover { background: var(--soft); color: var(--red); }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--navy); }
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
}
.header-phone svg { width: 16px; height: 16px; color: var(--red-strong); }

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.btn-small { min-height: 36px; padding: 8px 12px; font-size: 13px; }
.btn-primary { background: var(--red-strong); color: var(--white); }
.btn-primary:hover { background: #a91f25; }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--blue); }
.btn-ghost { border-color: var(--line); color: var(--navy); background: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--soft); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.72); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

.hero, .page-hero, .section, .cta-band, .site-footer {
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: .5;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 36, .78);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(56px, 9vh, 96px) 0;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(240px, 360px);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}
.hero-copy { max-width: 720px; }
.hero-premium .hero-copy { color: var(--white); }
.eyebrow { color: var(--red-strong); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 5.4vw, 74px); line-height: 1.02; letter-spacing: 0; margin-bottom: 22px; color: var(--navy); font-weight: 800; }
h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.12; color: var(--navy); }
h3 { color: var(--navy); }
.hero p, .page-hero p, .section-heading p { color: var(--muted); font-size: 18px; max-width: 780px; }
.hero-premium h1 { color: var(--white); font-size: clamp(38px, 4.6vw, 70px); line-height: 1.02; max-width: 760px; margin-bottom: 18px; }
.hero-premium p { color: #e4edf5; max-width: 650px; font-size: 17px; line-height: 1.7; font-weight: 500; margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-panel { position: relative; }
.hero-panel img, .service-hero img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.security-panel img { border: 10px solid var(--white); }
.hero-stat { position: absolute; left: -24px; bottom: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.hero-stat strong { display: block; color: var(--red-strong); font-size: 30px; line-height: 1; font-family: var(--font-head); }
.hero-stat span { color: var(--muted); font-weight: 700; font-size: 13px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 22px; max-width: 760px; }
.hero-trust div { display: inline-flex; align-items: center; gap: 10px; color: #d8e3ee; font-weight: 700; }
.hero-trust svg { width: 20px; height: 20px; color: var(--red-strong); flex: 0 0 auto; }
.hero-trust span { font-size: 14px; }
.hero-proof { color: var(--white); border-top: 1px solid rgba(255,255,255,.22); padding-top: 18px; }
.hero-proof > span { display: block; color: #cbd8e5; font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.hero-proof div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.hero-proof strong { min-height: 48px; display: flex; align-items: center; padding: 10px 12px; border: 1px solid rgba(255,255,255,.18); color: #f8fbff; font-family: var(--font-head); font-size: 13px; }
.system-card { position: absolute; right: -18px; top: 34px; width: min(260px, 70%); background: var(--white); border-radius: var(--radius); padding: 16px; display: flex; gap: 12px; align-items: center; font-weight: 800; color: var(--navy); box-shadow: var(--shadow); }
.system-card svg { color: var(--red-strong); flex: 0 0 auto; }

.section { padding-top: 86px; padding-bottom: 86px; }
.section-muted { background: var(--soft); }
.section-dark { background: var(--navy-deep); color: #dbe5ef; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #bac7d4; }
.why-section { position: relative; overflow: hidden; background: var(--navy-deep); }
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1573497019418-b400bb3ab074?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: .24;
}
.why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6,20,36,.76);
}
.why-section > * { position: relative; z-index: 1; }
.why-copy { min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.why-visual-note { margin-top: 28px; max-width: 520px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22); }
.why-visual-note strong, .why-visual-note span { display: block; }
.why-visual-note strong { color: var(--white); font-family: var(--font-head); font-size: 18px; margin-bottom: 8px; }
.why-visual-note span { color: #cbd8e5; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.card-grid, .product-grid, .admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .product-card, .mini-card, .value-panel, .form-card, .metric-card, .admin-panel, .empty-state {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card { padding: 18px; }
.service-card svg { color: var(--red-strong); width: 28px; height: 28px; margin: 18px 0 10px; }
.service-card p, .product-card p { color: var(--muted); }
.service-card a { color: var(--red-strong); font-weight: 800; font-family: var(--font-head); }
.elevated-card { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.elevated-card:hover { transform: translateY(-4px); border-color: #cbd6e2; box-shadow: 0 20px 46px rgba(15, 31, 53, .13); }
.card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; }

.service-showcase { background: var(--white); }
.showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}
.showcase-head p { color: var(--muted); font-size: 18px; margin-bottom: 8px; }
.service-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-tile {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-deep);
  border: 1px solid #d3dce7;
}
.service-tile-large { grid-column: span 2; }
.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .28s ease, opacity .28s ease;
}
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,20,36,.22), rgba(6,20,36,.98));
}
.service-tile:hover img { transform: scale(1.04); opacity: .86; }
.service-tile-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(6,20,36,0), rgba(6,20,36,.82));
}
.service-tile-body > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #c9d7e4;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
}
.service-tile-body svg { color: var(--red-strong); width: 28px; height: 28px; margin-bottom: 12px; }
.service-tile-body h3 { color: var(--white); margin-bottom: 8px; }
.service-tile-body p { color: #dce7f1; font-size: 15px; margin-bottom: 14px; }
.service-tile-body a { color: var(--white); font-family: var(--font-head); font-weight: 800; border-bottom: 2px solid var(--red-strong); }
.service-mosaic-list .service-tile { min-height: 360px; }

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.deliverable-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.deliverable-card summary {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  color: var(--navy);
  list-style: none;
}
.deliverable-card summary::-webkit-details-marker { display: none; }
.deliverable-card summary svg { color: var(--red-strong); width: 30px; height: 30px; }
.deliverable-card summary span { font-family: var(--font-head); font-weight: 800; }
.deliverable-card p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.project-gallery { background: var(--soft); }
.gallery-strip { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.gallery-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}
.gallery-strip img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; opacity: .88; }
.gallery-strip figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(6,20,36,.86);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
}

.process-band {
  background: var(--soft-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.process-grid article {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.process-grid article:last-child { border-right: 0; }
.process-grid strong {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 24px;
  margin-bottom: 10px;
}
.process-grid article::before {
  content: "";
  width: 44px;
  height: 4px;
  margin-bottom: auto;
  background: var(--red-strong);
}
.process-grid p { color: var(--muted); margin-bottom: 0; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.feature-list { display: grid; gap: 12px; }
.feature-list div { display: flex; gap: 12px; align-items: center; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); font-weight: 700; }
.feature-list svg { color: var(--red); flex: 0 0 auto; }
.feature-stack { display: grid; gap: 14px; }
.feature-stack article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); border-radius: 0; }
.feature-stack svg { color: var(--red-strong); }
.feature-stack h3 { margin-bottom: 5px; }
.feature-stack p { margin-bottom: 0; }
.value-panel { padding: 24px; }
.mini-card { padding: 22px; }
.mini-card svg { color: var(--red-strong); }
.solution-strip { padding-top: 58px; padding-bottom: 58px; background: var(--white); }
.solution-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.solution-list a, .solution-list span { min-height: 72px; display: flex; align-items: center; gap: 10px; padding: 15px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy); font-weight: 800; background: var(--white); }
.solution-list svg { color: var(--red-strong); flex: 0 0 auto; }
.rich-copy p { font-size: 18px; color: var(--muted); }
.about-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr); gap: clamp(30px, 5vw, 72px); align-items: stretch; }
.about-principles { display: grid; gap: 14px; }
.about-principles article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.about-principles svg { width: 28px; height: 28px; color: var(--red-strong); margin-bottom: 10px; }
.about-principles p { color: var(--muted); margin-bottom: 0; }

.product-card { overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.product-card div { padding: 18px; }
.product-card span { color: var(--red-strong); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.product-card strong { display: block; margin: 12px 0; color: var(--navy); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 76px;
  background: var(--navy-deep);
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--page-hero-image, url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1600&q=80"));
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6,20,36,.88), rgba(6,20,36,.68) 55%, rgba(6,20,36,.42));
}
.page-hero h1, .page-hero p { color: var(--white); }
.page-hero .eyebrow { color: #ff5960; }
.about-hero { --page-hero-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80"); }
.page-hero.compact { min-height: 310px; display: flex; flex-direction: column; justify-content: center; }
.service-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 460px); gap: 42px; align-items: center; }
.service-hero img { aspect-ratio: 4 / 3; }

.form-section { max-width: 1040px; margin: 0 auto; }
.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.quick-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}
.quick-contact svg { color: var(--red-strong); flex: 0 0 auto; }
.form-card { padding: 24px; display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
label { display: grid; gap: 7px; font-weight: 700; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { resize: vertical; }
.contact-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 28px; align-items: start; }
.contact-grid .value-panel p { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; color: var(--muted); }
.contact-grid .value-panel p svg { color: var(--red-strong); width: 20px; height: 20px; margin-top: 2px; }
.contact-grid .value-panel p strong { color: var(--navy); }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-weight: 700; color: var(--navy); }
.chip:hover { border-color: var(--red); color: var(--red); }
.empty-state { padding: 34px; text-align: center; color: var(--muted); }
.empty-state svg { color: var(--red-strong); width: 42px; height: 42px; }
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
summary { cursor: pointer; font-weight: 800; color: var(--navy); }

.cta-band { margin: 0; padding-top: 68px; padding-bottom: 68px; background: var(--navy); color: var(--white); display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-strong { background: linear-gradient(90deg, rgba(6,20,36,.97), rgba(11,31,53,.92)), url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80"); background-size: cover; background-position: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0; }
.cta-band p { color: #cbd8e5; margin: 12px 0 0; max-width: 760px; }
.logo-strips { background: var(--white); padding: 54px clamp(20px, 5vw, 64px) 62px; overflow: hidden; }
.logo-strip-block { width: min(100%, 1560px); margin: 0 auto 34px; display: grid; grid-template-columns: minmax(260px, 390px) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.logo-strip-block:last-child { margin-bottom: 0; }
.logo-strip-heading { padding: 0; }
.logo-strip-heading p { max-width: 380px; margin: 6px 0 0; color: #8a929d; font-size: 16px; font-weight: 700; line-height: 1.85; }
.logo-marquee {
  overflow: hidden;
  background: var(--white);
}
.logo-track { display: flex; gap: 34px; width: max-content; padding: 18px 0; animation: logo-scroll 34s linear infinite; }
.logo-track.slow { animation-duration: 38s; }
.logo-chip { width: 250px; height: 90px; display: grid; place-items: center; padding: 14px 22px; background: var(--white); border: 0; border-radius: 0; }
.logo-chip img { max-width: 100%; max-height: 62px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .18s ease, opacity .18s ease; }
.logo-chip:hover img { filter: grayscale(0); opacity: 1; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-footer { padding-top: 50px; padding-bottom: 24px; background: #071625; color: #dbe5ef; }
.footer-intro {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand-block { display: grid; gap: 14px; align-items: start; }
.footer-brand-block .btn { width: fit-content; }
.footer-brand-block p { max-width: 430px; margin: 0; color: #c8d5e1; }
.footer-contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  padding: 6px 0 0;
}
.footer-directory { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 42px; padding-top: 30px; }
.brand-footer { width: fit-content; background: var(--white); padding: 8px 10px; border-radius: 4px; }
.site-footer h3, .brand-footer strong { color: var(--white); }
.site-footer h3 { margin: 0 0 14px; font-size: 16px; }
.site-footer a { display: flex; align-items: center; gap: 8px; color: #dbe5ef; margin: 8px 0; }
.site-footer a svg, .site-footer p svg { width: 16px; height: 16px; color: var(--red-strong); flex: 0 0 auto; }
.site-footer p { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 11px; }
.site-footer p span { display: block; min-width: 0; line-height: 1.55; }
.site-footer p a { display: inline; margin: 0; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #b5c3d1; }
.footer-socials { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-socials a { margin: 0; }
.powered-by { display: inline-flex; align-items: center; gap: 5px; }
.powered-by a { color: var(--red-strong); font-weight: 500; text-decoration: none; }
.powered-by a:hover { color: #ff5b61; }

.notice { margin: 18px clamp(20px, 5vw, 64px); padding: 14px 16px; border-radius: 6px; font-weight: 700; }
.notice-success { background: #e8f6ee; color: #166534; border: 1px solid #b7e1c5; }
.notice-error { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }

.admin-auth-body { min-height: 100vh; background: var(--soft); display: grid; place-items: center; padding: 24px; }
.auth-wrap { width: min(100%, 460px); }
.auth-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); display: grid; gap: 15px; }
.auth-card h1 { font-size: 32px; margin-bottom: 0; }
.auth-card p { color: var(--muted); }
.admin-body { min-height: 100vh; display: grid; grid-template-columns: 270px minmax(0, 1fr); background: var(--soft); }
.admin-sidebar { background: var(--navy); color: #dbe5ef; padding: 22px; }
.admin-brand { color: var(--white); margin-bottom: 24px; }
.admin-sidebar nav { display: grid; gap: 5px; }
.admin-sidebar nav a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 6px; color: #dbe5ef; font-weight: 700; }
.admin-sidebar nav a:hover { background: rgba(255,255,255,.08); }
.admin-sidebar svg { width: 18px; height: 18px; }
.admin-topbar { min-height: 72px; background: var(--white); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 28px; }
.admin-topbar span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.admin-topbar strong { color: var(--navy); }
.admin-content { padding: 28px; display: grid; gap: 24px; }
.admin-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.metric-card { padding: 22px; }
.metric-card span { color: var(--muted); font-weight: 800; text-transform: uppercase; font-size: 12px; }
.metric-card strong { display: block; color: var(--navy); font-size: 34px; }
.admin-panel { padding: 22px; }
.panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.panel-heading h2 { font-size: 24px; margin: 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 13px 12px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; }
td small { display: block; color: var(--muted); margin-top: 4px; max-width: 420px; }
.status-pill { display: inline-flex; border-radius: 999px; background: #edf2f7; padding: 5px 10px; font-size: 12px; font-weight: 800; color: var(--blue); }
.status-new { background: #eff6ff; color: #1d4ed8; }
.status-reviewing { background: #fef9c3; color: #854d0e; }
.status-quoted { background: #e0f2fe; color: #0369a1; }
.status-won { background: #dcfce7; color: #166534; }
.status-lost, .status-spam { background: #fee2e2; color: #991b1b; }
.status-closed { background: #f1f5f9; color: #475569; }
.admin-edit-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
.admin-form { display: grid; gap: 18px; }
.admin-form .notice { margin: 0; }
.admin-form small { color: var(--muted); font-weight: 500; }
.compact-form { gap: 12px; }
.checkbox-row { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 700; line-height: 1.4; }
.checkbox-row input { width: 17px; height: 17px; accent-color: var(--red); flex: 0 0 auto; }
.relation-box { border: 1px solid var(--line); border-radius: 6px; padding: 16px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 18px; background: #f8fafc; }
.relation-box legend { padding: 0 8px; color: var(--navy); font-family: var(--font-heading); font-weight: 800; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; padding-top: 8px; border-top: 1px solid var(--line); }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.detail-grid div { background: #f8fafc; border: 1px solid var(--line); border-radius: 6px; padding: 14px; }
.detail-grid span, .message-panel span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 5px; }
.detail-grid strong { color: var(--navy); }
.message-panel { border: 1px solid var(--line); border-radius: 6px; padding: 16px; margin-bottom: 18px; }
.message-panel p { color: var(--body); margin: 0; }
.quick-actions { display: grid; gap: 10px; }
.quick-actions .btn { width: 100%; justify-content: center; }
.media-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.media-card { border: 1px solid var(--line); border-radius: 6px; background: var(--white); overflow: hidden; }
.media-card img, .media-file { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #eef3f8; }
.media-card div:not(.media-file) { padding: 14px; }
.media-card h3 { font-size: 15px; margin-bottom: 5px; overflow-wrap: anywhere; }
.media-card p { color: var(--muted); font-size: 13px; margin-bottom: 4px; }
.media-file { display: grid; place-items: center; color: var(--navy); }
.media-file svg { width: 36px; height: 36px; color: var(--red-strong); }
.media-file span { font-family: var(--font-head); font-weight: 800; }
.document-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); display: grid; gap: 10px; align-content: start; }
.document-card svg { width: 34px; height: 34px; color: var(--red-strong); }
.document-card span { color: var(--red-strong); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.document-card p, .document-card small { color: var(--muted); }
.document-card small { display: block; overflow-wrap: anywhere; }
.preview-panel { display: grid; gap: 16px; position: sticky; top: 92px; }
.preview-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); }
.preview-note { background: var(--soft); border: 1px solid var(--line); border-radius: 6px; padding: 16px; }
.preview-note p { color: var(--muted); margin-bottom: 0; }

@media (max-width: 1040px) {
  .service-hero, .split, .contact-grid, .about-story { grid-template-columns: 1fr; }
  .card-grid, .product-grid, .admin-grid, .solution-list, .deliverables-grid, .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-head, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-tile-large { grid-column: span 1; }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article { border-bottom: 1px solid var(--line); }
  .gallery-strip { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 62px; padding-bottom: 62px; }
  .hero-proof { max-width: 560px; }
  .hero-panel img { aspect-ratio: 16 / 10; }
  .footer-intro { grid-template-columns: 1fr; align-items: start; }
  .footer-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar { align-items: flex-start; padding-top: 10px; padding-bottom: 10px; }
  .topbar-left { flex-wrap: wrap; gap: 10px 16px; }
  .logo-strip-block { grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); gap: 28px; }
  .logo-chip { width: 220px; height: 82px; padding: 12px 18px; }
  .logo-chip img { max-height: 54px; }
}

@media (max-width: 760px) {
  body.nav-open { overflow: hidden; }
  .topbar { display: none; }
  .site-header { height: auto; min-height: 70px; align-items: center; padding-top: 12px; padding-bottom: 12px; }
  .brand-logo { height: 54px; max-width: 220px; }
  .brand-logo-footer { height: 64px; max-width: 220px; }
  .nav-toggle { display: inline-grid; place-items: center; width: 42px; height: 42px; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px clamp(24px, 8vw, 42px) 28px;
    background: var(--white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .2s ease;
    z-index: 60;
  }
  .site-nav.is-open { transform: translateX(0); }
  .mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .mobile-nav-close { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 0; background: transparent; color: var(--navy); }
  .mobile-nav-close svg { width: 30px; height: 30px; stroke-width: 3; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link,
  .nav-parent {
    width: 100%;
    min-height: 62px;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--navy);
    font-size: clamp(20px, 6vw, 26px);
    font-weight: 800;
    text-align: left;
  }
  .nav-link svg, .nav-parent svg { width: 22px; height: 22px; }
  .nav-item.is-expanded .nav-parent svg { transform: rotate(180deg); }
  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-item.is-expanded .nav-dropdown { display: grid; gap: 2px; }
  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown { transform: none; }
  .nav-dropdown a {
    min-height: 38px;
    padding: 7px 0;
    color: #344054;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
  }
  .nav-dropdown a:hover { background: transparent; }
  .nav-cta { width: 100%; min-height: 56px; margin: 24px 0 0; font-size: 16px; }
  .hero { min-height: auto; }
  .hero-inner { padding-top: 54px; padding-bottom: 54px; }
  .hero-premium h1 { font-size: clamp(34px, 10vw, 48px); }
  .hero-premium p { font-size: 15px; line-height: 1.55; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-proof div { grid-template-columns: 1fr; }
  .why-copy { min-height: auto; justify-content: flex-start; }
  .why-section::before { opacity: .16; }
  .system-card { position: static; width: 100%; margin-top: 12px; }
  .hero-stat { position: static; margin-top: 12px; }
  .card-grid, .product-grid, .card-grid.three, .form-grid, .footer-directory, .footer-contact-strip, .solution-list, .deliverables-grid, .relation-box, .detail-grid, .media-grid { grid-template-columns: 1fr; }
  .showcase-head, .service-mosaic, .process-grid { grid-template-columns: 1fr; }
  .quick-contact { grid-template-columns: 1fr; }
  .service-tile { min-height: 330px; }
  .process-grid article { border-right: 0; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .admin-edit-grid { grid-template-columns: 1fr; }
  .preview-panel { position: static; }
  .logo-strips { padding-left: 20px; padding-right: 20px; }
  .logo-strip-block { grid-template-columns: 1fr; gap: 14px; }
  .logo-strip-heading p { max-width: none; font-size: 15px; line-height: 1.65; }
  .logo-track { gap: 18px; padding: 16px 0; }
  .logo-chip { width: 190px; height: 78px; padding: 12px 16px; }
  .logo-chip img { max-height: 48px; }
}
