/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KlimaDziok – Shared Design System
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━ TOKENS ━━━ */
:root {
  --navy:        #1E3A8A;
  --navy-d:      #162C6E;
  --navy-l:      #2563EB;
  --sky:         #0EA5E9;
  --orange:      #F97316;
  --orange-d:    #EA6C0A;
  --orange-glow: rgba(249,115,22,.22);
  --white:       #FFFFFF;
  --surface:     #F0F5FF;
  --surface-2:   #E8F0FE;
  --text:        #0F172A;
  --muted:       #64748B;
  --border:      #CBD5E1;
  --border-l:    #E2E8F0;
  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --max: 1140px;
  --r: .6rem;
}

/* ━━━ RESET ━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ━━━ NAV ━━━ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(30,58,138,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: var(--fh);
  font-size: 1.55rem; font-weight: 800;
  letter-spacing: .03em; color: var(--white);
  white-space: nowrap;
}
.nav-logo em { color: #93C5FD; font-style: normal; }
.nav-links {
  display: none;
  list-style: none; gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  font-size: .82rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .18s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active { border-bottom: 2px solid var(--orange); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: .5rem; }
.nav-tel {
  display: flex; align-items: center; gap: .45rem;
  background: var(--orange); color: #fff;
  padding: .48rem 1rem; border-radius: var(--r);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; white-space: nowrap;
  transition: background .18s;
}
.nav-tel:hover { background: var(--orange-d); }
.nav-tel-icon { font-size: 1rem; }
.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 7px;
  background: none; border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r); cursor: pointer; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  background: var(--navy-d);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  padding: .5rem 0 1rem;
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; }
.nav-drawer a {
  display: block; padding: 1rem 1.5rem;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .15s, background .15s;
}
.nav-drawer a:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-drawer li:last-child a { border-bottom: none; }

@media (min-width: 768px) {
  .nav { padding: 0 2rem; height: 68px; }
  .nav-links { display: flex; }
  .nav-logo { font-size: 1.75rem; }
  .nav-tel { padding: .52rem 1.25rem; font-size: .85rem; }
  .nav-burger { display: none; }
  .nav-drawer { display: none !important; }
}

/* ━━━ PAGE HERO (subpages — smaller than home) ━━━ */
.page-hero {
  padding: 6rem 1.25rem 3rem;
  background: linear-gradient(160deg, var(--navy-d) 0%, var(--navy) 60%, #1D4ED8 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,.025) 40px, rgba(255,255,255,.025) 41px
  );
}
.page-hero::after {
  content: '❄';
  position: absolute; right: -3rem; top: 50%; transform: translateY(-50%);
  font-size: clamp(10rem, 30vw, 20rem);
  color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
}
.page-hero .hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: .3rem .85rem; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #BAE6FD; margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 800; line-height: .95; letter-spacing: .01em;
  color: var(--white); margin-bottom: .85rem;
}
.page-hero h1 .hl { color: #93C5FD; }
.page-hero p {
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  color: rgba(255,255,255,.72); line-height: 1.65;
  max-width: 520px; margin-bottom: 1.75rem;
}
.page-hero-cta {
  display: flex; flex-wrap: wrap; gap: .75rem;
}

@media (min-width: 768px) {
  .page-hero { padding: 7rem 2rem 4rem; }
}

/* ━━━ SHARED LAYOUT ━━━ */
.section { padding: 3.5rem 1.25rem; }
.section-alt { background: var(--surface); }
.wrap { max-width: var(--max); margin: 0 auto; }
.sec-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy-l); margin-bottom: .5rem;
}
.sec-h {
  font-family: var(--fh);
  font-size: clamp(1.9rem, 5.5vw, 2.8rem);
  font-weight: 800; line-height: .95;
  letter-spacing: .01em; margin-bottom: .75rem;
}
.sec-sub {
  font-size: .95rem; color: var(--muted);
  line-height: 1.7; max-width: 560px;
}
.sec-header { margin-bottom: 2.25rem; }

@media (min-width: 768px) {
  .section { padding: 5rem 2rem; }
}

/* ━━━ BUTTONS ━━━ */
.btn-phone {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--orange); color: #fff;
  padding: 1rem 1.5rem; border-radius: var(--r);
  font-family: var(--fh); font-size: 1.25rem; font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 6px 28px var(--orange-glow);
  transition: background .18s, transform .18s, box-shadow .18s;
}
.btn-phone:hover { background: var(--orange-d); transform: translateY(-2px); }
.btn-email {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); padding: .75rem 1.5rem; border-radius: var(--r);
  font-size: .9rem; font-weight: 500; transition: background .18s;
}
.btn-email:hover { background: rgba(255,255,255,.16); }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--orange); color: #fff;
  padding: 1rem 2.25rem; border-radius: var(--r);
  font-family: var(--fh); font-size: 1.2rem; font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 6px 28px var(--orange-glow);
  transition: background .18s, transform .18s;
}
.btn-cta-white:hover { background: var(--orange-d); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--navy); color: var(--navy);
  padding: .75rem 1.5rem; border-radius: var(--r);
  font-family: var(--fh); font-size: 1.1rem; font-weight: 700;
  letter-spacing: .03em; transition: background .18s, color .18s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ━━━ PILLS STRIP ━━━ */
.pills-strip {
  background: var(--white); border-bottom: 1px solid var(--border-l);
  padding: .85rem 1.25rem;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.pills-strip::-webkit-scrollbar { display: none; }
.pills-inner { display: flex; gap: .6rem; width: max-content; }
.pill {
  display: flex; align-items: center; gap: .4rem;
  background: var(--surface); border: 1px solid var(--border-l);
  padding: .38rem 1rem; border-radius: 100px;
  font-size: .82rem; font-weight: 500; color: var(--navy);
  white-space: nowrap; transition: all .18s;
}
.pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ━━━ SERVICE CARDS ━━━ */
.svc-grid { display: grid; gap: 1rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: var(--r); padding: 1.5rem;
  transition: border-color .22s, box-shadow .22s, transform .22s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.svc-card:hover { border-color: var(--navy-l); box-shadow: 0 8px 32px rgba(30,58,138,.1); transform: translateY(-3px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 48px; height: 48px; border-radius: .5rem;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.svc-card h3 { font-family: var(--fh); font-size: 1.35rem; font-weight: 700; letter-spacing: .01em; margin-bottom: .5rem; }
.svc-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.1rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--navy-l); transition: gap .2s;
}
.svc-link:hover { gap: .6rem; }

@media (min-width: 640px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

/* ━━━ WHY US ━━━ */
.why-layout { display: grid; gap: 2.5rem; }
.benefit-list { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit { display: flex; gap: .9rem; align-items: flex-start; }
.ben-ico {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: .5rem;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
}
.benefit h4 { font-size: .95rem; font-weight: 700; margin-bottom: .18rem; }
.benefit p { font-size: .86rem; color: var(--muted); line-height: 1.6; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.ws-card {
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: var(--r); padding: 1.25rem; transition: border-color .2s;
}
.ws-card:hover { border-color: var(--navy-l); }
.ws-n { font-family: var(--fh); font-size: 2.4rem; font-weight: 800; line-height: 1; color: var(--navy); margin-bottom: .3rem; }
.ws-l { font-size: .8rem; color: var(--muted); font-weight: 500; line-height: 1.35; }

@media (min-width: 768px) { .why-layout { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ━━━ PROCESS ━━━ */
.process-list { display: flex; flex-direction: column; gap: 0; margin-top: 2.25rem; }
.process-step { display: flex; gap: 1rem; padding-bottom: 1.75rem; position: relative; }
.process-step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 19px; top: 42px; bottom: 0; width: 2px; background: var(--border-l);
}
.step-circle {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--fh); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step-body { padding-top: .4rem; }
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: .22rem; }
.step-desc { font-size: .86rem; color: var(--muted); line-height: 1.6; }

@media (min-width: 768px) {
  .process-list { flex-direction: row; align-items: flex-start; }
  .process-step { flex-direction: column; align-items: center; text-align: center; flex: 1; padding-bottom: 0; padding-right: 1rem; }
  .process-step:not(:last-child)::after { left: calc(50% + 22px); top: 19px; right: 0; width: auto; height: 2px; bottom: auto; }
  .step-body { padding-top: .75rem; }
}

/* ━━━ GALLERY ━━━ */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2.25rem; }
.gallery-item {
  background: var(--surface-2); border-radius: var(--r);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.5) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-placeholder { font-size: .78rem; color: var(--muted); text-align: center; line-height: 1.5; }
.gallery-placeholder-ico { font-size: 2rem; margin-bottom: .4rem; opacity: .4; }

@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* ━━━ LIGHTBOX ━━━ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,15,30,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: .75rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  transform: scale(.92); opacity: 0;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .35s ease;
  object-fit: contain;
}
.lightbox.active .lightbox-img { transform: scale(1); opacity: 1; }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2;
}
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: rgba(15,23,42,.7); border: 1px solid rgba(255,255,255,.1);
  padding: .5rem 1.25rem; border-radius: 100px;
  font-size: .85rem; color: rgba(255,255,255,.85); white-space: nowrap;
  backdrop-filter: blur(8px);
}
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-caption { font-size: .78rem; padding: .4rem 1rem; }
}

/* ━━━ LOCATIONS ━━━ */
.locs { text-align: center; }
.locs .sec-sub { margin: 0 auto .5rem; }
.locs-grid { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-top: 2rem; }
.loc-pill {
  background: var(--white); border: 1px solid var(--border);
  padding: .42rem 1.1rem; border-radius: 100px;
  font-size: .85rem; font-weight: 500; color: var(--muted);
  transition: all .18s; cursor: default;
}
.loc-pill:hover { border-color: var(--navy); color: var(--navy); background: var(--surface); }
.loc-pill.primary { border-color: var(--navy); color: var(--navy); background: var(--surface); font-weight: 600; }

/* ━━━ CTA STRIP ━━━ */
.cta-strip {
  background: var(--navy); padding: 3.5rem 1.25rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before { content: '❄'; position: absolute; left: -3rem; top: 50%; transform: translateY(-50%); font-size: 16rem; color: rgba(255,255,255,.04); line-height: 1; pointer-events: none; }
.cta-strip::after { content: '❄'; position: absolute; right: -2rem; bottom: -3rem; font-size: 12rem; color: rgba(255,255,255,.04); line-height: 1; pointer-events: none; }
.cta-strip .wrap { position: relative; }
.cta-strip h2 { font-family: var(--fh); font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; line-height: .95; color: var(--white); margin-bottom: .75rem; }
.cta-strip p { font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; line-height: 1.6; }

@media (min-width: 768px) { .cta-strip { padding: 5rem 2rem; } }

/* ━━━ FOOTER ━━━ */
footer { background: var(--navy-d); color: rgba(255,255,255,.75); padding: 2.5rem 1.25rem; }
.footer-top { max-width: var(--max); margin: 0 auto; display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: .03em; margin-bottom: .6rem; }
.footer-logo em { color: #93C5FD; font-style: normal; }
.footer-desc { font-size: .85rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-family: var(--fh); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #93C5FD; margin-bottom: .85rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .85rem; transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; flex-direction: column; gap: .12rem; margin-bottom: .65rem; }
.footer-contact-item .label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #93C5FD; }
.footer-contact-item .value { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); }
.footer-contact-item a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); transition: color .18s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; align-items: center; }
.footer-copy { font-size: .78rem; }
.footer-links-bottom { display: flex; gap: 1.25rem; list-style: none; }
.footer-links-bottom a { font-size: .78rem; transition: color .18s; }
.footer-links-bottom a:hover { color: #fff; }

@media (min-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } footer { padding: 3.5rem 2rem; } }

/* ━━━ CHECK LIST ━━━ */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .92rem; line-height: 1.55;
}
.check-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: .75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: .15rem;
}

/* Feature check-list: term + description separated */
.check-list-features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: auto auto;
  gap: .05rem .75rem;
  align-items: start;
}
.check-list-features li::before {
  grid-area: 1 / 1 / 3 / 2;
  margin-top: .2rem;
}
.check-list-features li strong {
  grid-area: 1 / 2 / 2 / 3;
  font-weight: 700; color: var(--navy);
}
.check-list-features li span {
  grid-area: 2 / 2 / 3 / 3;
  font-size: .86rem; color: var(--muted); line-height: 1.5;
}

/* ━━━ FAQ ━━━ */
.faq-list { display: flex; flex-direction: column; gap: .5rem; margin-top: 2rem; }
.faq-item { border: 1px solid var(--border-l); border-radius: var(--r); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 1rem 1.25rem;
  background: var(--white); border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--fb); font-size: .95rem; font-weight: 600; color: var(--text);
  transition: background .18s;
}
.faq-q:hover { background: var(--surface); }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--navy-l); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q { background: var(--surface); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.25rem 1rem; font-size: .88rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ━━━ INFO CARDS (2-col layout) ━━━ */
.info-grid { display: grid; gap: 1rem; }
.info-card {
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: var(--r); padding: 1.5rem;
}
.info-card-ico { font-size: 2rem; margin-bottom: .75rem; }
.info-card h3 { font-family: var(--fh); font-size: 1.25rem; font-weight: 700; margin-bottom: .4rem; }
.info-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

@media (min-width: 640px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }

/* ━━━ CONTACT FORM ━━━ */
.contact-layout { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; } }

.contact-info-item { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-ico { width: 44px; height: 44px; border-radius: .5rem; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-l); margin-bottom: .2rem; }
.contact-info-item a, .contact-info-item p { font-size: .95rem; font-weight: 500; color: var(--text); transition: color .18s; }
.contact-info-item a:hover { color: var(--navy-l); }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .35rem; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--r);
  font-family: var(--fb); font-size: .92rem; color: var(--text);
  background: var(--white); transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--navy-l); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 1rem; border: none; cursor: pointer;
  background: var(--orange); color: #fff; border-radius: var(--r);
  font-family: var(--fh); font-size: 1.15rem; font-weight: 700;
  letter-spacing: .04em; transition: background .18s, transform .18s;
}
.btn-submit:hover { background: var(--orange-d); transform: translateY(-2px); }

/* ━━━ MAP ━━━ */
.map-placeholder {
  background: var(--surface-2); border-radius: var(--r);
  height: 280px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem; color: var(--muted);
  font-size: .88rem; border: 1px solid var(--border-l);
}
.map-placeholder-ico { font-size: 2.5rem; opacity: .5; }
.map-embed { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border-l); }
.map-embed iframe { display: block; }

/* ━━━ CROSS-LINKS ━━━ */
.cross-links { background: var(--surface); padding: 3rem 1.25rem; }
.cross-links h2 { font-family: var(--fh); font-size: 1.4rem; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 1.5rem; }
.cross-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.cross-link-item {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--border-l); border-radius: var(--r);
  padding: 1.25rem 1rem; text-align: center; color: var(--navy);
  font-size: .9rem; font-weight: 600; text-decoration: none;
  transition: box-shadow .18s, border-color .18s;
}
.cross-link-item:hover { border-color: var(--navy); box-shadow: 0 2px 8px rgba(30,58,138,.12); }
.cross-link-item .material-icons { font-size: 1.6rem; color: var(--orange); }
@media (min-width: 600px) { .cross-links-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cross-links-grid { grid-template-columns: repeat(6, 1fr); } .cross-links { padding: 3.5rem 2rem; } }

/* ━━━ SCROLL REVEAL ━━━ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ━━━ MATERIAL ICONS ━━━ */
.material-icons { font-size: inherit; line-height: 1; vertical-align: middle; user-select: none; }
.svc-ico .material-icons { font-size: 1.6rem; }
.ben-ico .material-icons { font-size: 1.2rem; }
.contact-ico .material-icons { font-size: 1.5rem; }
.nav-tel-icon .material-icons { font-size: 1.1rem; }
.real-img-placeholder .material-icons { font-size: 2.5rem; opacity: .4; display: block; margin-bottom: .4rem; }
.gallery-placeholder .material-icons { font-size: 2rem; display: block; margin-bottom: .4rem; opacity: .4; }
.map-placeholder .material-icons { font-size: 2.5rem; opacity: .5; }
.info-card-ico .material-icons { font-size: 2rem; }
.step-circle .material-icons { font-size: 1.1rem; }
.page-hero .hero-badge .material-icons { font-size: .85rem; }
