/* ===================================================================
   QHEL — Logistične rešitve d.o.o.
   Palette: blue / gray / white  ·  motif: supply-chain "clearance"
   Display: Space Grotesk · Body: IBM Plex Sans · Utility: IBM Plex Mono
   =================================================================== */

:root {
  /* --- palette (blue / gray / white) --- */
  --ink:        #0A1E40;   /* deepest navy-blue (footer) */
  --navy-900:   #0E2A5E;   /* dark sections */
  --navy-800:   #143571;   /* dark surfaces / borders */
  --navy-700:   #1C4488;

  --accent:     #1E5AD6;   /* primary blue — buttons, highlights */
  --accent-deep:#1746A8;   /* hover */
  --accent-soft:#E9F0FC;   /* tinted icon chip bg */
  --accent-lt:  #9CC0F2;   /* light blue on dark bg */

  --steel:      #5C6B86;   /* neutral gray accent */

  --bg:         #FFFFFF;
  --bg-soft:    #F1F4F9;   /* light gray sections */
  --line:       #E2E8F1;   /* hairline borders */
  --line-soft:  #EDF1F7;

  --text:       #233149;   /* body */
  --text-soft:  #586781;   /* muted */
  --text-faint: #8B99AC;

  /* --- type --- */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "IBM Plex Sans", system-ui, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* --- layout --- */
  --container: 1180px;
  --radius:    14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10,30,64,.06), 0 4px 14px rgba(10,30,64,.05);
  --shadow-md: 0 10px 30px rgba(10,30,64,.10);
  --shadow-lg: 0 24px 60px rgba(10,30,64,.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; scrollbar-width: thin; scrollbar-color: #b3bcc9 var(--bg-soft); }

/* custom scrollbar (WebKit) — gray */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: #b3bcc9; border-radius: 10px; border: 3px solid var(--bg-soft); }
::-webkit-scrollbar-thumb:hover { background: #94a0b1; }
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.1; letter-spacing: -.02em; color: var(--navy-900); font-weight: 700; }
ul, ol { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block;
}
.eyebrow-light { color: var(--accent-lt); }
.eyebrow-light::before { background: var(--accent-lt); }

.section { padding-block: clamp(64px, 9vw, 116px); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.section-intro { margin-top: 16px; color: var(--text-soft); font-size: 1.08rem; max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-display); font-weight: 600; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 14px 26px; border-radius: 10px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-block { width: 100%; padding-block: 16px; }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 22px rgba(30,90,214,.28);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(30,90,214,.36); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); margin-top: 28px; }
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(10,30,64,.08); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; transition: height .3s var(--ease); }
.site-header.scrolled .header-inner { height: 66px; }

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { height: 52px; width: auto; flex: none; transition: height .3s var(--ease); }
.site-header.scrolled .brand-logo { height: 44px; }

.main-nav { display: flex; gap: 24px; }
.main-nav a {
  font-family: var(--f-display); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text); position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent);
  transition: width .25s var(--ease);
}
.main-nav a:hover { color: var(--navy-900); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: .85rem; font-weight: 500; color: var(--navy-800); white-space: nowrap; }
.header-phone svg { color: var(--accent); }
.header-phone:hover { color: var(--accent); }

/* language switcher (pushed to far right of the header actions) */
.lang-switch { display: inline-flex; margin-left: auto; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 11px; font-family: var(--f-mono); font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  color: var(--text-soft); background: transparent; border: 0; border-left: 1px solid var(--line);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-btn:first-child { border-left: 0; }
.lang-btn[aria-pressed="true"] { background: var(--accent); color: #fff; }
.lang-btn[aria-pressed="false"]:hover { background: var(--accent-soft); color: var(--accent); }
.lang-btn .flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; min-height: clamp(620px, 88vh, 880px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,30,64,.94) 0%, rgba(14,42,94,.84) 42%, rgba(14,42,94,.44) 100%),
    linear-gradient(0deg, rgba(10,30,64,.55), rgba(10,30,64,0) 45%);
}
.hero-inner { position: relative; z-index: 1; padding-block: 124px 64px; max-width: 800px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); color: #fff; letter-spacing: -.03em; }
.hero h1 .hl { color: var(--accent-lt); }
.hero-lead { margin-top: 22px; font-size: clamp(1.06rem, 1.8vw, 1.32rem); color: #C9D6E8; max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ===================================================================
   CAPABILITY STRIP
   =================================================================== */
.capabilities { background: var(--navy-900); border-top: 1px solid var(--navy-700); }
.cap-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 20px; padding-block: 22px; }
.cap-item { font-family: var(--f-mono); font-size: .82rem; letter-spacing: .1em; color: #9FB4D0; text-transform: uppercase; }
.cap-sep { color: var(--accent-lt); opacity: .6; }

/* ===================================================================
   GRIDS & CARDS
   =================================================================== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #CBD8E8; }
.card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.card p { color: var(--text-soft); font-size: .98rem; }

.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 20px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.card:hover .icon-chip { background: var(--navy-900); color: #fff; transform: scale(1.05) rotate(-3deg); }

/* service cards: corner reference code */
.services { background: var(--bg-soft); }
.service-card { padding-top: 34px; }
.service-code {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--f-mono); font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  color: var(--text-faint);
}
.service-card:hover .service-code { color: var(--accent); }
.services-outro { margin: 40px auto 0; max-width: 64ch; text-align: center; color: var(--text-soft); font-size: 1.1rem; }

/* ===================================================================
   ABOUT
   =================================================================== */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.about-p { margin-top: 18px; color: var(--text-soft); font-size: 1.04rem; line-height: 1.75; }
.about-sign { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; padding-left: 18px; border-left: 3px solid var(--accent); }
.about-sign-name { font-family: var(--f-display); font-weight: 700; color: var(--navy-900); font-size: 1.12rem; }
.about-sign-role { color: var(--text-soft); font-size: .95rem; }
.about-sign-tag { font-family: var(--f-display); font-style: italic; color: var(--accent); font-size: 1rem; margin-top: 6px; }
.footer-person { color: #C7D3E5; font-size: .92rem; }

.about-media, .adv-media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media img, .adv-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; }
.about-media figcaption, .adv-media figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(10,30,64,.78); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
  padding: 14px 18px; color: #fff; display: flex; flex-direction: column; gap: 4px;
}
.about-media-code, .adv-media-code { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-lt); }
.about-media figcaption span:last-child, .adv-media figcaption span:last-child { font-size: .92rem; color: #D5DEEC; }

/* shared check bullet */
.adv-check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy-900); position: relative;
}
.adv-check::after {
  content: ""; position: absolute; left: 8px; top: 7px; width: 6px; height: 11px;
  border: solid var(--accent-lt); border-width: 0 2.4px 2.4px 0; transform: rotate(45deg);
}

/* ===================================================================
   CUSTOMS SPOTLIGHT (dark)
   =================================================================== */
.customs { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.customs-bg { position: absolute; inset: 0; z-index: 0; }
.customs-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.customs::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(115deg, var(--navy-900) 34%, rgba(14,42,94,.62) 100%); }
.customs-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.customs h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); }
.customs-lead { margin-top: 16px; color: #C2D0E4; font-size: 1.08rem; max-width: 44ch; }
.customs-copy .btn { margin-top: 28px; }
.customs-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 26px; }
.customs-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.customs-list div { display: flex; flex-direction: column; color: #AEBFD6; font-size: .92rem; }
.customs-list strong { font-family: var(--f-display); font-weight: 600; color: #fff; font-size: 1.04rem; margin-bottom: 3px; }
.cl-code {
  flex: none; align-self: flex-start; font-family: var(--f-mono); font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  color: var(--accent-lt); background: rgba(30,90,214,.18); border: 1px solid rgba(156,192,242,.3);
  padding: 5px 8px; border-radius: 7px; min-width: 42px; text-align: center;
}

/* ===================================================================
   ADVANTAGES / WHY
   =================================================================== */
.advantages { background: var(--bg-soft); }
.adv-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.adv-list { margin-top: 32px; display: grid; gap: 6px; }
.adv-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.adv-list li:last-child { border-bottom: 0; }
.adv-list div { display: flex; flex-direction: column; color: var(--text-soft); font-size: .96rem; }
.adv-list strong { font-family: var(--f-display); font-weight: 600; color: var(--navy-900); font-size: 1.05rem; margin-bottom: 3px; }
.adv-list .adv-check { margin-top: 3px; }

/* ===================================================================
   CTA + FORM
   =================================================================== */
.cta { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(115deg, var(--ink) 30%, rgba(10,30,64,.7) 100%); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); }
.cta-lead { margin-top: 18px; color: #C2D0E4; font-size: 1.1rem; max-width: 46ch; }
.cta-points { margin-top: 26px; display: grid; gap: 12px; }
.cta-points li { position: relative; padding-left: 30px; color: #DCE5F1; font-size: 1rem; }
.cta-points li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9.6 16.2-3.8-3.8 1.4-1.4 2.4 2.4 6-6 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9.6 16.2-3.8-3.8 1.4-1.4 2.4 2.4 6-6 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* SIGNATURE — brand badge (echoes the logo tagline) */
.badge { margin-top: 46px; }
.badge-ring {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  width: 168px; height: 168px; border-radius: 50%;
  border: 3px double rgba(156,192,242,.85);
  color: var(--accent-lt); transform: rotate(-9deg);
  box-shadow: inset 0 0 0 7px rgba(30,90,214,.14);
}
.badge-main { font-family: var(--f-display); font-weight: 700; font-size: 1.7rem; letter-spacing: .08em; color: #fff; }
.badge-sub { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .18em; margin-top: 8px; color: var(--accent-lt); }

.form-card {
  background: #fff; color: var(--text); border-radius: 18px; padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
}
.inquiry-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--text);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(30,90,214,.14);
}
.field input.invalid, .field textarea.invalid { border-color: #e0413a; box-shadow: 0 0 0 4px rgba(224,65,58,.12); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .82rem; color: var(--text-faint); text-align: center; margin-top: 2px; }
.form-status { margin-top: 4px; padding: 13px 16px; border-radius: 10px; font-size: .94rem; font-weight: 500; }
.form-status.ok { background: #E7F6EC; color: #1c6b3a; border: 1px solid #B8E2C6; }
.form-status.err { background: #FDECEA; color: #b32820; border: 1px solid #F4C6C2; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--ink); color: #B9C7DA; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 56px; }
.footer-logo { height: 58px; width: auto; filter: brightness(0) invert(1); }
.footer-desc { margin-top: 18px; font-size: .94rem; max-width: 36ch; line-height: 1.7; }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-ico { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; color: #fff; transition: transform .2s var(--ease), filter .2s var(--ease), box-shadow .2s var(--ease); }
.social-ico:hover { transform: translateY(-3px); filter: brightness(1.08); box-shadow: 0 10px 20px rgba(0,0,0,.28); }
.social-ico.li { background: #0A66C2; }
.social-ico.wa { background: #25D366; }
.social-ico.vb { background: #7360F2; }
.li-inline { display: inline-flex; vertical-align: middle; margin-left: 7px; color: var(--accent-lt); transition: color .2s var(--ease); }
.li-inline:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: .82rem; font-family: var(--f-mono); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; padding: 6px 0; font-size: .95rem; color: #AbBACF; transition: color .2s, padding-left .2s var(--ease); }
.footer-col a:hover { color: var(--accent-lt); padding-left: 5px; }
.footer-contact p { font-size: .95rem; margin-bottom: 12px; line-height: 1.6; }
.footer-contact a { display: inline; padding: 0; }
.footer-hours { color: #97A8c0; }
.footer-hours strong { color: #fff; font-weight: 600; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
  padding-block: 24px; border-top: 1px solid rgba(255,255,255,.10);
  font-size: .85rem; color: #7E90AB;
}
.footer-legal-links { display: flex; gap: 22px; }
.footer-legal-links a { color: #9FB0C7; transition: color .2s var(--ease); }
.footer-legal-links a:hover { color: var(--accent-lt); }

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 12px; border: 0;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s var(--ease);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--accent-deep); transform: translateY(-3px); }

/* ===================================================================
   COOKIE CONSENT
   =================================================================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95;
  max-width: 1180px; margin-inline: auto;
  background: var(--navy-900); color: #DCE5F1;
  border: 1px solid var(--navy-700); border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap;
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.cookie-banner.show { transform: none; }
.cookie-text { font-size: .92rem; line-height: 1.6; max-width: 70ch; }
.cookie-text a { color: var(--accent-lt); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }
.reveal:nth-child(5) { transition-delay: .28s; }
.reveal:nth-child(6) { transition-delay: .35s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .customs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .about-grid, .adv-grid { grid-template-columns: 1fr; }
  .about-media, .adv-media { order: -1; }
  .cta-grid { grid-template-columns: 1fr; }
  .badge { display: none; }
}

@media (max-width: 960px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 76px; }
  .header-phone { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed; inset: 78px 0 auto 0;
    background: #fff; flex-direction: column; gap: 0;
    padding: 12px 24px 28px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .main-nav a::after { display: none; }

  .customs-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
}

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