/* ==========================================================================
   ZENO TERMO HIDRAULIKA — Design System
   Brand: cyan (uji / ftohja) + flakë e kuqe (nxemja), mbi bazë navy
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --brand:        #00B4D8;
  --brand-600:    #0098BC;
  --brand-700:    #007C9B;
  --brand-soft:   #E4F7FB;
  --flame:        #EF3B24;
  --flame-600:    #D62A14;
  --flame-soft:   #FDECE9;

  /* Neutrals */
  --ink:          #06182A;
  --ink-2:        #0B2438;
  --ink-3:        #12354F;
  --text:         #46596D;
  --text-soft:    #74889C;
  --line:         #E3EBF3;
  --line-2:       #F0F5FA;
  --surface:      #FFFFFF;
  --surface-2:    #F5F9FC;
  --surface-3:    #EBF3F9;

  /* Effects */
  --shadow-sm:  0 1px 2px rgba(6,24,42,.06), 0 2px 8px rgba(6,24,42,.05);
  --shadow-md:  0 4px 12px rgba(6,24,42,.06), 0 12px 32px rgba(6,24,42,.08);
  --shadow-lg:  0 8px 24px rgba(6,24,42,.08), 0 32px 64px rgba(6,24,42,.12);
  --shadow-brand: 0 8px 24px rgba(0,180,216,.28);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease: cubic-bezier(.22,1,.36,1);
  --container: 1200px;
  --header-h: 78px;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 1.35rem + 3.6vw, 4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 1.25rem + 2.3vw, 3rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); }
h4 { font-size: 1.08rem; letter-spacing: -.015em; }

::selection { background: var(--brand); color: #fff; }

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

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm); transition: top .2s;
}
.skip-link:focus { top: 0; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-wide { max-width: 1360px; }

.section { padding: clamp(64px, 8vw, 112px) 0; }
/* A page hero already carries its own breathing room below it */
.page-hero + .section { padding-top: clamp(44px, 5vw, 68px); }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-soft { background: var(--surface-2); }
.section-dark { background: var(--ink); color: #A9BED2; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }
.section-dark .section-head p { color: #93AABF; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--flame), var(--brand));
}
.section-head.center .eyebrow::after {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--flame));
}
.section-dark .eyebrow { color: var(--brand); }

.grad-text {
  background: linear-gradient(100deg, var(--brand-600) 0%, var(--flame) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Brighter range so it stays legible on the dark navy surfaces */
.hero .grad-text, .page-hero .grad-text, .cta-band .grad-text, .section-dark .grad-text {
  background: linear-gradient(100deg, #2ED3F2 0%, #8BE8FA 40%, #FF8264 100%);
  -webkit-background-clip: text; background-clip: text;
}

.icon { width: 24px; height: 24px; flex: none; stroke-width: 1.9; }
.icon-sm { width: 18px; height: 18px; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
  border: 1px solid transparent; border-radius: 100px;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 19px; height: 19px; }

.btn-primary {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-600) 100%);
  color: #fff; box-shadow: var(--shadow-brand);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(0,180,216,.42); }

.btn-flame {
  background: linear-gradient(120deg, var(--flame) 0%, var(--flame-600) 100%);
  color: #fff; box-shadow: 0 8px 24px rgba(239,59,36,.28);
}
.btn-flame:hover { box-shadow: 0 12px 30px rgba(239,59,36,.4); }

.btn-outline { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-700); box-shadow: var(--shadow-sm); }

.btn-glass {
  border-color: rgba(255,255,255,.24); color: #fff;
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); }

.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .93rem; color: var(--brand-700);
}
.link-arrow .icon { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(5px); }

/* ---------- 5. Header ---------- */
/* The header floats over the hero so the dark gradient runs unbroken behind it,
   then turns solid white once the page scrolls onto the light sections. */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s var(--ease);
}
.site-header.is-stuck {
  background: #fff;
  border-bottom-color: var(--line);
  box-shadow: 0 4px 22px rgba(6,24,42,.07);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--header-h);
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 46px; width: auto; }
/* Two logo files: white wordmark over the hero, black wordmark over white */
.brand .logo-dark { display: none; }
.site-header.is-stuck .brand .logo-light { display: none; }
.site-header.is-stuck .brand .logo-dark { display: block; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; display: block;
  padding: 10px 16px; border-radius: 100px;
  font-size: .93rem; font-weight: 700; color: #DCE9F4;
  transition: color .25s, background .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 3px;
  width: 0; height: 3px; border-radius: 3px; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--brand), var(--flame));
  transition: width .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a.is-active::after { width: 22px; }
.nav a.is-active { color: var(--brand); }
.site-header.is-stuck .nav a { color: var(--ink); }
.site-header.is-stuck .nav a:hover,
.site-header.is-stuck .nav a.is-active { color: var(--brand-700); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 11px; }
.header-phone .ph-icon {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-600));
  box-shadow: var(--shadow-brand);
}
.header-phone span { display: block; font-size: .72rem; color: #8FA9C0; line-height: 1.3; }
.header-phone strong { display: block; font-size: .96rem; color: #fff; letter-spacing: -.01em; }
.site-header.is-stuck .header-phone span { color: var(--text-soft); }
.site-header.is-stuck .header-phone strong { color: var(--ink); }

.nav-toggle {
  display: none; place-items: center;
  width: 46px; height: 46px; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  transition: background .3s, border-color .3s;
}
.site-header.is-stuck .nav-toggle { background: var(--ink); border-color: transparent; }

/* Compact call button — replaces the wide CTA on narrow phones */
.btn-call {
  display: none; place-items: center;
  width: 46px; height: 46px; border-radius: 12px; color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-600));
  box-shadow: var(--shadow-brand);
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 200;
  width: min(340px, 86vw); background: var(--ink); color: #fff;
  padding: 26px 26px 40px;
  transform: translateX(102%); transition: transform .4s var(--ease);
  overflow-y: auto; display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.drawer-top img { height: 40px; width: auto; }
.drawer-close {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; border: 1px solid rgba(255,255,255,.18);
  background: transparent; color: #fff; cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 30px; }
.drawer-nav a {
  padding: 15px 16px; border-radius: 12px;
  font-size: 1.02rem; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s, padding-left .2s;
}
.drawer-nav a:hover, .drawer-nav a.is-active { background: rgba(0,180,216,.16); color: var(--brand); padding-left: 22px; }
.drawer .btn + .btn { margin-top: 10px; }
.drawer-info { margin-top: auto; padding-top: 34px; display: grid; gap: 14px; font-size: .9rem; color: #A9BED2; }
.drawer-info li { display: flex; gap: 11px; }
.drawer-info .icon { color: var(--brand); width: 17px; height: 17px; margin-top: 4px; }

.backdrop {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(6,24,42,.55); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  /* the header is fixed and overlays this section */
  padding: calc(var(--header-h) + clamp(44px, 5vw, 80px)) 0 clamp(90px, 10vw, 140px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 70% at 78% 12%, rgba(0,180,216,.26) 0%, transparent 62%),
    radial-gradient(48% 58% at 8% 88%, rgba(239,59,36,.20) 0%, transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 72px); align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px; margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 100px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(8px);
  font-size: .82rem; font-weight: 600; color: #CFE0EE;
}
.hero-badge b {
  padding: 4px 11px; border-radius: 100px; font-size: .72rem;
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: linear-gradient(120deg, var(--flame), var(--brand)); color: #fff;
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; }
.hero-lead {
  margin-top: 24px; max-width: 560px;
  font-size: clamp(1.02rem, .98rem + .3vw, 1.16rem);
  color: #A9C0D4; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 38px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-points li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 600; color: #C3D6E6;
}
.hero-points .icon { width: 19px; height: 19px; color: var(--brand); }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 80px rgba(0,0,0,.45);
  aspect-ratio: 4 / 4.3;
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,24,42,.55) 100%);
}
.float-card {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 13px;
  padding: 15px 20px; border-radius: 18px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
.float-card .fc-icon {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 13px; color: #fff;
}
.float-card.fc-1 { left: -28px; top: 12%; }
.float-card.fc-1 .fc-icon { background: linear-gradient(130deg, var(--flame), var(--flame-600)); }
.float-card.fc-2 { right: -22px; bottom: 12%; animation-delay: -2.5s; }
.float-card.fc-2 .fc-icon { background: linear-gradient(130deg, var(--brand), var(--brand-600)); }
.float-card strong { display: block; font-size: 1.15rem; color: var(--ink); line-height: 1.2; letter-spacing: -.02em; }
.float-card span { display: block; font-size: .78rem; color: var(--text-soft); font-weight: 600; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- 8. Trust strip (overlaps hero) ---------- */
.trust {
  position: relative; z-index: 5;
  margin-top: clamp(-70px, -6vw, -50px);
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 15px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  transition: background .3s;
}
.trust-item:last-child { border-right: 0; }
.trust-item:hover { background: var(--surface-2); }
.trust-item .icon-badge {
  display: grid; place-items: center; width: 50px; height: 50px; flex: none;
  border-radius: 15px; background: var(--brand-soft); color: var(--brand-700);
}
.trust-item:nth-child(2) .icon-badge,
.trust-item:nth-child(4) .icon-badge { background: var(--flame-soft); color: var(--flame-600); }
.trust-item h4 { margin-bottom: 2px; }
.trust-item p { font-size: .85rem; color: var(--text-soft); line-height: 1.5; }

/* ---------- 8. Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card-service {
  position: relative; overflow: hidden;
  padding: 36px 32px 34px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card-service::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--flame));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.card-service:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-service:hover::before { transform: scaleX(1); }
.card-service .cs-icon {
  display: grid; place-items: center; width: 62px; height: 62px;
  margin-bottom: 26px; border-radius: 19px;
  background: linear-gradient(140deg, var(--brand-soft), #fff);
  color: var(--brand-700); border: 1px solid var(--line);
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.card-service .cs-icon .icon { width: 29px; height: 29px; }
.card-service:hover .cs-icon {
  background: linear-gradient(140deg, var(--brand), var(--brand-600));
  color: #fff; border-color: transparent; transform: rotate(-6deg) scale(1.06);
}
.card-service.is-warm .cs-icon { background: linear-gradient(140deg, var(--flame-soft), #fff); color: var(--flame-600); }
.card-service.is-warm:hover .cs-icon { background: linear-gradient(140deg, var(--flame), var(--flame-600)); color: #fff; }
.card-service h3 { margin-bottom: 12px; }
.card-service p { font-size: .95rem; margin-bottom: 22px; }
.cs-list { display: grid; gap: 9px; margin-bottom: 26px; }
.cs-list li { display: flex; gap: 10px; font-size: .89rem; color: var(--text); }
.cs-list .icon { width: 17px; height: 17px; color: var(--brand); margin-top: 4px; }
.card-service.is-warm .cs-list .icon { color: var(--flame); }
/* Compact variant used for the service quick-nav */
.card-mini { display: block; padding: 26px 28px; }
.card-mini .cs-icon { width: 52px; height: 52px; margin-bottom: 18px; border-radius: 16px; }
.card-mini .cs-icon .icon { width: 25px; height: 25px; }
.card-mini h3 { font-size: 1.15rem; margin-bottom: 6px; }
.card-mini p { margin-bottom: 0; font-size: .9rem; }

/* Trust item rendered as a standalone card (not inside the strip) */
.trust-item.is-card {
  border-right: 0; border-radius: var(--r-lg);
  background: #fff; box-shadow: var(--shadow-sm);
}

.cs-num {
  position: absolute; right: 24px; top: 20px;
  font-size: 3.4rem; font-weight: 800; line-height: 1;
  color: var(--surface-2); letter-spacing: -.05em; z-index: 0;
  transition: color .4s;
}
.card-service:hover .cs-num { color: var(--brand-soft); }
.card-service > * { position: relative; z-index: 1; }

/* ---------- 10. Feature (split image + content) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 76px); align-items: center;
}
.split.reverse .split-media { order: 2; }

.split-media { position: relative; }
.media-stack { position: relative; }
.media-main {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3.3;
}
.media-main img { width: 100%; height: 100%; object-fit: cover; }
/* Circular inset photo — no frame; drop-shadow follows the round silhouette
   instead of drawing a box around it. */
.media-sub {
  position: absolute; right: -40px; bottom: -46px;
  width: 44%; aspect-ratio: 1;
  filter: drop-shadow(0 16px 30px rgba(6,24,42,.26));
}
.media-sub img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
}
.media-tag {
  position: absolute; left: -24px; bottom: 34px;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; border-radius: 18px;
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  color: #fff; box-shadow: var(--shadow-lg);
}
.media-tag .icon { color: var(--brand); width: 30px; height: 30px; }
.media-tag strong { display: block; font-size: 1.6rem; line-height: 1; letter-spacing: -.03em; }
.media-tag span { font-size: .78rem; color: #A9BED2; font-weight: 600; }

.split-body h2 + p, .split-body p + p { margin-top: 18px; }

/* ---- Interactive cutaway (central-vacuum diagram) ---- */
/* Deliberately no 3D transform anywhere in here. A rotated/scaled layer is
   rasterised once and then resampled, which softens the hotspot numbers and
   the tooltip text. Sharp text wins over the tilt effect. */
.vac { position: relative; }
.vac-tilt { position: relative; }
.vac-stage {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); background: #fff;
  box-shadow: var(--shadow-lg);
}
.vac-stage img { width: 100%; height: auto; display: block; }

/* animated suction pulse tracing the pipe run drawn in the illustration */
.vac-flow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.vac-path {
  fill: none; stroke: #22D3EE; stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: 22 180;
  filter: drop-shadow(0 0 7px rgba(34,211,238,.95));
  animation: vac-flow 2.2s linear infinite;
}
@keyframes vac-flow {
  from { stroke-dashoffset: 202; }
  to   { stroke-dashoffset: 0; }
}

/* hotspots live outside .vac-stage so their tooltips are never clipped */
.vac-dots { position: absolute; inset: 0; pointer-events: none; }
/* Centred with integer margins rather than translate(-50%,-50%) so the digit
   never lands on a half pixel. */
.vac-dot {
  position: absolute; margin: -15px 0 0 -15px;
  width: 30px; height: 30px; padding: 0; cursor: pointer;
  border: 0; border-radius: 50%; pointer-events: auto;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: #fff; font-size: 13px; font-weight: 800; line-height: 30px;
  box-shadow: 0 3px 12px rgba(6,24,42,.35), 0 0 0 4px rgba(255,255,255,.85);
  transition: background .3s, box-shadow .3s;
}
/* Ping expands a box-shadow instead of scaling — a transform animation on the
   pseudo-element would promote the button to a cached layer and blur the digit. */
.vac-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: vac-ping 2.2s ease-out infinite;
}
.vac-dot:nth-of-type(2)::after { animation-delay: .35s; }
.vac-dot:nth-of-type(3)::after { animation-delay: .7s; }
.vac-dot:nth-of-type(4)::after { animation-delay: 1.05s; }
@keyframes vac-ping {
  0%   { box-shadow: 0 0 0 0 rgba(0,180,216,.55); }
  70%  { box-shadow: 0 0 0 15px rgba(0,180,216,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,216,0); }
}
/* Grow via the ring, not a scale() — scaling the button would resample the
   number and the tooltip text inside it. */
.vac-dot:hover, .vac-dot:focus-visible, .vac-dot.is-active {
  background: linear-gradient(135deg, var(--flame), var(--flame-600));
  box-shadow: 0 4px 16px rgba(239,59,36,.45), 0 0 0 6px rgba(255,255,255,.95);
}
.vac-dot:hover::after, .vac-dot.is-active::after { animation: none; box-shadow: none; }

/* Centred with an integer margin instead of translateX(-50%). Fades only —
   it must not shift position, or the text visibly slides as it appears. */
.vac-tip {
  position: absolute; left: 50%; margin-left: -109px; bottom: calc(100% + 14px);
  width: 218px;
  padding: 14px 16px; border-radius: 14px;
  background: var(--ink); color: #A9C0D4;
  font-size: 13px; font-weight: 500; line-height: 1.55; text-align: left;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, visibility .22s;
}
.vac-tip strong { display: block; margin-bottom: 4px; color: #fff; font-size: 14px; }
.vac-tip::after {
  content: ""; position: absolute; left: 50%; top: 100%;
  width: 12px; height: 12px; margin-left: -6px; margin-top: -6px;
  background: var(--ink); transform: rotate(45deg); border-radius: 2px;
}
.vac-dot:hover .vac-tip,
.vac-dot:focus-visible .vac-tip,
.vac-dot.is-active .vac-tip {
  opacity: 1; visibility: visible;
}

.vac-hint {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 22px; font-size: .85rem; font-weight: 600; color: var(--text-soft);
}
.vac-hint .icon { width: 16px; height: 16px; color: var(--brand); }
.section-dark .vac-hint { color: #8FA9C0; }

/* Desktop uses floating tooltips; the panel is the phone equivalent */
.vac-panel { display: none; }

/* On a phone the illustration is small, so a floating tooltip would cover the
   very thing it describes. Tapping a number fills a panel underneath instead. */
@media (max-width: 900px) {
  .vac-tip { display: none; }
  .vac-hint { display: none; }
  .vac-panel {
    display: block; margin-top: 14px;
    padding: 15px 17px; border-radius: 16px;
    background: var(--ink); color: #A9C0D4;
    font-size: 13.5px; line-height: 1.55;
  }
  .vac-panel strong { display: block; margin-bottom: 3px; color: #fff; font-size: 14.5px; }
  .vac-panel.is-empty strong { color: var(--brand); }
  /* 44px tap target without moving the visible dot */
  .vac-dot::before { content: ""; position: absolute; inset: -9px; border-radius: 50%; }
}

@media (max-width: 640px) {
  .vac-dot { width: 28px; height: 28px; margin: -14px 0 0 -14px; font-size: 13px; line-height: 28px; }
  .vac-stage { border-radius: var(--r-lg); }
}
@media (prefers-reduced-motion: reduce) {
  .vac-path, .vac-dot::after { animation: none; }
  .vac-path { stroke-dasharray: none; opacity: .5; }
}

.check-list { display: grid; gap: 16px; margin: 30px 0; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .ck {
  display: grid; place-items: center; width: 26px; height: 26px; flex: none;
  border-radius: 50%; background: var(--brand-soft); color: var(--brand-700); margin-top: 2px;
}
.check-list .ck .icon { width: 15px; height: 15px; stroke-width: 3; }
.check-list strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 3px; }
.check-list p { font-size: .92rem; }
.section-dark .check-list .ck { background: rgba(0,180,216,.18); color: var(--brand); }
.section-dark .check-list strong { color: #fff; }
.section-dark .check-list p { color: #93AABF; }

/* ---------- 10. Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat { text-align: center; padding: 12px; }
.stat strong {
  display: block; font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(120deg, var(--brand), #7FE3F5);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { display: block; margin-top: 10px; font-size: .88rem; font-weight: 600; color: #93AABF; }
.stats-light .stat strong { background: linear-gradient(120deg, var(--brand-700), var(--flame)); -webkit-background-clip: text; background-clip: text; }
.stats-light .stat span { color: var(--text-soft); }

/* ---------- 11. Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding: 34px 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-n {
  display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 22px;
  border-radius: 16px; font-size: 1.15rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  box-shadow: var(--shadow-sm);
}
.step:nth-child(even) .step-n { background: linear-gradient(135deg, var(--brand), var(--brand-600)); }
.step h4 { margin-bottom: 10px; font-size: 1.12rem; }
.step p { font-size: .92rem; }
.step::after {
  content: ""; position: absolute; right: -16px; top: 56px;
  width: 20px; height: 2px; background: var(--line);
}
.step:last-child::after { display: none; }

/* ---------- 12. Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  aspect-ratio: 1/1; box-shadow: var(--shadow-sm);
}
.gal-item.is-wide { grid-column: span 2; aspect-ratio: 2/1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 24px 22px;
  /* strong enough that the small label stays readable over light photos */
  background: linear-gradient(180deg, transparent, rgba(6,24,42,.72) 38%, rgba(6,24,42,.96));
  color: #fff; font-weight: 700; font-size: .98rem;
  text-shadow: 0 1px 3px rgba(6,24,42,.6);
  transform: translateY(8px); opacity: .95; transition: transform .4s var(--ease);
}
.gal-item figcaption small { display: block; font-size: .78rem; font-weight: 700; color: #62DEF5; margin-bottom: 3px; }
.gal-item:hover figcaption { transform: none; }

/* ---------- 13. Testimonials ---------- */
.quote-card {
  position: relative; padding: 36px 32px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute; right: 28px; top: 18px;
  font-size: 4.4rem; line-height: 1; font-weight: 800;
  color: var(--surface-3); font-family: Georgia, serif;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; color: #FFB020; }
.stars .icon { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.quote-card blockquote { font-size: .98rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; }
.quote-who { display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid var(--line); }
.avatar {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 50%; font-weight: 800; font-size: 1rem; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-700));
}
.quote-card:nth-child(3n+2) .avatar { background: linear-gradient(135deg, var(--flame), var(--flame-600)); }
.quote-who strong { display: block; color: var(--ink); font-size: .95rem; }
.quote-who span { font-size: .82rem; color: var(--text-soft); }

/* ---- Swipeable slider (native scroll-snap + buttons) ---- */
.slider { position: relative; }
.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 52px) / 3);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* vertical room so the cards' hover shadow isn't clipped by the scroll box.
     Horizontal padding must stay 0, or snap points sit at that offset and
     scrollLeft never reaches a true 0. */
  padding: 10px 0 18px;
  margin: -10px 0 -18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { scroll-snap-align: start; }
.slider-track .quote-card { height: 100%; display: flex; flex-direction: column; }
.slider-track .quote-card blockquote { flex: 1; }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 36px;
}
.slider-btn {
  display: grid; place-items: center;
  width: 48px; height: 48px; flex: none;
  border-radius: 50%; cursor: pointer;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
  transition: background .25s, color .25s, border-color .25s,
              transform .25s var(--ease), box-shadow .25s;
}
.slider-btn:hover:not(:disabled) {
  background: var(--brand); color: #fff; border-color: transparent;
  box-shadow: var(--shadow-brand); transform: translateY(-2px);
}
.slider-btn:disabled { opacity: .35; cursor: default; }
.slider-btn.is-prev .icon { transform: scaleX(-1); }

.slider-dots { display: flex; align-items: center; gap: 9px; }
.slider-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; cursor: pointer;
  border-radius: 100px; background: var(--surface-3);
  transition: width .3s var(--ease), background .3s;
}
.slider-dots button.is-active { width: 30px; background: linear-gradient(90deg, var(--brand), var(--flame)); }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.is-open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; padding: 22px 26px; text-align: left; cursor: pointer;
  background: none; border: 0; font-size: 1.02rem; font-weight: 700; color: var(--ink);
}
.faq-q .icon { color: var(--brand-700); transition: transform .35s var(--ease); }
.faq-item.is-open .faq-q .icon { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 26px 24px; font-size: .95rem; }

/* ---------- 15. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 72px);
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #A9BED2;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 90% at 88% 10%, rgba(0,180,216,.3), transparent 62%),
    radial-gradient(40% 80% at 5% 95%, rgba(239,59,36,.24), transparent 60%);
}
.cta-band .container, .cta-inner { position: relative; z-index: 1; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.cta-inner > div:first-child { flex: 1 1 460px; }
.cta-inner h2 { color: #fff; max-width: 560px; }
.cta-inner p { margin-top: 14px; max-width: 520px; color: #A9C0D4; }
.cta-actions { flex: 0 0 auto; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 900px) { .cta-actions { flex-direction: row; flex-wrap: wrap; } }

/* ---------- 17. Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: #A9BED2;
  padding: calc(var(--header-h) + clamp(34px, 4vw, 62px)) 0 clamp(56px, 7vw, 92px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 82% 20%, rgba(0,180,216,.24), transparent 62%),
    radial-gradient(45% 70% at 10% 90%, rgba(239,59,36,.18), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 900px; }
.page-hero p { margin-top: 20px; max-width: 660px; font-size: 1.08rem; color: #A9C0D4; }
.crumbs { display: flex; align-items: center; gap: 10px; font-size: .86rem; margin-bottom: 22px; color: #7E96AC; }
.crumbs a:hover { color: var(--brand); }
.crumbs .sep { opacity: .5; }
.crumbs [aria-current] { color: var(--brand); font-weight: 600; }

.page-hero.is-compact { padding: calc(var(--header-h) + clamp(24px, 2.6vw, 40px)) 0 clamp(40px, 4.5vw, 62px); }
.page-hero.is-compact h1 { font-size: clamp(1.9rem, 1.35rem + 2.3vw, 2.9rem); }
.page-hero.is-compact p { margin-top: 14px; font-size: 1.02rem; }

/* ---------- 17. Contact ---------- */
/* Columns stretch to equal height; the map absorbs the leftover space so its
   bottom edge lines up with the bottom of the form card. */
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(26px, 3vw, 40px); align-items: stretch; }
.contact-side { display: grid; gap: 20px; grid-template-rows: auto minmax(260px, 1fr); }
.contact-side .map-frame { height: 100%; }
/* Grid/flex items default to min-width:auto, which lets long strings
   (e.g. the email address) push the whole column past the viewport. */
.contact-grid > *, .faq-split > *, .contact-side > *, .channels > * { min-width: 0; }

.info-card {
  display: grid; gap: 22px;
  padding: 36px 32px; border-radius: var(--r-lg);
  background: linear-gradient(140deg, var(--ink), var(--ink-3)); color: #A9BED2;
}
.info-card.is-compact { padding: 28px 26px; gap: 20px; }
.info-card.is-compact h3 { font-size: 1.18rem; }

/* Tappable contact channels */
.channels { display: grid; gap: 10px; }
.channel {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.channel:hover { background: rgba(0,180,216,.13); border-color: rgba(0,180,216,.45); transform: translateX(3px); }
.channel .ic {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  border-radius: 12px; background: rgba(0,180,216,.15); color: var(--brand);
}
.channel .ic .icon { width: 19px; height: 19px; }
.channel.is-wa .ic { background: rgba(37,211,102,.15); color: #25D366; }
.channel .ch-text { flex: 1; min-width: 0; }
.channel small { display: block; font-size: .73rem; font-weight: 600; color: #7E96AC; line-height: 1.4; }
.channel strong {
  display: block; font-size: .95rem; color: #fff; letter-spacing: -.01em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.channel .arw { width: 16px; height: 16px; flex: none; color: #6E88A0; }
.channel:hover .arw { color: var(--brand); }

.meta-list { display: grid; gap: 13px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.meta-list li { display: flex; gap: 12px; font-size: .89rem; line-height: 1.6; }
.meta-list .icon { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--brand); }

/* FAQ beside its heading instead of stacked under a centred block */
.faq-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-split h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem); }
.faq-split p { margin-top: 14px; font-size: .96rem; }
.faq-split .faq { max-width: none; margin: 0; }
.info-card h3 { color: #fff; }
.info-row { display: flex; gap: 16px; }
.info-row .ic {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 14px; background: rgba(0,180,216,.15); color: var(--brand);
}
.info-row h4 { color: #fff; font-size: .95rem; margin-bottom: 4px; }
.info-row a, .info-row p { font-size: .95rem; color: #A9C0D4; }
.info-row a:hover { color: var(--brand); }
.info-card .divider { height: 1px; background: rgba(255,255,255,.1); }

.form-card {
  padding: clamp(28px, 4vw, 44px);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}
.form-card h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); margin-bottom: 10px; }
.form-card > p { margin-bottom: 28px; }
.form-card .btn-block { margin-top: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 700; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 17px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface-2); font-size: .95rem;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { min-height: 124px; resize: vertical; }
.field label .opt { font-weight: 500; color: var(--text-soft); }
.field input::placeholder, .field textarea::placeholder { color: #9EB0C1; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px rgba(0,180,216,.13);
}
.form-note { display: flex; gap: 10px; margin-top: 18px; font-size: .84rem; color: var(--text-soft); }
.form-note .icon { color: var(--brand); width: 17px; height: 17px; margin-top: 3px; }

.map-frame {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  line-height: 0; background: var(--surface-2);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }
.map-frame.is-small iframe { height: 100%; min-height: 260px; }

/* ---------- 18. Footer ---------- */
.site-footer { background: var(--ink); color: #8FA6BB; padding-top: clamp(56px, 7vw, 88px); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 56px); padding-bottom: 56px;
}
/* Light logo variant sits straight on the dark footer — no white plate needed */
.footer-logo { height: 48px; width: auto; margin-bottom: 24px; }
.footer-about p { font-size: .93rem; line-height: 1.75; margin-bottom: 24px; }
.footer h5 {
  color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 24px;
  letter-spacing: -.01em; position: relative; padding-bottom: 14px;
}
.footer h5::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), var(--flame));
}
.footer-links { display: grid; gap: 13px; }
.footer-links a { display: inline-flex; align-items: center; gap: 9px; font-size: .93rem; transition: color .2s, transform .25s var(--ease); }
.footer-links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); opacity: .55; transition: opacity .2s; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact { display: grid; gap: 18px; }
.footer-contact li { display: flex; gap: 13px; font-size: .93rem; }
.footer-contact .icon { color: var(--brand); width: 18px; height: 18px; margin-top: 4px; flex: none; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 11px; }
.footer-social a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 13px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  transition: background .3s, transform .3s var(--ease), border-color .3s;
}
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); border-color: transparent; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 26px 0; border-top: 1px solid rgba(255,255,255,.09);
  font-size: .86rem;
}
.footer-bottom a:hover { color: var(--brand); }

/* ---------- 19. Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: grid; place-items: center; width: 58px; height: 58px;
  border-radius: 50%; background: #25D366; color: #fff;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.09); }
.wa-float .icon { width: 30px; height: 30px; fill: currentColor; stroke: none; }
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- 20. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }
.reveal[data-d="5"] { transition-delay: .45s; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-media { max-width: 540px; margin-inline: auto; width: 100%; }
  .hero-media-frame { aspect-ratio: 4/3.2; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: grid; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .media-sub { width: 42%; right: -14px; bottom: -28px; }
  .contact-grid, .faq-split { grid-template-columns: 1fr; }
  /* Unwrap the side column so the map can drop below the form — nobody wants
     to scroll past a map to reach the thing they came to fill in. */
  .contact-side { display: contents; }
  /* descendant selectors, not `>`: display:contents changes box generation,
     not the DOM tree the selectors match against */
  .contact-grid .info-card { order: 1; }
  .contact-grid .form-card { order: 2; }
  .contact-grid .map-frame { order: 3; height: auto; }
  .map-frame.is-small iframe { height: 300px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .slider-track { grid-auto-columns: calc((100% - 26px) / 2); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gal-item.is-wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  /* Logo + wide CTA + burger no longer fit side by side */
  .brand img { height: 38px; }
  .header-actions { gap: 10px; }
  .header-actions .btn-primary { display: none; }
  .btn-call { display: grid; }
}

/* ---------- Phone (the majority of this site's traffic) ---------- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }

  /* Tighter vertical rhythm — the page is long enough already */
  .section { padding: 56px 0; }
  .page-hero + .section { padding-top: 40px; }
  .section-tight { padding: 42px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head p { font-size: .97rem; margin-top: 12px; }
  .eyebrow { margin-bottom: 14px; font-size: .72rem; letter-spacing: .13em; }

  .hero { padding-bottom: 84px; }
  .hero-lead { margin-top: 18px; font-size: 1rem; }
  .hero-actions { margin-top: 28px; gap: 11px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-points { margin-top: 28px; padding-top: 22px; gap: 10px 20px; }
  .hero-points li { font-size: .85rem; }
  .float-card.fc-1 { left: -6px; padding: 11px 14px; }
  .float-card.fc-2 { right: -6px; padding: 11px 14px; }
  .float-card strong { font-size: 1.02rem; }
  .float-card span { font-size: .72rem; }
  .float-card .fc-icon { width: 38px; height: 38px; border-radius: 11px; }

  /* 2x2 instead of four full-width rows */
  .trust { margin-top: -46px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item {
    flex-direction: column; align-items: flex-start; gap: 10px;
    padding: 18px 15px;
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(n+3) { border-bottom: 0; }
  .trust-item .icon-badge { width: 40px; height: 40px; border-radius: 12px; }
  .trust-item .icon-badge .icon { width: 20px; height: 20px; }
  .trust-item h4 { font-size: .93rem; line-height: 1.3; }
  .trust-item p { font-size: .78rem; line-height: 1.45; }

  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }

  /* Service cards were ~440px tall each; six of them made an endless scroll */
  .card-service { padding: 24px 20px 22px; }
  .card-service .cs-icon { width: 48px; height: 48px; margin-bottom: 15px; border-radius: 14px; }
  .card-service .cs-icon .icon { width: 23px; height: 23px; }
  .card-service h3 { font-size: 1.12rem; margin-bottom: 7px; }
  .card-service p { font-size: .89rem; margin-bottom: 15px; }
  .cs-list { gap: 7px; margin-bottom: 16px; }
  .cs-list li { font-size: .84rem; }
  .cs-list .icon { width: 15px; height: 15px; margin-top: 3px; }
  .cs-num { font-size: 2.4rem; right: 18px; top: 14px; }

  /* Service quick-nav becomes a 3x2 tile grid instead of six full-width rows */
  .grid-mini { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-mini { padding: 16px 14px; }
  .card-mini .cs-icon { width: 40px; height: 40px; margin-bottom: 12px; border-radius: 12px; }
  .card-mini .cs-icon .icon { width: 20px; height: 20px; }
  .card-mini h3 { font-size: .97rem; margin-bottom: 4px; }
  .card-mini p { font-size: .77rem; line-height: 1.4; }

  /* Shallower hero images keep the six service sections from running forever */
  .media-main { aspect-ratio: 16/10; }

  .split { gap: 30px; }
  .split-body h2 + p, .split-body p + p { margin-top: 14px; }
  .check-list { gap: 14px; margin: 22px 0; }
  .check-list strong { font-size: .95rem; }
  .check-list p { font-size: .87rem; }

  .step { padding: 22px 20px; }
  .step-n { width: 44px; height: 44px; margin-bottom: 15px; font-size: 1rem; border-radius: 13px; }
  .step h4 { font-size: 1.05rem; }
  .step p { font-size: .88rem; }
  .step::after { display: none; }

  .stats { gap: 26px 16px; }
  .stat span { font-size: .8rem; margin-top: 6px; }

  .slider-track { grid-auto-columns: 86%; gap: 14px; }
  .slider-controls { gap: 14px; margin-top: 24px; }
  .quote-card { padding: 24px 20px; }
  .quote-card blockquote { font-size: .92rem; }

  /* Two columns halves the gallery's height */
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gal-item, .gal-item.is-wide { grid-column: span 1; aspect-ratio: 1/1; }
  .gal-item figcaption { padding: 26px 11px 10px; font-size: .78rem; line-height: 1.3; }
  .gal-item figcaption small { font-size: .66rem; margin-bottom: 2px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .info-card.is-compact { padding: 22px 18px; }
  .map-frame.is-small iframe { height: 260px; }

  .cta-band { padding: 32px 22px; }
  .cta-inner { flex-direction: column; align-items: stretch; gap: 26px; }
  /* In a column flex container flex-basis is a HEIGHT, so the desktop
     `flex: 1 1 460px` was forcing a 460px-tall empty block. */
  .cta-inner > div:first-child { flex: 0 1 auto; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  /* "Faqet" and "Shërbimet" are short lists — side by side instead of stacked
     cuts roughly 500px off the footer. About and Kontakti span both columns. */
  .site-footer { padding-top: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; padding-bottom: 28px; }
  .footer-about,
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-logo { height: 40px; margin-bottom: 16px; }
  .footer-about p { font-size: .88rem; line-height: 1.62; margin-bottom: 18px; }
  .footer h5 { margin-bottom: 14px; padding-bottom: 10px; font-size: .94rem; }
  .footer h5::after { width: 26px; height: 2px; }
  .footer-links { gap: 10px; }
  .footer-links a { font-size: .87rem; gap: 8px; }
  .footer-links a::before { width: 5px; height: 5px; }
  .footer-contact { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .footer-contact li { font-size: .86rem; }
  .footer-social a { width: 38px; height: 38px; border-radius: 11px; }
  .footer-bottom { justify-content: center; text-align: center; padding: 16px 0; font-size: .78rem; gap: 4px; }

  .media-tag { left: 50%; transform: translateX(-50%); bottom: -22px; padding: 14px 20px; }
  .media-tag strong { font-size: 1.35rem; }
  .media-sub { display: none; }

  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

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

@media print {
  .site-header, .wa-float, .cta-band, .drawer, .backdrop { display: none !important; }
  body { color: #000; }
}
