/* Kiros Vona — shared stylesheet
   Self-hosted, no external fonts/CDN. System font stack stands in for
   Archivo / IBM Plex Sans used in the original design. */

:root {
  --navy: #0d1b2a;
  --blue: #1a4fa0;
  --blue-dark: #123a78;
  --blue-mid: #173f7a;
  --bg: #f5f8fc;
  --card: #ffffff;
  --border: #dde5ee;
  --border-soft: #e3ebf6;
  --tint: #eef3fa;
  --text: #0d1b2a;
  --muted: #5a6b80;
  --muted-2: #64778f;
  --muted-3: #33475f;
  --muted-4: #8494a8;
  --on-dark: #cfe0f7;
  --on-dark-soft: #a9c5ea;
  --on-dark-soft-2: #8fb0d8;
  --on-dark-text: #dbe7f7;
  --gold: #ffc94d;
  --green-bg: #e8f6ee;
  --green-border: #b7e0c8;
  --green-text: #216b41;
  --red: #a0392f;
  --r-sm: 8px;
  --r-md: 9px;
  --r-lg: 14px;
  --r-xl: 16px;
  --shadow-card: 0 16px 34px rgba(13, 27, 42, 0.1);
  --shadow-pop: 0 24px 60px rgba(4, 17, 38, 0.35);
  --shadow-drawer: -20px 0 50px rgba(6, 16, 29, 0.3);
  --shadow-banner: 0 20px 50px rgba(6, 16, 29, 0.22);
  --max: 1240px;
  --font-head: Archivo, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }
input, select, button, textarea { font-family: inherit; }
h1, h2, h3 { font-family: var(--font-head); margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
main { flex: 1; }

@keyframes kvUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes kvIn { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }

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

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--navy);
  color: var(--on-dark);
  font-size: 14px;
  padding: 9px 24px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.promo-bar .accent { color: #7fb0f2; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(160deg, var(--blue), var(--navy));
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  flex-shrink: 0;
}
.brand-title { font-family: var(--font-head); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; line-height: 1; color: var(--text); }
.brand-sub { font-size: 11px; color: var(--muted-2); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

.main-nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.main-nav a {
  padding: 8px 12px; border-radius: var(--r-sm); font-size: 15px; font-weight: 500;
  color: var(--muted-3); cursor: pointer; text-decoration: none;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--tint); color: var(--blue); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-block { display: flex; flex-direction: column; line-height: 1.2; text-decoration: none; }
.phone-block:hover { text-decoration: none; }
.phone-label { font-size: 11px; color: var(--muted-2); }
.phone-value { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text); }
.cart-link {
  position: relative; padding: 10px 16px; border-radius: var(--r-md);
  background: var(--blue); color: #fff; font-weight: 600; font-size: 14px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
}
.cart-link:hover { background: var(--blue-dark); color: #fff; text-decoration: none; }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 26px; border-radius: 10px;
  font-weight: 700; font-size: 16px; cursor: pointer; border: none; text-align: center;
  text-decoration: none; transition: background .15s, transform .15s, box-shadow .15s;
}
.btn:hover { text-decoration: none; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--on-dark); color: var(--navy); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.4); color: #fff; font-weight: 600; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; padding: 12px 18px; font-size: 14px; font-weight: 600; border-radius: var(--r-md); }
.btn-dark:hover { background: var(--blue); color: #fff; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { border: 1px solid var(--blue); color: var(--blue); background: #fff; padding: 12px 20px; font-weight: 600; border-radius: var(--r-md); font-size: 15px; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-block { display: block; width: 100%; padding: 14px; border-radius: var(--r-md); }
.btn-sm { padding: 9px 14px; font-size: 13.5px; border-radius: var(--r-md); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 55%, var(--blue) 100%);
  color: #fff;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 74px 24px 84px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero-content { animation: kvUp .5s ease both; }
.hero-badge {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.12); font-size: 13px; letter-spacing: 0.04em; margin-bottom: 20px;
}
.hero-title { font-family: var(--font-head); font-weight: 800; font-size: 54px; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 20px; }
.hero-lead { font-size: 19px; line-height: 1.6; color: var(--on-dark); margin: 0 0 30px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stat-v { font-family: var(--font-head); font-weight: 800; font-size: 30px; }
.hero-stat-l { font-size: 13px; color: var(--on-dark-soft); }

/* ---------- Calculator card ---------- */
.calc-card { background: #fff; border-radius: var(--r-xl); padding: 26px; color: var(--navy); box-shadow: var(--shadow-pop); }
.calc-title { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-bottom: 4px; }
.calc-sub { font-size: 13px; color: var(--muted-2); margin-bottom: 18px; }
.calc-grid { display: grid; gap: 14px; }
.calc-field { display: grid; gap: 6px; font-size: 13px; color: var(--muted-3); font-weight: 600; }
.calc-field select, .calc-field input[type="text"] {
  padding: 11px 12px; border: 1px solid var(--border); border-radius: var(--r-md); font-size: 15px; background: #fff; width: 100%;
}
.calc-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-checks { display: flex; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--muted-3); }
.calc-checks label { display: flex; gap: 8px; align-items: center; cursor: pointer; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--blue); width: 16px; height: 16px; }
input[type="range"] { width: 100%; accent-color: var(--blue); }
.calc-result {
  margin-top: 20px; padding: 18px; border-radius: 12px; background: var(--tint); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.calc-result-label { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; }
.calc-result-value { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--blue); line-height: 1.15; }
.calc-note { font-size: 11px; color: var(--muted-4); margin-top: 10px; line-height: 1.5; }

/* ---------- Sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 66px 24px; }
.section-tight { padding-top: 40px; padding-bottom: 24px; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: var(--navy); color: #fff; }
.section-band { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 60%, var(--blue) 100%); color: #fff; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; }
.eyebrow { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.eyebrow-light { color: #9fc2f5; }
.section-title { font-family: var(--font-head); font-weight: 700; font-size: 36px; letter-spacing: -0.02em; margin: 0; }
.section-link { font-weight: 600; color: var(--blue); cursor: pointer; }
.page-hero { padding: 54px 24px; }
.page-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: 42px; letter-spacing: -0.03em; margin: 0 0 12px; }
.page-hero p { font-size: 17px; color: var(--on-dark); max-width: 760px; line-height: 1.6; margin: 0; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service cards ---------- */
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px;
  cursor: pointer; transition: box-shadow .18s, transform .18s; display: block; color: inherit;
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); text-decoration: none; color: inherit; }
.service-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--tint); color: var(--blue);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; margin-bottom: 16px;
}
.service-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.service-desc { font-size: 15px; line-height: 1.6; color: var(--muted); }
.service-price { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--blue); }

/* Full service catalog row */
.service-row {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px;
  display: grid; grid-template-columns: 1fr 240px; gap: 28px; align-items: center;
}
.service-row-title { font-family: var(--font-head); font-weight: 700; font-size: 21px; margin-bottom: 8px; }
.service-row-desc { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin-bottom: 14px; }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: 13px; padding: 5px 11px; border-radius: 999px; background: var(--tint); color: var(--muted-3); }
.service-row-side { border-left: 1px solid var(--border); padding-left: 24px; }
.price-label { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; }
.price-value { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--blue); margin: 4px 0 14px; }

/* ---------- Steps ---------- */
.step { border-left: 3px solid var(--blue); padding: 4px 0 4px 18px; }
.step-num { font-family: var(--font-head); font-weight: 800; font-size: 13px; color: var(--blue); letter-spacing: 0.1em; }
.step-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: 6px 0 8px; }
.step-desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------- Benefits / why us ---------- */
.why-grid { max-width: var(--max); margin: 0 auto; padding: 66px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-copy p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0 0 22px; }
.benefit-list { display: grid; gap: 14px; }
.benefit { display: flex; gap: 12px; align-items: start; }
.benefit-check {
  width: 22px; height: 22px; border-radius: 6px; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.why-photo { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); height: 420px; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Reviews ---------- */
.review-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg); padding: 24px; }
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 15.5px; line-height: 1.65; color: var(--on-dark-text); margin-bottom: 16px; }
.review-name { font-weight: 600; font-size: 14px; }
.review-meta { font-size: 13px; color: var(--on-dark-soft-2); }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 10px; }
.faq-item summary {
  padding: 17px 20px; display: flex; justify-content: space-between; gap: 16px; cursor: pointer;
  font-weight: 600; font-size: 16px; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #f7fafd; }
.faq-icon::before { content: "+"; color: var(--blue); font-weight: 700; }
.faq-item[open] .faq-icon::before { content: "\2212"; }
.faq-answer { padding: 0 20px 18px; font-size: 15px; line-height: 1.65; color: var(--muted); }

/* ---------- Blog cards ---------- */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-card); text-decoration: none; color: inherit; }
.blog-card-img { height: 160px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-cat { font-size: 11.5px; color: var(--blue); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; line-height: 1.3; }
.blog-lead { font-size: 14.5px; line-height: 1.6; color: var(--muted); flex: 1; }
.blog-cta { font-size: 13.5px; color: var(--blue); font-weight: 600; }

/* ---------- Article page ---------- */
.article-wrap { max-width: 860px; margin: 0 auto; padding: 46px 24px 70px; }
.back-link { font-size: 14px; color: var(--blue); font-weight: 600; cursor: pointer; margin-bottom: 20px; display: inline-block; }
.article-cat { font-size: 12.5px; color: var(--blue); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.article-title { font-family: var(--font-head); font-weight: 800; font-size: 40px; line-height: 1.12; letter-spacing: -0.03em; margin: 10px 0 16px; }
.article-lead { font-size: 19px; line-height: 1.65; color: var(--muted); margin: 0 0 28px; }
.article-img { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 34px; height: 260px; }
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-blocks { display: grid; gap: 26px; }
.article-blocks h2 { font-family: var(--font-head); font-weight: 700; font-size: 25px; letter-spacing: -0.02em; margin: 0 0 10px; }
.article-blocks p { font-size: 17px; line-height: 1.75; color: var(--muted-3); margin: 0; }
.article-cta { margin-top: 40px; background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: 30px; }
.article-cta-title { font-family: var(--font-head); font-weight: 700; font-size: 23px; margin-bottom: 8px; }
.article-cta-text { color: var(--on-dark); font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
.article-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Shop ---------- */
.shop-cats { max-width: var(--max); margin: 0 auto; padding: 40px 24px 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.shop-cat {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--muted-3);
  font-weight: 600; font-size: 14px; cursor: pointer; text-decoration: none; display: inline-block;
}
.shop-cat:hover { text-decoration: none; }
.shop-cat.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; }
.product-img { height: 150px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 11.5px; color: var(--blue); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.product-name { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; line-height: 1.3; }
.product-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.product-price { font-family: var(--font-head); font-weight: 800; font-size: 20px; }
.product-stock { font-size: 12px; color: #2f8f5b; }
.info-box-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.info-box-text { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---------- About ---------- */
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.stat-value { font-family: var(--font-head); font-weight: 800; font-size: 32px; color: var(--blue); }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 6px; }
.team-card-photo { height: 150px; border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.team-role { font-size: 13.5px; color: var(--muted); }
.panel { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px; }

/* ---------- Contact / forms ---------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px; display: grid; gap: 14px; }
.field { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted-3); }
.field input, .field textarea, .field select {
  padding: 12px; border: 1px solid var(--border); border-radius: var(--r-md); font-size: 15px; width: 100%;
}
.field textarea { resize: vertical; }
.consent-row { display: flex; gap: 10px; align-items: start; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.consent-row input { margin-top: 2px; }
.alert { border-radius: var(--r-md); padding: 12px; font-size: 14px; }
.alert-success { background: var(--green-bg); border: 1px solid var(--green-border); color: var(--green-text); }
.alert-error { background: #fbeceb; border: 1px solid #f0b8b2; color: #8a2c22; }
.contact-panel { background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: 26px; }
.contact-panel-title { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-bottom: 16px; }
.contact-lines { display: grid; gap: 10px; font-size: 15px; color: var(--on-dark); line-height: 1.5; }
.map-embed { height: 260px; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.regions-box { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; }

/* ---------- Legal ---------- */
.legal-wrap { max-width: 900px; margin: 0 auto; padding: 52px 24px 70px; }
.legal-title { font-family: var(--font-head); font-weight: 800; font-size: 38px; letter-spacing: -0.03em; margin: 0 0 8px; }
.legal-meta { font-size: 13.5px; color: var(--muted-2); margin-bottom: 30px; }
.legal-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 34px; display: grid; gap: 24px; }
.legal-panel h2 { font-family: var(--font-head); font-weight: 700; font-size: 21px; margin: 0 0 8px; }
.legal-panel p { font-size: 16px; line-height: 1.7; color: var(--muted-3); margin: 0; }

/* ---------- Sitemap page ---------- */
.sitemap-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.sitemap-card-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.sitemap-card ul { display: grid; gap: 8px; }
.sitemap-card a { font-size: 15px; color: var(--blue); }

/* ---------- Cart page ---------- */
.cart-layout { max-width: var(--max); margin: 0 auto; padding: 56px 24px 70px; display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 32px; align-items: start; }
.cart-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px; display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 12px; }
.cart-item-name { font-weight: 600; font-size: 15px; line-height: 1.35; }
.cart-item-unit { font-size: 13px; color: var(--muted-2); margin-top: 3px; }
.qty-row { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--border); display: grid; place-items: center; cursor: pointer; background: #fff; font-size: 16px; }
.qty-val { min-width: 24px; text-align: center; font-weight: 600; }
.cart-item-side { text-align: right; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-sum { font-family: var(--font-head); font-weight: 800; font-size: 17px; }
.cart-item-remove { font-size: 12.5px; color: var(--red); cursor: pointer; background: none; border: none; padding: 0; }
.cart-empty { text-align: center; padding: 50px 10px; color: var(--muted); }
.summary-card { border: 1px solid var(--border); background: #fff; border-radius: var(--r-xl); padding: 20px 22px; display: grid; gap: 10px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted); }
.summary-total { display: flex; justify-content: space-between; font-family: var(--font-head); font-weight: 800; font-size: 21px; }
.summary-fine { font-size: 11.5px; color: var(--muted-4); line-height: 1.5; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; bottom: 20px; z-index: 70; width: 460px; max-width: calc(100vw - 40px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-banner); padding: 22px;
}
.cookie-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.cookie-text { font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn-secondary { padding: 11px 18px; border-radius: var(--r-md); border: 1px solid var(--border); font-weight: 600; font-size: 14px; cursor: pointer; background: #fff; }
.cookie-actions .btn-secondary:hover { background: var(--tint); }
.cookie-actions .btn-primary { padding: 11px 18px; font-size: 14px; border-radius: var(--r-md); }
.cookie-banner.is-hidden { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9cbe2; margin-top: auto; }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 54px 24px 26px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand-title { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 10px; }
.footer-brand-text { font-size: 14.5px; line-height: 1.7; }
.footer-brand-contact { margin-top: 14px; font-size: 14.5px; }
.footer-col-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 14.5px; color: #b9cbe2; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom-inner { max-width: var(--max); margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: #b9cbe2; }
.footer-bottom-links a:hover { color: #fff; text-decoration: none; }

/* ---------- Honeypot (spam trap, hidden from real users) ---------- */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 0; height: 0; overflow: hidden; opacity: 0; pointer-events: none; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: auto; background: var(--blue); color: #fff; padding: 10px 16px;
  border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 20px 56px; }
  .why-grid { grid-template-columns: 1fr; padding: 48px 20px; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-side { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 18px; }
  .cart-layout { grid-template-columns: 1fr; }
  .article-title, .hero-title { font-size: 34px; }
}
@media (max-width: 760px) {
  .main-nav { display: none; width: 100%; order: 3; flex-direction: column; gap: 2px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 8px; }
  .nav-toggle {
    display: inline-flex; margin-left: auto; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: #fff; cursor: pointer;
  }
  .header-inner { flex-wrap: wrap; }
  .header-actions { order: 2; margin-left: auto; }
  .phone-block { display: none; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; }
  .calc-row-2 { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; width: auto; bottom: 12px; }
  .hero-title, .page-hero h1, .legal-title, .article-title { font-size: 28px; }
  .section-title { font-size: 26px; }
}
