@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #142A3A;
  --blue: #126C78;
  --blue-light: #3B8C93;
  --bg-soft: #EAF1F2;
  --bg-card: #E4EEEF;
  --bg-card-hover: #D5E6E8;
  --border: #D9E2E1;
  --text: #1C242D;
  --text-muted: #5B6B7A;
  --white: #FAFAF7;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(20, 42, 58, 0.08);
  --shadow-hover: 0 8px 24px rgba(20, 42, 58, 0.14);
  --maxw: 1120px;
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--navy);
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.logo-img {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.logo-tagline {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  margin-top: 1px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
}

nav.main-nav a { color: var(--text); }
nav.main-nav a:hover { color: var(--blue); text-decoration: none; }
nav.main-nav a.active { color: var(--blue); }

.has-dropdown { position: relative; }
.has-dropdown > button.dropdown-trigger {
  font: inherit;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.has-dropdown > button.dropdown-trigger:hover { color: var(--blue); }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 240px;
  padding: 8px;
  margin-top: 0;
}
/* No gap between trigger and panel: pointer never leaves .has-dropdown's hit area while moving down into the panel. */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.js-open .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  min-height: 44px;
  box-sizing: border-box;
}
.dropdown a:hover, .dropdown a:focus { background: var(--bg-soft); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.lang-switch span.active { color: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-toggle svg { width: 26px; height: 26px; display: block; }

.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}
.header-phone span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ---------- Floating contact buttons ---------- */

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  text-decoration: none;
  transition: transform .15s;
}
.fab:hover { transform: scale(1.08); text-decoration: none; }
.fab-call { background: var(--navy); }
.fab-whatsapp { background: #25D366; }

/* ---------- Stats bar ---------- */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 8px;
}
.stat {
  text-align: center;
  padding: 18px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat .num {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Hero logo art ---------- */

.hero-logo-art {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-art img { max-width: 100%; height: auto; }

/* ---------- Bridge photography ---------- */

.hero-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4 / 3;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-banner {
  max-width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 auto 4px;
  line-height: 0;
  opacity: 0.94;
}
.photo-banner img { width: 100%; height: auto; display: block; }

@media (max-width: 600px) {
  .photo-banner { max-width: 100%; }
}

/* ---------- Bridge icon (monochrome, logo-derived, no text) ---------- */

.bridge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 180px;
}
.bridge-icon svg { width: 100%; max-width: 340px; height: auto; color: var(--navy); opacity: 0.9; }
.bridge-icon img { width: 100%; max-width: 380px; height: auto; }

/* ---------- Arch motif (subtle, no photo) ---------- */

.arch-motif {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  height: 100%;
  min-height: 180px;
  opacity: 0.9;
}
.arch-motif span {
  width: 46px;
  height: 100px;
  border: 5px solid var(--blue-light, #6699C7);
  border-bottom: none;
  border-radius: 46px 46px 0 0;
  opacity: 0.55;
}
.arch-motif span:nth-child(2) { height: 130px; opacity: 0.75; }
.arch-motif span:nth-child(3) { height: 150px; opacity: 1; border-color: var(--navy); }
.arch-motif span:nth-child(4) { height: 130px; opacity: 0.75; }
.arch-motif span:nth-child(5) { height: 100px; opacity: 0.55; }

@media (max-width: 900px) {
  .arch-motif { display: none; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background-color .15s, border-color .15s, transform .05s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
/* Фокус позначається не лише зміною кольору — видима рамка з відступом,
   помітна і на темному, і на світлому фоні кнопки. */
.btn:focus-visible {
  outline: 2.5px solid var(--blue-light);
  outline-offset: 2px;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); }

.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 10.5px 22px; }
.btn-secondary:hover { background: var(--bg-soft); }

.btn-sm { padding: 8px 16px; font-size: 14px; min-height: 40px; }

/* Явний keyboard-focus на будь-якому інтерактивному елементі, не лише кнопках —
   посилання, картки-посилання, пункти меню, поля форм. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.card:focus-visible,
.item:focus-visible {
  outline: 2.5px solid var(--blue-light);
  outline-offset: 2px;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  padding: 64px 0 56px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Розмір H1 керується виключно тут (не inline style="font-size") — інакше
   inline-правило перебиває мобільні медіа-запити нижче й H1 не зменшується
   на вузьких екранах. .h1-hero — великий заголовок Головної; .h1-lg —
   флагманська польська сторінка; звичайний h1 без класу — стандартний
   розмір для решти внутрішніх сторінок. */
h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1.h1-hero { font-size: 58px; line-height: 1.12; }
h1.h1-lg { font-size: 44px; }

.slogan {
  font-style: italic;
  color: var(--blue-light);
  font-size: 17px;
  margin: 0 0 18px;
  font-weight: 600;
}

.lead {
  font-size: 19px;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 56ch;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art { display: flex; align-items: center; justify-content: center; }

/* ---------- Sections ---------- */

section { padding: 56px 0; }
section.tight { padding: 40px 0; }
.section-soft { background: var(--bg-soft); }

h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 600;
}

.section-intro {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 70ch;
  margin: 0 0 32px;
}

h3 { font-family: var(--font-heading); font-size: 24px; color: var(--navy); margin: 0 0 10px; font-weight: 600; }

/* ---------- Cards grid ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.price-table td:nth-child(2) { color: var(--blue); font-weight: 700; white-space: nowrap; }
@media (max-width: 700px) {
  .price-table { display: block; overflow-x: auto; }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow .15s, transform .15s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; }

.card p { color: var(--text-muted); font-size: 15px; margin: 0 0 16px; }

.card-link { font-weight: 700; font-size: 14px; }

/* ---------- Service list (hub pages) ---------- */

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-list a.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--text);
}
.service-list a.item:hover { background: var(--bg-card); text-decoration: none; border-color: var(--blue); }
.service-list a.item .arrow { color: var(--blue); font-weight: 800; }

/* ---------- Bullet list ---------- */

ul.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
ul.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--text);
}
ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -1px;
  color: var(--white);
  background: var(--blue);
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
ul.check-list li strong { color: var(--navy); }

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px 16px;
  position: relative;
  border: 1px solid var(--border);
}
.step-num {
  width: 30px; height: 30px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  margin-bottom: 12px;
}
.step h4 { margin: 0 0 6px; font-size: 15px; color: var(--navy); }
.step p { margin: 0; font-size: 13.5px; color: var(--text-muted); }

/* ---------- FAQ (native details/summary, no JS) ---------- */

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 4px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--blue);
  font-weight: 400;
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 4px 18px; color: var(--text-muted); font-size: 15px; }

/* ---------- Pricing ---------- */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.price-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow-hover); position: relative; }
.price-card.featured::before {
  content: "Популярний вибір";
  position: absolute; top: -13px; left: 26px;
  background: var(--blue); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 0.3px;
}
.price-card h3 { margin-bottom: 4px; }
.price-note { color: var(--text-muted); font-size: 13.5px; margin: 0 0 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.price-card ul li { font-size: 14.5px; padding-left: 22px; position: relative; }
.price-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--blue); }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #C7DBDA; max-width: 60ch; margin: 0 auto 26px; }
.cta-band .btn-primary { background: var(--white); color: var(--navy); }
.cta-band .btn-primary:hover { background: var(--bg-card); }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info dl { margin: 0; }
.contact-info dt { font-weight: 700; color: var(--navy); margin-top: 18px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.4px; }
.contact-info dd { margin: 4px 0 0; font-size: 16px; }

.form-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--white);
}
.form-hint { font-size: 12.5px; color: var(--text-muted); margin-top: 5px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-muted); margin: 18px 0; }
.consent-row input { margin-top: 3px; }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--text-muted); }

/* ---------- Footer ---------- */

footer.site-footer {
  background: #0F1F2B;
  color: #A3BFC0;
  padding: 56px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 { font-family: var(--font-heading); color: var(--white); font-size: 14px; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.footer-col a { display: block; color: #A3BFC0; font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-logo { font-family: var(--font-heading); color: var(--white); font-weight: 600; font-size: 19px; margin-bottom: 10px; }
.footer-slogan { font-size: 13px; font-style: italic; color: #7FA0A0; max-width: 30ch; }
.footer-bottom {
  border-top: 1px solid #223A3C;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #7FA0A0;
}
.footer-bottom a { color: #7FA0A0; }

/* ---------- Cookie consent ---------- */

.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 18px 20px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.consent-banner .consent-text { flex: 1 1 420px; margin: 0; font-size: 14px; color: #E3EBEA; }
.consent-banner .consent-text a { color: var(--white); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-banner .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.consent-banner .btn-secondary:hover { background: rgba(255,255,255,0.1); }

.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,25,30,0.5);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.consent-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-hover);
}
.consent-panel h3 { margin-top: 0; }
.consent-category { padding: 12px 0; border-bottom: 1px solid var(--border); }
.consent-category:last-of-type { border-bottom: none; }
.consent-category-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.consent-category-head label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.consent-toggle-fixed { font-size: 12px; color: var(--text-muted); }
.consent-category p { margin: 0; font-size: 13px; color: var(--text-muted); }
.consent-panel .consent-actions { margin-top: 16px; justify-content: flex-end; }

@media (max-width: 600px) {
  .consent-banner { flex-direction: column; align-items: stretch; }
  .consent-actions { justify-content: stretch; }
  .consent-actions .btn { flex: 1; }
}

/* ---------- Mockup badge ---------- */

.mockup-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #FFB020;
  color: #3A2A00;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 100;
}

/* ---------- Responsive ---------- */

/* Навігація згортається раніше (1050px), ніж сітки/hero (900px) — шести пунктів
   меню з двома dropdown, телефоном і кнопкою вже тісно на типовому планшеті. */
@media (max-width: 1050px) {
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid var(--border);
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a, nav.main-nav button.dropdown-trigger {
    padding: 12px 4px;
    min-height: 44px;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown .dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    margin: 0 0 4px 14px;
    padding: 0;
    min-width: 0;
  }
  .has-dropdown .dropdown a { min-height: 44px; }
  .has-dropdown.open-sub .dropdown { display: block; }
  .has-dropdown.open-sub > a::after,
  .has-dropdown.open-sub > button.dropdown-trigger::after { content: " ▴"; }
  .header-phone { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  /* Some approved comparison blocks use an inline two-column grid. The
     !important override is required so both cards remain fully visible on phones. */
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; }
  .service-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 28px; }
  h1.h1-hero { font-size: 32px; }
  h1.h1-lg { font-size: 30px; }
  h2 { font-size: 26px; }
  .lead { font-size: 17px; }
  .hero-ctas .btn, .hero-ctas a { width: 100%; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .header-actions { gap: 8px; }
  .header-actions .lang-switch { display: flex; }
  .header-actions > .btn { display: none; }
  .cta-band { padding: 32px 20px; margin: 0 16px; }
}

/* ---------- Form states: error, success, locked field ---------- */
.form-error {
  background: #FBEDEC;
  border: 1px solid #D9A8A5;
  color: #7A2A26;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  margin: 0 0 12px;
}
.form-success {
  text-align: center;
  padding: 28px 8px 8px;
  outline: none;
}
.form-success-icon { color: var(--blue); }
.form-success-icon svg { width: 52px; height: 52px; }
.form-success h3 { margin: 10px 0 8px; font-size: 22px; }
.form-success p { margin: 0 0 12px; color: var(--text-muted); }
.form-success .form-success-ref { color: var(--text); font-size: 15px; }
.form-success .form-success-ref strong { letter-spacing: .04em; }
.form-success-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
select:disabled, input:disabled { opacity: .65; background: var(--bg-soft); cursor: not-allowed; }
