/* ═══════════════════════════════════
   HYDRAULIK RZGÓW — style.css
   ═══════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --c-navy:      #1a3e6b;
  --c-navy-dk:   #122d50;
  --c-navy-lt:   #e8f0f9;
  --c-accent:    #0ea5e9;
  --c-accent-dk: #0284c7;
  --c-accent-lt: #e0f2fe;
  --c-green:     #16a34a;
  --c-green-dk:  #15803d;
  --c-green-lt:  #dcfce7;
  --c-wa:        #25D366;
  --c-wa-dk:     #1da851;

  --c-bg:        #f3f8fc;
  --c-bg-alt:    #eaf1f8;
  --c-surface:   #ffffff;
  --c-border:    #d1e3f0;

  --c-text:      #0f2035;
  --c-text-md:   #3a567a;
  --c-text-lt:   #6e8fab;

  --grad-hero:   linear-gradient(140deg, #0f2d50 0%, #1a4a7a 45%, #1465a0 100%);
  --grad-phone:  linear-gradient(135deg, #0ea5e9, #0284c7);
  --grad-wa:     linear-gradient(135deg, #25D366, #1da851);
  --grad-cta:    linear-gradient(140deg, #0f2d50 0%, #1a4a7a 45%, #1465a0 100%);

  --shadow-sm:   0 1px 4px rgba(26,62,107,.08);
  --shadow-md:   0 4px 16px rgba(26,62,107,.12);
  --shadow-lg:   0 8px 32px rgba(26,62,107,.16);
  --shadow-xl:   0 16px 48px rgba(26,62,107,.22);
  --shadow-cta:  0 8px 28px rgba(14,165,233,.38);

  --radius-sm:   .5rem;
  --radius-md:   .875rem;
  --radius-lg:   1.25rem;
  --radius-xl:   1.75rem;

  --ease:        cubic-bezier(.4,0,.2,1);
  --nav-h:       68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Layout ── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.w-full { width: 100%; }

/* ── Reveal ── */
.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal-fade.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal-fade { opacity:1; transform:none; transition:none; } }

/* ══════════════
   BUTTONS
══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background .2s var(--ease), transform .18s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
  padding: .7rem 1.4rem;
  font-size: .9375rem;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--c-navy); color: #fff; box-shadow: 0 4px 12px rgba(26,62,107,.3); }
.btn-primary:hover { background: var(--c-navy-dk); box-shadow: 0 6px 18px rgba(26,62,107,.4); }

.btn-accent { background: var(--c-accent); color: #fff; box-shadow: 0 4px 12px rgba(14,165,233,.3); }
.btn-accent:hover { background: var(--c-accent-dk); box-shadow: 0 6px 18px rgba(14,165,233,.4); }

.btn-phone { background: var(--grad-phone); color: #fff; box-shadow: var(--shadow-cta); }
.btn-phone:hover { box-shadow: 0 10px 32px rgba(14,165,233,.5); }

.btn-wa { background: var(--c-wa); color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.btn-wa:hover { background: var(--c-wa-dk); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

.btn-white { background: #fff; color: var(--c-navy); box-shadow: var(--shadow-md); }
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-sm { padding: .5rem 1rem; font-size: .875rem; border-radius: var(--radius-sm); }
.btn-xl { padding: 1rem 2.25rem; font-size: 1.125rem; border-radius: var(--radius-lg); }

/* ══════════════
   HEADER
══════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
#site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border), var(--shadow-sm);
}

.hdr-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hdr-logo {
  display: flex; align-items: center; gap: .55rem;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  color: #fff;
  transition: color .2s;
}
#site-header.scrolled .hdr-logo { color: var(--c-navy); }
.hdr-logo-drop {
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dk));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(14,165,233,.35);
}

.hdr-nav {
  display: none;
  margin-left: auto;
  gap: .125rem;
}
@media (min-width: 1024px) { .hdr-nav { display: flex; } }
.hdr-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  padding: .45rem .9rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  transition: color .2s, background .2s;
}
.hdr-nav a:hover { color: #fff; background: rgba(255,255,255,.12); }
#site-header.scrolled .hdr-nav a { color: var(--c-text-md); }
#site-header.scrolled .hdr-nav a:hover { color: var(--c-navy); background: var(--c-navy-lt); }

.hdr-actions {
  display: flex; align-items: center; gap: .5rem;
  margin-left: auto;
}
@media (min-width: 1024px) { .hdr-actions { margin-left: 1.5rem; } }

.hdr-ham {
  display: flex; flex-direction: column; gap: 4.5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
@media (min-width: 1024px) { .hdr-ham { display: none; } }
.hdr-ham span {
  display: block; width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s, background .2s;
}
#site-header.scrolled .hdr-ham span { background: var(--c-text); }
.hdr-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hdr-ham.open span:nth-child(2) { opacity: 0; }
.hdr-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hdr-mobile {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.hdr-mobile:not([hidden]) { max-height: 420px; }
.hdr-mobile[hidden] { display: block !important; max-height: 0; }
.hdr-mobile nav {
  padding: 1rem 1.25rem .5rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.hdr-mobile nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--c-text-md);
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.hdr-mobile nav a:hover { background: var(--c-navy-lt); color: var(--c-navy); }
.hdr-mobile-btns {
  padding: .75rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: .625rem;
}

/* ══════════════
   HERO
══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(14,165,233,.22) 0%, transparent 70%);
  top: -100px; right: -80px;
  animation: glow-drift 13s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(22,163,74,.15) 0%, transparent 70%);
  bottom: 80px; left: -60px;
  animation: glow-drift 17s ease-in-out infinite alternate-reverse;
}
@keyframes glow-drift { from { transform: translate(0,0); } to { transform: translate(25px,15px); } }

.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-dots span {
  position: absolute;
  left: var(--tx); top: var(--ty);
  width: calc(var(--s) * 10px); height: calc(var(--s) * 10px);
  background: rgba(14,165,233,.35);
  border-radius: 50%;
  animation: dot-pulse 3s ease-in-out var(--d) infinite;
}
@keyframes dot-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.3)} }

.hero-inner {
  position: relative; z-index: 2;
  padding: 5rem 1.25rem 5.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.75rem;
}
.hero-badge svg { color: var(--c-green); flex-shrink: 0; }

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}
.hero-h1-city {
  display: block;
  background: linear-gradient(135deg, var(--c-accent) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-h1-city::after {
  display: none;
}

.hero-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: .75rem;
}

.hero-desc {
  font-size: clamp(.9375rem, 1.5vw, 1.075rem);
  color: rgba(255,255,255,.62);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: .875rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .625rem;
  justify-content: center;
}
.htb {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}
.htb svg { color: var(--c-accent); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%);
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(6px);opacity:.3} }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ══════════════
   SECTIONS
══════════════ */
.section { padding: 5rem 0; }
.section-alt { background: var(--c-bg-alt); }

.sec-hdr {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.sec-pill {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-accent-lt);
  padding: .3rem .875rem;
  border-radius: 99px;
  margin-bottom: .875rem;
}
.sec-hdr h2, .about-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--c-text);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .875rem;
}
.sec-hdr p {
  font-size: 1.0625rem;
  color: var(--c-text-md);
  line-height: 1.65;
}

.sec-cta { text-align: center; margin-top: 2.75rem; }
.sec-cta p { font-size: 1rem; color: var(--c-text-md); margin-bottom: 1rem; }

/* ══════════════
   SERVICES
══════════════ */
.srv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
@media (min-width:580px) { .srv-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:900px) { .srv-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width:1100px) { .srv-grid { grid-template-columns: repeat(4,1fr); } }

.srv-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.srv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--c-accent); }

.srv-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.srv-card:hover .srv-icon { transform: scale(1.1); }

.si-cyan   { background: linear-gradient(135deg,#06b6d4,#0284c7); }
.si-blue   { background: linear-gradient(135deg,#3b82f6,#4f46e5); }
.si-blue2  { background: linear-gradient(135deg,#0ea5e9,#1d4ed8); }
.si-rose   { background: linear-gradient(135deg,#f43f5e,#ec4899); }
.si-red    { background: linear-gradient(135deg,#ef4444,#f97316); }
.si-orange { background: linear-gradient(135deg,#f97316,#dc2626); }
.si-teal   { background: linear-gradient(135deg,#14b8a6,#059669); }
.si-violet { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }

.srv-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--c-text);
  margin-bottom: .4rem;
  transition: color .2s;
}
.srv-card:hover h3 { color: var(--c-accent); }
.srv-card p {
  font-size: .9rem;
  color: var(--c-text-md);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.srv-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--c-accent);
  transition: color .2s, gap .2s;
}
.srv-link:hover { color: var(--c-navy); gap: .5rem; }

/* ══════════════
   ABOUT
══════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-left p {
  font-size: 1.0625rem;
  color: var(--c-text-md);
  line-height: 1.7;
  margin-bottom: 1.125rem;
}

.about-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  margin-top: 1.75rem;
}
@media (max-width: 479px) { .about-benefits { grid-template-columns: 1fr; } }

.abenefit {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .9rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
}
.abenefit-icon {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-green-lt);
  color: var(--c-green);
  border-radius: var(--radius-sm);
}
.abenefit strong { display: block; font-weight: 700; font-size: .9375rem; color: var(--c-text); line-height: 1.2; }
.abenefit span { display: block; font-size: .8125rem; color: var(--c-text-md); margin-top: .15rem; }

/* about card */
.about-right { position: relative; }
.about-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--grad-hero);
  padding: 2.5rem;
  color: #fff;
}
.about-card-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(14,165,233,.2), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(22,163,74,.15), transparent 60%);
}
.about-card-body { position: relative; z-index: 1; }
.about-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--c-accent), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
}
.about-stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: .5rem;
}
.about-stat-sub { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.about-checks { display: flex; flex-direction: column; gap: .6rem; }
.about-checks li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.9);
}
.about-checks svg { color: var(--c-green); flex-shrink: 0; }

.about-badge {
  position: absolute;
  bottom: -1.25rem; right: -1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: .875rem 1.125rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--shadow-xl);
}
@media (max-width: 480px) {
  .about-badge { bottom: -.75rem; right: -.5rem; }
}
.about-badge-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--c-green-lt);
  color: var(--c-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-badge strong { display: block; font-weight: 700; font-size: .9375rem; color: var(--c-text); }
.about-badge span { font-size: .8rem; color: var(--c-text-lt); }

/* ══════════════
   AREA
══════════════ */
.area-locs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .625rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 580px) { .area-locs { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .area-locs { grid-template-columns: repeat(5,1fr); } }

.area-loc-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--c-border);
  background: var(--c-surface);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--c-text-md);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.area-loc-btn svg { flex-shrink: 0; color: var(--c-accent); transition: color .2s; }
.area-loc-btn:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); }
.area-loc-btn.active {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.area-loc-btn.active svg { color: #fff; }

.area-panel {
  position: relative;
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.area-circles { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ac {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.07);
}
.ac-1 { width: 220px; height: 220px; }
.ac-2 { width: 340px; height: 340px; border-color: rgba(255,255,255,.04); }
.ac-3 { width: 460px; height: 460px; border-color: rgba(255,255,255,.025); }

.area-panel-body { position: relative; z-index: 1; }
.area-pin {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
}
#area-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.375rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: .625rem;
  transition: opacity .2s;
}
#area-desc {
  color: rgba(255,255,255,.68);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: .9375rem;
}

.area-seo {
  font-size: .9rem;
  color: var(--c-text-lt);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════
   CTA / CONTACT
══════════════ */
.cta-section {
  position: relative;
  background: var(--grad-cta);
  overflow: hidden;
}
.cta-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-blob-1 {
  width: 400px; height: 400px;
  background: rgba(14,165,233,.12);
  top: -80px; left: -80px;
}
.cta-blob-2 {
  width: 500px; height: 500px;
  background: rgba(14,165,233,.08);
  bottom: -100px; right: -100px;
}

.cta-header { text-align: center; margin-bottom: 2rem; }
.cta-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .875rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.25rem;
}
.cta-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: .875rem;
}
.cta-header p { font-size: 1.0625rem; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.cta-header strong { color: #fff; }

.cta-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.cta-trust span {
  display: flex; align-items: center; gap: .4rem;
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.cta-trust svg { color: var(--c-green); flex-shrink: 0; }

/* form */
.cta-form-wrap { max-width: 580px; margin: 0 auto; }
.cta-form-card {
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.cta-form-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2.5rem 1rem;
}
.form-success-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--c-green-lt);
  color: var(--c-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.form-success strong { font-size: 1.125rem; color: var(--c-text); margin-bottom: .4rem; }
.form-success p { font-size: .9375rem; color: var(--c-text-md); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 479px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-field:last-of-type { margin-bottom: 1.25rem; }
.form-field label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--c-text);
}
.form-field label span { font-weight: 400; color: var(--c-text-lt); }
.form-field input,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: .65rem .875rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--c-text-lt); }
.form-field textarea { min-height: 100px; }

.form-note {
  text-align: center;
  font-size: .8125rem;
  color: var(--c-text-lt);
  margin-top: .875rem;
}

/* ══════════════
   FOOTER
══════════════ */
.site-footer {
  background: var(--c-navy-dk);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 0;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .ft-grid { grid-template-columns: 2fr 1fr 1fr; } }

.ft-logo {
  display: flex; align-items: center; gap: .625rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: .875rem;
}
.ft-logo-drop {
  width: 2.25rem; height: 2.25rem;
  border-radius: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}
.ft-brand p { font-size: .9rem; color: rgba(255,255,255,.6); max-width: 280px; margin-bottom: 1rem; line-height: 1.6; }
.ft-instalbor {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--c-accent);
  transition: color .2s;
}
.ft-instalbor:hover { color: #38bdf8; }

.ft-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  color: #fff;
  margin-bottom: .875rem;
}
.ft-col ul { display: flex; flex-direction: column; gap: .45rem; }
.ft-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color .2s;
}
.ft-col ul li a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: .5;
  flex-shrink: 0;
}
.ft-col ul li a:hover { color: rgba(255,255,255,.9); }

.ft-contact li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.ft-contact li svg { flex-shrink: 0; margin-top: .15em; opacity: .7; }
.ft-contact a:hover { color: var(--c-accent); }
.ft-contact li::before { display: none; }

.ft-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.125rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: space-between; align-items: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.38);
}
.ft-bar a { color: rgba(255,255,255,.38); transition: color .2s; }
.ft-bar a:hover { color: rgba(255,255,255,.75); }
.ft-seo-links { font-size: .75rem; }

/* ══════════════
   FLOATING CTA
══════════════ */
.float-wrap {
  position: fixed;
  bottom: 1.375rem; right: 1.375rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
.float-wrap[hidden] { display: none !important; }

.float-sub {
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: .625rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.float-sub.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.float-sub-item { display: flex; align-items: center; gap: .625rem; }

.float-label {
  background: var(--c-surface);
  color: var(--c-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  padding: .4rem .875rem;
  border-radius: 99px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s, transform .25s;
}
.float-sub-item:hover .float-label { opacity: 1; transform: none; }

.float-btn {
  width: 3.25rem; height: 3.25rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn-wa { background: var(--grad-wa); box-shadow: 0 4px 14px rgba(37,211,102,.35); }
.float-btn-phone { background: var(--grad-phone); box-shadow: 0 4px 14px rgba(14,165,233,.35); }

.float-main-row { display: flex; align-items: center; gap: .625rem; }

.float-main-label {
  background: var(--c-surface);
  color: var(--c-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  padding: .4rem .875rem;
  border-radius: 99px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  transition: opacity .3s var(--ease);
}
.float-main-label.hidden { opacity: 0; pointer-events: none; }

.float-main-btn {
  position: relative;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-dk));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(26,62,107,.4);
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.float-main-btn:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(26,62,107,.5); }
.float-main-btn.open { background: #e2e8f0; }
.float-main-btn.open .fmb-open  { display: none; }
.float-main-btn:not(.open) .fmb-close { display: none; }
.float-main-btn.open .fmb-close { display: flex; align-items: center; justify-content: center; color: var(--c-text); }

.fmb-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--c-navy);
  animation: fmb-pulse 2.2s ease-out infinite;
}
.float-main-btn.open .fmb-pulse,
.float-main-btn.no-pulse .fmb-pulse { display: none; }
@keyframes fmb-pulse { 0%{transform:scale(1);opacity:.5} 70%{transform:scale(1.65);opacity:0} 100%{transform:scale(1.65);opacity:0} }

.fmb-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid var(--c-bg);
  animation: dot-blink 1.5s ease-in-out infinite;
}
.fmb-dot[hidden] { display: none !important; }
@keyframes dot-blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ══════════════
   RESPONSIVE
══════════════ */
@media (max-width: 599px) {
  .section { padding: 3.5rem 0; }
  .cta-section { padding: 3.5rem 0; }
  .cta-form-card { padding: 1.5rem; }
  .about-card { padding: 1.75rem; }
  .area-panel { padding: 2rem 1.25rem; }
}

/* SVG underline positioning */
.hero-h1-city { position: relative; display: inline-block; }
.underline-svg { position: absolute; bottom: -6px; left: 0; width: 100%; overflow: visible; }
