/* ═══════════════════════════════════════════════════════════════
   EFY CLEANING – style.css  v3.0
   Brand: #13287D (blue) · #0d1a5e (dark) · #FFC600 (yellow) · #279E64 (green)
   Font: Heebo (300-900)
═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
  --blue:    #13287D;
  --navy:    #0d1a5e;
  --yellow:  #FFC600;
  --green:   #279E64;
  --white:   #ffffff;
  --grey-50: #f8f9fc;
  --grey-100:#f1f3f8;
  --grey-200:#e2e8f0;
  --grey-700:#4a5568;
  --grey-900:#1a202c;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl:48px;

  --shadow-sm: 0 2px 8px rgba(19,40,125,.06);
  --shadow-md: 0 8px 24px rgba(19,40,125,.12);
  --shadow-lg: 0 24px 60px rgba(19,40,125,.18);

  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: .15s;
  --t-med:  .3s;
  --t-slow: .6s;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Heebo', sans-serif;
  color: var(--grey-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }

/* ── SCROLL PROGRESS ─────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── PAGE LOADER ─────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity .5s var(--ease), visibility .5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__ring {
  width: 56px; height: 56px;
  border: 4px solid rgba(255,198,0,.2);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.loader__text {
  margin-top: 16px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: .85rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .2s;
  }
  .cursor-dot  { width: 8px;  height: 8px;  background: var(--yellow); }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 2px solid rgba(255,198,0,.6);
    transition: transform .12s var(--ease), width .2s, height .2s;
  }
  body:not(:hover) .cursor-dot,
  body:not(:hover) .cursor-ring { opacity: 0; }
}

/* ── GDPR COOKIE BAR ─────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  z-index: 8000;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 -8px 32px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.cookie-bar__text {
  flex: 1;
  min-width: 260px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  line-height: 1.5;
}
.cookie-bar__text strong { color: var(--yellow); }
.cookie-bar__text a { color: var(--yellow); text-decoration: underline; }
.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-cookie--accept {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-cookie--accept:hover { background: #e6b200; transform: translateY(-1px); }
.btn-cookie--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-cookie--outline:hover { border-color: var(--white); }
.btn-cookie--settings {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.btn-cookie--settings:hover { background: rgba(255,255,255,.2); }

/* Cookie settings panel */
.cookie-settings {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
}
.cookie-settings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.cookie-settings__item {
  background: rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  padding: 16px;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
}
.cookie-settings__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 600;
}
.cookie-settings__tag {
  font-size: .75rem;
  background: rgba(39,158,100,.3);
  color: #6bdf9e;
  padding: 2px 8px;
  border-radius: 100px;
}

/* Toggle switch */
.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__slider {
  position: absolute; cursor: pointer; inset: 0;
  background: rgba(255,255,255,.2);
  border-radius: 100px;
  transition: background .2s;
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s;
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--yellow); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }

/* ── TOPBAR ──────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .8125rem;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__socials { display: flex; gap: 12px; }
.topbar__social {
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.topbar__social:hover { color: var(--yellow); border-color: var(--yellow); }
.topbar__contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__contact {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.topbar__contact:hover { color: var(--yellow); }

/* ── HEADER / NAVIGATION ─────────────────────────────────────── */
.header {
  position: sticky; top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  z-index: 900;
  transition: box-shadow .3s, background .3s;
}
.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.97);
}
.nav {
  display: flex; align-items: center;
  height: 70px;
  gap: 32px;
}
.nav__logo img { height: 44px; width: auto; }
.nav__menu {
  display: flex; align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: .9375rem;
  color: var(--grey-700);
  transition: color .2s, background .2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--blue); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link--cta {
  background: var(--yellow);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-weight: 700;
  margin-left: 8px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: #e6b200; transform: translateY(-1px); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; padding: 6px;
  margin-left: auto;
}
.nav__toggle span {
  display: block; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all .25s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 799;
}
.nav-overlay.show { display: block; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 700; font-size: .9375rem;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn--outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATION ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section__header { text-align: center; margin-bottom: 56px; }
.section__eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(19,40,125,.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}
.section__title span { color: var(--blue); }
.section__desc {
  margin-top: 16px;
  color: var(--grey-700);
  font-size: 1.0625rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e3a9e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

/* Soap bubbles */
.hero__bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.15);
  animation: float-bubble linear infinite;
}
.bubble--1 { width: 80px;  height: 80px;  top: 15%; left: 8%;  animation-duration: 12s; animation-delay: 0s;   }
.bubble--2 { width: 120px; height: 120px; top: 60%; left: 15%; animation-duration: 16s; animation-delay: -4s;  }
.bubble--3 { width: 60px;  height: 60px;  top: 30%; left: 45%; animation-duration: 10s; animation-delay: -2s;  }
.bubble--4 { width: 100px; height: 100px; top: 70%; left: 70%; animation-duration: 14s; animation-delay: -6s;  }
.bubble--5 { width: 50px;  height: 50px;  top: 10%; left: 80%; animation-duration: 9s;  animation-delay: -1s;  }
.bubble--6 { width: 90px;  height: 90px;  top: 50%; left: 55%; animation-duration: 18s; animation-delay: -8s;  }

@keyframes float-bubble {
  0%   { transform: translateY(40px) scale(.8); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-120px) scale(1.1); opacity: 0; }
}

/* Hero split layout */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .6s .2s var(--ease) forwards;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title--accent { color: var(--yellow); }

.hero__typing {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
  min-height: 1.6em;
}
.hero__cursor {
  display: inline-block;
  animation: blink .7s step-end infinite;
  color: var(--yellow);
  font-weight: 300;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__actions .btn--primary {
  background: var(--yellow);
  color: var(--navy);
}
.hero__actions .btn--primary:hover { background: #e6b200; }
.hero__actions .btn--outline {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.hero__actions .btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.hero__badges {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero__badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  color: rgba(255,255,255,.85);
  font-size: .8125rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero__badge i { color: var(--yellow); }

/* Hero image column */
.hero__img-col { position: relative; }

.hero__img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* img-wrap clips the image with border-radius */
.hero__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ease);
}
.hero__img-wrap:hover .hero__img { transform: scale(1.04); }

/* Floating info cards – OUTSIDE img-wrap so not clipped by overflow:hidden */
.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 3s ease-in-out infinite alternate;
  min-width: 160px;
  z-index: 10;
}
.hero__float--1 {
  bottom: 60px;
  left: -48px;
  animation-delay: 0s;
}
.hero__float--2 {
  top: 60px;
  right: -48px;
  animation-delay: 1.5s;
}
@keyframes floatCard {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.hero__float-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero__float-info { display: flex; flex-direction: column; }
.hero__float-info strong { font-size: 1.1rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__float-info span  { font-size: .75rem; color: var(--grey-700); margin-top: 2px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem; letter-spacing: .08em;
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6));
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes fadeUp { to { opacity:1; transform:none; } }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s;
}
.trust-item:hover img { filter: none; }

/* ══════════════════════════════════════════════════════════════
   SERVICES (TAB SYSTEM)
══════════════════════════════════════════════════════════════ */
.services { background: var(--white); }

.services__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.services__tab {
  padding: 12px 24px;
  border-radius: var(--r-sm);
  border: 2px solid var(--grey-200);
  font-weight: 600; font-size: .9375rem;
  color: var(--grey-700);
  transition: all .25s var(--ease);
  display: flex; align-items: center; gap: 8px;
}
.services__tab:hover { border-color: var(--blue); color: var(--blue); }
.services__tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.services__panels { position: relative; }
.services__panel { display: none; }
.services__panel.active { display: block; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform:none; } }

.services__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.services__panel-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.services__panel-img img { width: 100%; height: 100%; object-fit: cover; }
.services__panel-content h3 {
  font-size: 1.75rem; font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
}
.services__panel-content p {
  color: var(--grey-700); margin-bottom: 24px; line-height: 1.7;
}
.service-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.service-features li {
  display: flex; align-items: center; gap: 10px;
  color: var(--grey-700); font-size: .9375rem;
}
.service-features li i { color: var(--green); font-size: .875rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about { background: var(--grey-50); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__visual { position: relative; }
.about__img-stack { position: relative; }
.about__img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about__img { width: 100%; height: 100%; object-fit: cover; }
.about__img-secondary { /* adjusted */
  position: absolute;
  bottom: -32px; right: -32px;
  width: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 1;
}
.about__img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about__img-badge {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about__img-badge-num { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.about__img-badge-text { font-size: .6rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.about__feature-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 60px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  font-size: .8125rem; font-weight: 600;
  color: var(--grey-700);
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.pill:hover { border-color: var(--blue); color: var(--blue); }
.pill i { color: var(--blue); }

.about__text { color: var(--grey-700); margin-bottom: 20px; font-size: 1.0625rem; line-height: 1.7; }
.about__features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 32px;
}
.about__feature {
  display: flex; gap: 12px; align-items: flex-start;
}
.about__feature-icon {
  width: 40px; height: 40px;
  background: rgba(19,40,125,.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1rem; flex-shrink: 0;
}
.about__feature h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: .9375rem; }
.about__feature p  { color: var(--grey-700); font-size: .8125rem; }

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.stats {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat { text-align: center; }
.stat__num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: inline-block;
}
.stat__suffix { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--yellow); }
.stat__label { color: rgba(255,255,255,.7); font-size: .875rem; margin-top: 8px; }

/* ══════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════ */
.why { background: var(--white); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card__num {
  font-size: 3rem; font-weight: 900;
  color: rgba(19,40,125,.06);
  line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.why-card__icon {
  font-size: 1.75rem;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.why-card h3 { font-weight: 700; color: var(--navy); margin-bottom: 10px; font-size: 1.0625rem; }
.why-card p  { color: var(--grey-700); font-size: .9rem; line-height: 1.65; }
.why-card__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  transition: width .4s var(--ease);
}
.why-card:hover .why-card__bar { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   TEAM
══════════════════════════════════════════════════════════════ */
.team { background: var(--grey-50); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.team-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-card__img { transform: scale(1.05); }
.team-card__info { padding: 20px; text-align: center; }
.team-card__info h3 { font-weight: 700; color: var(--navy); font-size: 1.0625rem; }
.team-card__info span { color: var(--grey-700); font-size: .875rem; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS SLIDER
══════════════════════════════════════════════════════════════ */
.testimonials { background: var(--white); }
.testi-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.testi-track {
  display: flex;
  transition: transform .4s var(--ease);
}
.testi-card {
  min-width: 100%;
  padding: 48px;
  background: var(--grey-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--grey-200);
}
.testi-card__stars { color: var(--yellow); margin-bottom: 20px; font-size: 1.1rem; letter-spacing: 2px; }
.testi-card__text {
  font-size: 1.125rem;
  color: var(--grey-700);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-card__author { display: flex; align-items: center; gap: 16px; }
.testi-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card__author strong { display: block; font-weight: 700; color: var(--navy); }
.testi-card__author span  { color: var(--grey-700); font-size: .875rem; }

.testi-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 28px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  color: var(--grey-700);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.testi-btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(19,40,125,.05); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-200);
  border: none; cursor: pointer;
  transition: all .2s;
}
.testi-dot.active { background: var(--blue); transform: scale(1.3); }

/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
.pricing { background: var(--grey-50); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--grey-200);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--yellow);
  color: var(--navy);
  font-size: .75rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.pricing-card__header { margin-bottom: 28px; }
.pricing-card__label {
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--grey-700);
  display: block; margin-bottom: 12px;
}
.pricing-card--featured .pricing-card__label { color: rgba(255,255,255,.7); }
.pricing-card__price { display: flex; align-items: flex-end; gap: 4px; }
.pricing-card__from { font-size: .875rem; color: var(--grey-700); margin-bottom: 6px; }
.pricing-card__amount { font-size: 2.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.pricing-card__per { font-size: .9rem; color: var(--grey-700); margin-bottom: 4px; }
.pricing-card--featured .pricing-card__from,
.pricing-card--featured .pricing-card__amount,
.pricing-card--featured .pricing-card__per { color: var(--white); }
.pricing-card__features {
  list-style: none; display: flex; flex-direction: column;
  gap: 14px; margin-bottom: 28px;
}
.pricing-card__features li {
  display: flex; align-items: center; gap: 10px;
  color: var(--grey-700); font-size: .9375rem;
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,.85); }
.pricing-card__features li i { color: var(--green); font-size: .875rem; }
.pricing-card--featured .pricing-card__features li i { color: var(--yellow); }
.pricing-card--featured .btn--primary {
  background: var(--yellow); color: var(--navy);
}
.pricing-card--featured .btn--primary:hover { background: #e6b200; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact__desc { color: var(--grey-700); font-size: 1rem; margin-bottom: 28px; }
.contact__items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact__item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--grey-50);
  border-radius: var(--r-md);
  border: 1px solid var(--grey-200);
  transition: all .2s;
}
a.contact__item:hover { border-color: var(--blue); background: rgba(19,40,125,.04); transform: translateX(4px); }
.contact__item-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; flex-shrink: 0;
}
.contact__item span  { font-size: .8125rem; color: var(--grey-700); display: block; }
.contact__item strong{ font-size: .9375rem; color: var(--navy); }
.contact__socials { display: flex; gap: 12px; }
.contact__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-700); transition: all .2s;
}
.contact__social:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* Contact form */
.contact__form-wrap {
  background: var(--grey-50);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field label { font-size: .875rem; font-weight: 600; color: var(--grey-700); }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-sm);
  font-family: inherit; font-size: .9375rem;
  background: var(--white);
  color: var(--grey-900);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(19,40,125,.1);
}
.contact-form__field textarea { resize: vertical; min-height: 100px; }
.contact-form__note {
  font-size: .8125rem; color: var(--grey-700);
  text-align: center; display: flex; align-items: center;
  justify-content: center; gap: 6px; flex-wrap: wrap;
}
.contact-form__note a { color: var(--blue); text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer__wave { margin-bottom: -4px; line-height: 0; }
.footer__wave svg { width: 100%; display: block; }
.footer__main { padding: 72px 0 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand img { margin-bottom: 16px; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s;
}
.footer__social:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.footer__col h4 { color: var(--white); font-size: .9375rem; font-weight: 700; margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a, .footer__col ul li span {
  color: rgba(255,255,255,.6); font-size: .875rem;
  transition: color .2s;
}
.footer__col ul li a:hover { color: var(--yellow); }
.footer__contacts li { display: flex; align-items: flex-start; gap: 10px; }
.footer__contacts li i { color: var(--yellow); margin-top: 3px; font-size: .875rem; flex-shrink: 0; }

.footer__legal {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.footer__legal p {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  line-height: 1.7;
}

.footer__bottom {
  background: rgba(0,0,0,.25);
  padding: 16px 0;
  text-align: center;
}
.footer__bottom p { font-size: .825rem; color: rgba(255,255,255,.45); }
.footer__bottom a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer__bottom a:hover { color: var(--yellow); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all .3s var(--ease);
  z-index: 800;
  font-size: .875rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-page {
  padding: 120px 0 80px;
  background: var(--grey-50);
  min-height: 80vh;
}
.legal-page__header {
  background: var(--navy);
  padding: 60px 0 40px;
  margin-bottom: 0;
}
.legal-page__header h1 {
  color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}
.legal-page__header p { color: rgba(255,255,255,.7); margin-top: 8px; }
.legal-content {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-top: -20px;
}
.legal-content h2 { color: var(--navy); font-size: 1.4rem; font-weight: 700; margin: 32px 0 12px; border-bottom: 2px solid var(--yellow); padding-bottom: 8px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { color: var(--blue); font-size: 1.1rem; font-weight: 700; margin: 20px 0 8px; }
.legal-content p  { color: var(--grey-700); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { color: var(--grey-700); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .9rem; }
.legal-content th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; }
.legal-content td { padding: 10px 14px; border-bottom: 1px solid var(--grey-200); color: var(--grey-700); }
.legal-content tr:nth-child(even) td { background: var(--grey-50); }
.legal-content strong { color: var(--navy); }
.legal-content a { color: var(--blue); text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 560px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--featured { transform: none; }
}

@media (max-width: 768px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__img-col { max-width: 420px; margin: 0 auto; }
  .hero__float--1 { left: -12px; bottom: 20px; }
  .hero__float--2 { right: -12px; top: 20px; }
  .services__panel-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .about__features { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 0; right: -100%;
    width: min(320px, 100vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    z-index: 800;
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
    transition: right .35s var(--ease);
    margin-left: 0;
  }
  .nav__menu.open { right: 0; }
  .nav__link { font-size: 1.1rem; width: 100%; }
  .cookie-bar__inner { flex-direction: column; align-items: flex-start; }
  .cookie-bar__actions { width: 100%; }
  .testi-card { padding: 28px; }
  .legal-content { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero__float { min-width: 130px; padding: 10px 12px; }
  .hero__float--1 { left: 0; }
  .hero__float--2 { right: 0; }
  .why__grid  { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 24px; }
  .services__tab { font-size: .85rem; padding: 10px 16px; }
  .footer__grid { grid-template-columns: 1fr; }
}
