:root {
  --ink: #172131;
  --muted: #667080;
  --brand: #164879;
  --brand-2: #74849a;
  --accent: #d9e1ea;
  --paper: #f6f7fa;
  --soft: #e9eef4;
  --white: #ffffff;
  --line: rgba(23, 33, 49, .14);
  --shadow: 0 18px 50px rgba(18, 63, 115, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(116,132,154,.16), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(22,72,121,.14), transparent 22rem),
    var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 40px rgba(31,58,84,.12);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 150px; }
.nav { display: flex; justify-content: center; gap: 4px; color: #526174; font-weight: 750; }
.nav a { padding: 9px 13px; border-radius: 999px; }
.nav a:hover, .nav a.active { color: var(--brand); background: rgba(22,72,121,.09); }
.lang-switch { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); }
.lang-btn, .menu-toggle { border: 0; font-weight: 850; cursor: pointer; }
.lang-btn { min-width: 39px; padding: 8px 10px; border-radius: 999px; color: var(--muted); background: transparent; }
.lang-btn.active { color: #fff; background: var(--brand); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
}
.menu-icon,
.menu-icon:before,
.menu-icon:after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-icon { position: relative; margin: auto; }
.menu-icon:before,
.menu-icon:after { content: ""; position: absolute; left: 0; }
.menu-icon:before { top: -6px; }
.menu-icon:after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon:before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon:after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 88px);
  margin-top: -88px;
  padding: clamp(122px, 12vw, 160px) clamp(18px, 5vw, 78px) clamp(56px, 8vw, 96px);
  overflow: hidden;
  max-width: 100vw;
}
.hero > *, .split-section > *, .promo-home > *, .contact-hero > * { min-width: 0; }
.home-hero {
  background:
    linear-gradient(118deg, rgba(246,247,250,.98) 0%, rgba(233,238,244,.96) 56%, rgba(217,225,234,.92) 100%);
}
.home-hero:before,
.home-hero:after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.home-hero:before {
  right: -10%;
  top: 16%;
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  border: 54px solid rgba(116,132,154,.18);
  border-radius: 50%;
}
.home-hero:after {
  right: -4%;
  bottom: -10%;
  width: 62%;
  height: 38%;
  background: linear-gradient(135deg, rgba(22,72,121,.11), rgba(116,132,154,.18));
  clip-path: polygon(22% 0, 100% 10%, 86% 100%, 0 82%);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow:before { content: ""; width: 36px; height: 3px; background: currentColor; }
h1 {
  max-width: 860px;
  font-size: clamp(2.05rem, 4.45vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 850;
  overflow-wrap: anywhere;
}
.hero-copy p, .page-hero p, .text-block p {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  overflow-wrap: anywhere;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.button.primary { color: #fff; background: var(--brand); }
.button.ghost { color: var(--brand); background: #fff; border-color: var(--line); }
.button.small { min-height: 40px; padding: 9px 13px; }

.motion-stage { position: relative; z-index: 2; width: 100%; min-width: 0; min-height: 540px; overflow: hidden; isolation: isolate; }
.motion-stage:before {
  content: "";
  position: absolute;
  inset: 10% 3% 8% 10%;
  border: 1px solid rgba(22,72,121,.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.74), rgba(116,132,154,.12));
  clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 88%);
}
.motion-stage:after {
  content: "";
  position: absolute;
  inset: 23% 18%;
  border: 2px solid rgba(116,132,154,.28);
  border-radius: 50%;
}
.orbit {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.orbit img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.orbit-one { right: 0; top: 4%; width: min(58%, 340px); aspect-ratio: 1; }
.orbit-two { left: 0; bottom: 8%; width: min(45%, 260px); aspect-ratio: 1; }
.orbit-three { right: 15%; bottom: 0; width: min(37%, 214px); aspect-ratio: 1; }
.center-mark { position: absolute; left: 48%; top: 49%; width: min(50%, 280px); transform: translate(-50%,-50%); opacity: .09; z-index: 1; }

.quick-paths {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  margin: -38px auto 68px;
}
.quick-paths a {
  min-height: 164px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.quick-paths span, .service-board span { color: var(--brand-2); font-weight: 900; }
.quick-paths strong, .quick-paths small { display: block; }
.quick-paths strong { margin: 24px 0 8px; font-size: 1.08rem; line-height: 1.2; }
.quick-paths small { color: var(--muted); font-size: .96rem; }

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 78px);
  background: var(--white);
  overflow: hidden;
}
.split-section:after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -72px;
  width: 180px;
  height: 180px;
  background: rgba(116,132,154,.12);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.split-section h2, .page-hero h1, .contact-hero h1 {
  font-size: clamp(1.75rem, 3.3vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 850;
}
.text-link { display: inline-flex; margin-top: 20px; color: var(--brand); font-weight: 850; border-bottom: 2px solid var(--brand-2); }
.pale { background: var(--soft); }

.proof-strip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: stretch;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 5vw, 78px);
  background: #fff;
  max-width: 100vw;
  overflow: hidden;
}
.proof-card {
  min-width: 0;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(23,33,49,.1);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(233,238,244,.72));
  box-shadow: 0 14px 40px rgba(18,63,115,.08);
}
.proof-card strong { display: block; color: var(--brand); font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.05; overflow-wrap: anywhere; }
.proof-card span { display: block; margin-top: 12px; color: var(--muted); overflow-wrap: anywhere; }

.section-intro {
  max-width: 720px;
  margin-bottom: 26px;
}
.section-intro h2,
.promo-copy h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 850;
}
.home-categories,
.order-steps {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 78px);
}
.category-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.category-grid a,
.step-grid article {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(36,57,78,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 40px rgba(31,58,84,.08);
}
.category-grid strong,
.category-grid span,
.step-grid span {
  display: block;
}
.category-grid strong {
  margin-bottom: 36px;
  color: var(--brand);
  font-size: 1.1rem;
}
.category-grid span,
.step-grid p {
  color: var(--muted);
}
.promo-home {
  display: grid;
  grid-template-columns: .8fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 78px);
  background: linear-gradient(115deg, rgba(116,132,154,.14), rgba(255,255,255,.86));
  overflow: hidden;
}
.promo-copy p {
  margin: 18px 0 24px;
  color: var(--muted);
}
.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.promo-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-grid span {
  margin-bottom: 26px;
  color: var(--brand-2);
  font-weight: 900;
}
.step-grid h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.page-hero {
  position: relative;
  padding: clamp(74px, 9vw, 108px) clamp(18px, 5vw, 78px) clamp(40px, 6vw, 66px);
  background: linear-gradient(115deg, #fff 0%, #e9eef4 68%, rgba(116,132,154,.18) 68%, rgba(116,132,154,.18) 100%);
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border: 44px solid rgba(30,95,147,.08);
  border-radius: 50%;
}
.page-hero h1,
.page-hero p,
.hero-copy h1,
.hero-copy p { position: relative; z-index: 1; }
.page-hero.compact { min-height: 360px; }
.about-hero { background: linear-gradient(115deg, #fff 0%, #e9eef4 64%, rgba(22,72,121,.1) 64%, rgba(22,72,121,.1) 100%); }

.catalog-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 78px) clamp(64px, 8vw, 104px);
  align-items: start;
}
.catalog-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(116,132,154,.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(234,242,245,.92));
  box-shadow: var(--shadow);
}
.catalog-note h2 { font-size: 1.28rem; line-height: 1.15; }
.catalog-note p { margin: 8px 0 0; color: var(--muted); }
.catalog-note .button.primary { background: var(--brand); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(36,57,78,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 34px rgba(31,58,84,.07);
}
.filter-btn {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  background: var(--brand);
}
.product-card.is-hidden { display: none; }
.promo-card span { color: var(--brand); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-card {
  overflow: hidden;
  border: 1px solid rgba(36,57,78,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 42px rgba(31,58,84,.09);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(31,58,84,.14); }
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  padding: 12px;
  object-fit: contain;
  background: linear-gradient(145deg, #ffffff, #eef5f6);
}
.product-card div { padding: 17px; }
.product-card span { color: var(--brand-2); font-weight: 900; font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; }
.product-card h2 { margin: 5px 0 7px; font-size: 1.08rem; line-height: 1.12; }
.product-card p { color: var(--muted); font-size: .94rem; }

.service-board, .values-grid, .locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 78px) clamp(64px, 8vw, 104px);
}
.service-board article, .values-grid article, .locations article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(36,57,78,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 42px rgba(31,58,84,.08);
}
.service-board h2, .values-grid h2, .locations h2 { margin: 28px 0 10px; font-size: clamp(1.35rem, 2.5vw, 1.95rem); line-height: 1.08; letter-spacing: 0; }
.service-board p, .values-grid p, .locations p { color: var(--muted); }

.contact-hero {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(74px, 9vw, 112px) clamp(18px, 5vw, 78px);
  background: linear-gradient(115deg, rgba(116,132,154,.16) 0%, rgba(116,132,154,.16) 42%, #fff 42%);
}
.contact-hero p { margin-top: 20px; color: var(--muted); font-size: 1.08rem; }
.contact-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-panel a {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(36,57,78,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.contact-panel span { display: block; margin-bottom: 18px; color: var(--muted); font-weight: 900; text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; }
.contact-panel strong { overflow-wrap: anywhere; font-size: 1.02rem; }

.legal-page { max-width: 940px; margin: 0 auto; padding: clamp(70px, 9vw, 116px) 18px; }
.legal-page h1 { margin-bottom: 32px; font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: 0; line-height: 1.03; }
.legal-page section { padding: 24px 0; border-top: 1px solid var(--line); }
.legal-page h2 { margin-bottom: 12px; font-size: 1.22rem; }
.legal-page p { color: var(--muted); }

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 34px;
  padding: 34px clamp(18px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: #e9eef4;
  color: var(--muted);
}
.footer img { width: 138px; }
.footer p { margin-top: 10px; }
.footer-links { display: flex; gap: 18px; align-items: center; justify-content: flex-end; flex-wrap: wrap; }
.footer a,
.footer button {
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(23,33,49,.1);
  font-size: .92rem;
}
.footer-bottom a { color: var(--brand); }

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  background: rgba(22,72,121,.96);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { color: rgba(255,255,255,.82); font-size: .94rem; }
.cookie-banner div { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .button.ghost { color: var(--brand); }
.cookie-banner .button.primary { background: #fff; color: var(--brand); }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto auto; position: sticky; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }
  .nav.open { display: flex; }
  .nav a {
    width: 100%;
    padding: 13px 14px;
    border-radius: 8px;
  }
  .hero, .split-section, .contact-hero { grid-template-columns: 1fr; }
  .motion-stage { min-height: 410px; max-width: 620px; width: 100%; margin: 0 auto; }
  .proof-strip { grid-template-columns: 1fr; }
  .quick-paths, .product-grid, .category-grid, .step-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-home { grid-template-columns: 1fr; }
  .catalog-note { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; top: 8px; width: calc(100% - 16px); margin-top: 8px; gap: 7px; padding: 8px 9px 8px 12px; }
  .brand img { width: 116px; }
  .menu-toggle { width: 42px; height: 42px; }
  .lang-switch { flex-shrink: 0; }
  .lang-btn { min-width: 34px; padding: 8px; }
  .hero-copy, .proof-card { width: 100%; max-width: 340px; }
  h1 { font-size: clamp(1.45rem, 5.7vw, 1.58rem); line-height: 1.14; }
  .split-section h2, .page-hero h1, .contact-hero h1 { font-size: clamp(1.55rem, 7.5vw, 2.15rem); line-height: 1.08; }
  .hero-copy p, .page-hero p, .text-block p { font-size: 1rem; line-height: 1.6; }
  .hero { min-height: auto; margin-top: -74px; padding-top: 114px; }
  .motion-stage { min-height: 292px; max-width: 340px; }
  .orbit-one { right: 24px; width: 44%; }
  .orbit-two { left: 6px; width: 43%; }
  .orbit-three { right: 24px; width: 35%; }
  .quick-paths { grid-template-columns: 1fr; margin-top: -22px; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; border-radius: 999px; }
  .filter-btn { flex: 0 0 auto; padding: 9px 14px; }
  .product-grid, .service-board, .values-grid, .locations, .contact-panel, .category-grid, .step-grid, .promo-strip { grid-template-columns: 1fr; }
  .contact-hero { background: linear-gradient(180deg, rgba(116,132,154,.16) 0 36%, #fff 36%); }
  .proof-strip { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 13px; gap: 10px; }
  .cookie-banner p { max-width: 100%; font-size: .86rem; line-height: 1.45; overflow-wrap: anywhere; }
  .cookie-banner div { width: 100%; }
  .cookie-banner .button.small { min-height: 38px; padding: 8px 10px; }
  .cookie-banner .button { flex: 1; }
}
