/* ═══════════════════════════════════════════════
   DiM Trans Skowera – shared.css
   Wspólne style dla wszystkich podstron
═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:   #00adb5;
  --teal-d: #007f8a;
  --navy:   #1a2b4a;
  --navy-d: #0f1c32;
  --white:  #ffffff;
  --light:  #f4f8fb;
  --muted:  #6b8199;
  --border: #dde8ef;
  --shadow: 0 4px 24px rgba(26,43,74,.10);
  --radius: 12px;
  --trans:  .3s ease;
  --nav-h:  84px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* ════════════ NAV ════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(26,43,74,.12); }

.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; height: var(--nav-h); gap: 12px;
}

.logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  height: var(--nav-h); min-width: 0;
}
.logo img { height: calc(var(--nav-h) - 16px); max-width: 180px; width: auto; object-fit: contain; }
.logo-fallback { display: flex; align-items: center; gap: 10px; }
.logo-fallback-icon {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.logo-fallback-text { line-height: 1.15; }
.logo-fallback-text strong { display: block; font-weight: 800; font-size: 16px; color: var(--navy); white-space: nowrap; }
.logo-fallback-text span  { font-size: 10px; color: var(--teal); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 6px 10px; border-radius: 6px;
  text-decoration: none; font-size: 13px; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase; color: var(--navy);
  transition: background var(--trans), color var(--trans); white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { background: var(--teal); color: #fff; }

.nav-phone {
  display: flex; align-items: center; gap: 7px;
  background: var(--teal); color: #fff;
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 700; white-space: nowrap; flex-shrink: 0;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.nav-phone:hover { background: var(--teal-d); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,173,181,.4); }
.nav-phone i { font-size: 12px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; flex-shrink: 0; margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 8px 16px 16px;
}
.mobile-menu a {
  padding: 13px 4px; font-size: 15px; font-weight: 600;
  text-decoration: none; color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: color var(--trans); display: block;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu a.active { color: var(--teal); }
.mobile-menu .mobile-phone {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px; padding: 13px 16px;
  background: var(--teal); color: #fff; border-radius: 10px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  justify-content: center;
}

/* ════════════ PAGE HERO (podstrony) ════════════ */
.page-hero {
  background: linear-gradient(150deg, var(--navy-d) 0%, var(--navy) 45%, #1a3a5c 100%);
  padding: calc(var(--nav-h) + 40px) 16px 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,.5) 40px, rgba(255,255,255,.5) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,.5) 40px, rgba(255,255,255,.5) 41px);
  pointer-events: none;
}
.page-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,173,181,.15); border: 1px solid rgba(0,173,181,.35);
  color: var(--teal); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
}
.page-hero h1 {
  font-weight: 800; font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15; color: var(--white); margin-bottom: 14px;
}
.page-hero h1 em { color: var(--teal); font-style: normal; }
.page-hero p {
  font-size: 15px; color: rgba(255,255,255,.72);
  font-weight: 300; max-width: 640px;
}
.page-hero-glow {
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,173,181,.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════ SHARED SECTION STYLES ════════════ */
.page-content { padding-top: 0; }
section { padding: 30px 16px; }
.container { max-width: 1180px; margin: 0 auto; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.section-title { font-weight: 800; font-size: clamp(22px, 3.5vw, 36px); color: var(--navy); line-height: 1.2; margin-bottom: 10px; }
.section-sub   { font-size: 15px; color: var(--muted); max-width: 680px; font-weight: 300; }
.divider { width: 44px; height: 4px; background: var(--teal); border-radius: 2px; margin: 12px 0; }

/* ════════════ BUTTONS ════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: all var(--trans); font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-d); border-color: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,173,181,.35); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline-navy:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

/* ════════════ CARDS ════════════ */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 36px; }
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }

.feature-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; background: var(--white);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  opacity: 0; transition: opacity var(--trans);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal); }
.feature-card:hover::before { opacity: 1; }
.feature-card-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,173,181,.12), rgba(0,173,181,.04));
  color: var(--teal); font-size: 22px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.feature-card h3 { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.feature-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-d));
  border-radius: 16px; padding: 40px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-top: 48px;
}
.cta-box-text h3 { font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 6px; }
.cta-box-text p  { font-size: 14px; color: rgba(255,255,255,.6); }
.cta-box .btn { flex-shrink: 0; }

/* Phone box */
.phone-box {
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  border-radius: 14px; padding: 28px 24px; text-align: center; color: #fff;
}
.phone-box i { font-size: 28px; margin-bottom: 8px; opacity: .9; display: block; }
.phone-box p { font-size: 11px; opacity: .85; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.phone-box a {
  display: block; font-weight: 800; font-size: 22px;
  color: #fff; text-decoration: none; margin-bottom: 8px;
  transition: opacity var(--trans);
}
.phone-box a:hover { opacity: .8; }
.phone-box small { font-size: 11px; opacity: .65; }

/* ════════════ ROUTE / ABOUT shared ════════════ */
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 36px; }
.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  border-radius: 18px; padding: 32px 28px; position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(0,173,181,.2); pointer-events: none;
}
.about-big-icon { font-size: 56px; color: var(--teal); margin-bottom: 16px; position: relative; }
.about-visual-title { font-weight: 800; font-size: 24px; color: #fff; line-height: 1.15; margin-bottom: 8px; position: relative; }
.about-visual-sub   { font-size: 13px; color: rgba(255,255,255,.6); position: relative; }

.about-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,173,181,.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.feat-text h4 { font-weight: 700; color: var(--navy); margin-bottom: 3px; font-size: 14px; }
.feat-text p  { font-size: 13px; color: var(--muted); }

/* Route timeline */
.route-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; margin-top: 36px; }
.route-timeline { display: flex; flex-direction: column; }
.rt-stop { display: flex; gap: 16px; position: relative; }
.rt-stop:not(:last-child)::before {
  content: ''; position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--teal), var(--border));
}
.rt-dot {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-bottom: 20px; position: relative; z-index: 1;
}
.rt-dot.start { background: var(--teal); color: #fff; }
.rt-dot.mid   { background: var(--navy); color: #fff; }
.rt-dot.end   { background: linear-gradient(135deg, var(--teal), var(--navy)); color: #fff; }
.rt-info h4 { font-weight: 700; color: var(--navy); margin-bottom: 2px; font-size: 14px; }
.rt-info p  { font-size: 12px; color: var(--muted); }

.route-voivodeships { background: var(--white); border-radius: 14px; border: 1px solid var(--border); padding: 24px; }
.route-voivodeships h4 { font-weight: 700; color: var(--navy); margin-bottom: 14px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.route-voivodeships h4 i { color: var(--teal); }
.voiv-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.voiv-tag { background: rgba(0,173,181,.08); color: var(--teal); border: 1px solid rgba(0,173,181,.2); border-radius: 6px; padding: 5px 11px; font-size: 12px; font-weight: 700; }
.route-info-box { background: var(--light); border-radius: 10px; padding: 16px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.route-info-box strong { color: var(--navy); }

/* Gallery carousel */
.carousel-wrap { margin-top: 36px; position: relative; overflow: hidden; border-radius: 16px; background: var(--light); }
.carousel-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.carousel-slide { min-width: 100%; position: relative; }
.carousel-img { width: 100%; height: 400px; object-fit: contain; object-position: center; display: block; background: var(--light); }
.carousel-placeholder {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.4);
}
.carousel-placeholder i    { font-size: 52px; }
.carousel-placeholder span { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none; cursor: pointer;
  font-size: 15px; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
  transition: background var(--trans), color var(--trans); z-index: 10;
}
.carousel-btn:hover { background: var(--teal); color: #fff; }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  -webkit-tap-highlight-color: transparent;
}
.carousel-dot.active { background: var(--teal); transform: scale(1.4); }

/* Contact cards */
.contact-dark { background: var(--navy); }
.contact-dark .section-label { color: var(--teal); }
.contact-dark .section-title { color: var(--white); }
.contact-dark .section-sub   { color: rgba(255,255,255,.6); }
.contact-dark .divider        { background: var(--teal); }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 22px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  transition: background var(--trans), border-color var(--trans);
}
.contact-card:hover { background: rgba(255,255,255,.09); border-color: rgba(0,173,181,.4); }
.contact-card-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(0,173,181,.15); color: var(--teal); font-size: 17px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h3  { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin: 0; }
.contact-card a.phone { font-weight: 800; font-size: 18px; color: var(--white); text-decoration: none; transition: color var(--trans); line-height: 1.2; }
.contact-card a.phone:hover { color: var(--teal); }
.contact-card .addr { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); line-height: 1.5; }
.contact-card .addr span { display: block; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.4); margin-top: 2px; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 36px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; text-align: left; gap: 12px;
  font-family: 'Open Sans', sans-serif;
  transition: background var(--trans);
}
.faq-question:hover { background: var(--light); }
.faq-question.open  { background: var(--light); }
.faq-q-text { font-size: 15px; font-weight: 700; color: var(--navy); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(0,173,181,.1); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; transition: transform var(--trans); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-answer.open { display: block; }

/* ════════════ FOOTER ════════════ */
footer { background: var(--navy-d); border-top: 1px solid rgba(255,255,255,.07); }
.footer-main {
  max-width: 1180px; margin: 0 auto;
  padding: 36px 16px 28px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px;
}
.footer-logo { font-weight: 800; font-size: 17px; color: var(--white); margin-bottom: 10px; }
.footer-logo span { color: var(--teal); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.85; max-width: 340px; }
.footer-desc strong { color: rgba(255,255,255,.55); font-weight: 600; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 13px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav a { font-size: 12.5px; color: rgba(255,255,255,.42); text-decoration: none; transition: color var(--trans); display: inline-flex; align-items: center; gap: 6px; }
.footer-nav a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--teal); flex-shrink: 0; opacity: .55; transition: opacity var(--trans); }
.footer-nav a:hover { color: var(--white); }
.footer-nav a:hover::before { opacity: 1; }
.footer-phones { display: flex; flex-direction: column; gap: 12px; }
.footer-phone-item { display: flex; flex-direction: column; gap: 2px; }
.footer-phone-item a { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.78); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color var(--trans); }
.footer-phone-item a i { font-size: 11px; color: var(--teal); }
.footer-phone-item a:hover { color: var(--teal); }
.footer-phone-item small { font-size: 11px; color: rgba(255,255,255,.25); padding-left: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 12px 16px; }
.footer-bottom-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 4px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.22); line-height: 1.6; }
.footer-bottom a { color: rgba(255,255,255,.28); text-decoration: none; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--teal); }

/* ════════════ SCROLL REVEAL ════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ════════════ CALL WIDGET ════════════ */
.call-widget { display: none; }

@media (max-width: 900px) {
  .call-widget {
    display: flex; align-items: center;
    position: fixed; bottom: 22px; right: 18px; z-index: 1100;
    flex-direction: row-reverse;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.28));
  }
  .call-widget-btn {
    display: flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
    color: #fff; font-size: 24px; text-decoration: none; flex-shrink: 0;
    border: 3px solid rgba(255,255,255,.4);
    position: relative; -webkit-tap-highlight-color: transparent;
    transition: transform .18s ease;
  }
  .call-widget-btn:active { transform: scale(.9); }
  .call-widget-btn::after {
    content: ''; position: absolute; inset: -7px; border-radius: 50%;
    border: 2px solid rgba(0,173,181,.55);
    animation: cwPulse 2.2s ease-out infinite; pointer-events: none;
  }
  @keyframes cwPulse {
    0%  { transform: scale(1);    opacity: 1; }
    65% { transform: scale(1.45); opacity: 0; }
    100%{ transform: scale(1.45); opacity: 0; }
  }
  .call-widget-label {
    display: flex; align-items: center; gap: 6px;
    background: var(--navy); color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px; font-weight: 700; white-space: nowrap;
    padding: 0 14px 0 16px; height: 42px;
    border-radius: 21px 0 0 21px; letter-spacing: .2px;
    max-width: 0; overflow: hidden; opacity: 0;
    transition: max-width .32s ease, opacity .22s ease;
    pointer-events: none; margin-right: -2px;
  }
  .call-widget-label span { font-size: 11px; color: var(--teal); font-weight: 600; display: block; line-height: 1.1; }
  .call-widget-btn:focus + .call-widget-label,
  .call-widget-btn:focus-visible + .call-widget-label { max-width: 200px; opacity: 1; pointer-events: auto; }
}
@media (max-width: 380px) {
  .call-widget-btn { width: 54px; height: 54px; font-size: 21px; }
  .call-widget { bottom: 16px; right: 14px; }
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .about-grid, .route-grid { grid-template-columns: 1fr; gap: 28px; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card-addr { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  :root { --nav-h: 58px; }
  section { padding: 48px 16px; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-h) + 24px) 16px 36px; }
  .page-hero h1 { font-size: clamp(22px, 7vw, 32px); }
  .section-title { font-size: clamp(20px, 5.5vw, 28px); }
  .btn { width: 100%; justify-content: center; }
  .about-big-icon { font-size: 44px; }
  .about-visual { padding: 24px 20px; }
  .carousel-img, .carousel-placeholder { height: 240px; }
}
@media (max-width: 720px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 16px 20px; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 460px) {
  .footer-main { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card-addr { grid-column: auto; }
}
@media (max-width: 380px) {
  .voiv-tag { font-size: 11px; padding: 4px 9px; }
  .logo-fallback-text strong { font-size: 14px; }
}
@media (hover: none) {
  .btn, .nav-phone, .mobile-menu .mobile-phone { min-height: 44px; }
  .carousel-btn { width: 44px; height: 44px; }
}
