/* ==========================================================================
   Home Cleaning A-Z Solution — Design System
   ========================================================================== */

:root {
  /* Brand */
  --ink:          #08202E;
  --ink-2:        #10384B;
  --ink-3:        #37596B;
  --body:         #4B6371;
  --primary:      #0F7A6E;
  --primary-600:  #0C6659;
  --primary-700:  #084B43;
  --primary-100:  #E4F4F1;
  --accent:       #F0B429;
  --accent-600:   #D69A12;
  --accent-100:   #FDF3DC;
  --mist:         #F5F9FA;
  --mist-2:       #EDF3F5;
  --line:         #DEE8EB;
  --white:        #FFFFFF;
  --success:      #12805C;
  --danger:       #C0392B;

  /* Type */
  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Space & shape */
  --wrap: 1200px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Elevation */
  --sh-sm: 0 2px 8px rgba(8, 32, 46, .06);
  --sh-md: 0 10px 30px rgba(8, 32, 46, .09);
  --sh-lg: 0 24px 60px rgba(8, 32, 46, .14);
  --sh-glow: 0 18px 44px rgba(15, 122, 110, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

/* --- Inline icons -------------------------------------------------------
   Every icon() SVG carries .ico. Without an explicit size an inline SVG
   stretches to fill its parent, so this is the safety net. Context-specific
   rules further down override it. */
svg { display: block; }
.ico {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: middle;
}
a { color: var(--primary); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--primary-700); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.22rem, 2.1vw, 1.6rem); }
h4 { font-size: 1.12rem; }
p  { margin: 0 0 1.15em; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--mist-2); }
::-webkit-scrollbar-thumb { background: #B7CBD1; border-radius: 99px; border: 3px solid var(--mist-2); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ------------------------------------------------------------- STRUCTURE */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(60px, 8vw, 118px) 0; position: relative; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.78); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--tight { padding: clamp(44px, 5vw, 72px) 0; }

.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------- HEADINGS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section--ink .eyebrow { color: var(--accent); }
.section--ink .eyebrow::before { background: rgba(255,255,255,.4); }

.head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 58px); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head p { font-size: 1.05rem; margin-bottom: 0; }

.lead { font-size: 1.1rem; color: var(--ink-3); }

/* ----------------------------------------------------------------- BUTTONS */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s;
  box-shadow: 0 10px 24px rgba(15,122,110,.22);
  white-space: nowrap;
  text-align: center;
}
.btn .ico { width: 18px; height: 18px; }
.btn--sm .ico { width: 15px; height: 15px; }
.btn--lg .ico { width: 19px; height: 19px; }
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28), transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-glow); color: var(--btn-fg); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }

.btn--accent  { --btn-bg: var(--accent); --btn-fg: #3B2A00; box-shadow: 0 10px 24px rgba(240,180,41,.32); }
.btn--accent:hover { box-shadow: 0 18px 44px rgba(240,180,41,.42); }
.btn--dark    { --btn-bg: var(--ink); box-shadow: 0 10px 24px rgba(8,32,46,.24); }
.btn--ghost   { --btn-bg: transparent; --btn-fg: var(--ink); box-shadow: none; border: 1.6px solid var(--line); }
.btn--ghost:hover { border-color: var(--primary); background: var(--primary-100); box-shadow: var(--sh-sm); }
.btn--glass {
  --btn-bg: rgba(255,255,255,.14);
  --btn-fg: #fff;
  border: 1.6px solid rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.btn--glass:hover { background: rgba(255,255,255,.25); }
.btn--sm { padding: 11px 22px; font-size: .86rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ------------------------------------------------------- VIDEO CAROUSEL */
.vcarousel {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.vcarousel__track { position: relative; width: 100%; height: 100%; }

.vslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
}
/* Higher specificity than any `.something .vslide` rule, so the visible slide
   can never be overridden into transparency by a later/responsive rule. */
.vcarousel .vslide.is-active { opacity: 1; visibility: visible; z-index: 2; }

.vslide__media { position: absolute; inset: 0; overflow: hidden; }
.vslide__media > video,
.vslide__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 9s linear;
}
.vslide.is-active .vslide__media > img { transform: scale(1.12); }

.vslide__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,26,37,.90) 0%, rgba(6,26,37,.66) 42%, rgba(6,26,37,.30) 100%),
    linear-gradient(to top, rgba(6,26,37,.72), transparent 55%);
}
.vcarousel--center .vslide__media::after {
  background: linear-gradient(to top, rgba(6,26,37,.86) 4%, rgba(6,26,37,.44) 55%, rgba(6,26,37,.62) 100%);
}

.vslide__body {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.vslide__inner { max-width: 690px; color: rgba(255,255,255,.86); padding: 40px 0; }
.vcarousel--center .vslide__inner { max-width: 820px; margin: 0 auto; text-align: center; }

.vslide__tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 22px;
}
.vslide__tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(240,180,41,.25); }

.vslide__title { color: #fff; margin-bottom: 18px; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.vslide__title em { font-style: italic; color: var(--accent); }
.vslide__text { font-size: 1.08rem; max-width: 560px; margin-bottom: 30px; }
.vcarousel--center .vslide__text { margin-inline: auto; }

/* Slide-in animation for active slide content */
.vslide__inner > * { opacity: 0; transform: translateY(26px); }
.vslide.is-active .vslide__inner > * { animation: vRise .9s var(--ease) forwards; }
.vslide.is-active .vslide__inner > *:nth-child(1) { animation-delay: .18s; }
.vslide.is-active .vslide__inner > *:nth-child(2) { animation-delay: .30s; }
.vslide.is-active .vslide__inner > *:nth-child(3) { animation-delay: .42s; }
.vslide.is-active .vslide__inner > *:nth-child(4) { animation-delay: .54s; }
@keyframes vRise { to { opacity: 1; transform: none; } }

/* Controls */
.vcarousel__nav {
  position: absolute;
  z-index: 6;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: background .25s, transform .25s var(--ease);
}
.vcarousel__nav:hover { background: var(--primary); border-color: var(--primary); }
.vcarousel__nav--prev { left: 20px; }
.vcarousel__nav--next { right: 20px; }
.vcarousel__nav svg { width: 20px; height: 20px; }

.vcarousel__dots {
  position: absolute;
  z-index: 6;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 11px; align-items: center;
}
.vcarousel__dot {
  width: 34px; height: 4px;
  border: 0; padding: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.32);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.vcarousel__dot.is-active { background: rgba(255,255,255,.45); }
.vcarousel__dot.is-active::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  transform-origin: left;
  animation: vDot linear forwards;
  animation-duration: var(--slide-dur, 7s);
}
@keyframes vDot { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.vcarousel__mute {
  position: absolute; z-index: 6;
  bottom: 22px; right: 22px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff; backdrop-filter: blur(8px);
}

/* Hero sizing */
.vcarousel--hero { height: min(92vh, 860px); min-height: 560px; }
.vcarousel--band { height: clamp(380px, 52vh, 540px); }
.vcarousel--panel { height: 100%; min-height: 400px; border-radius: var(--r-lg); }
.vcarousel--panel .vslide__body { display: none; }
.vcarousel--strip { height: clamp(260px, 34vh, 380px); border-radius: var(--r-lg); }

/* Hero extras */
.hero-scroll {
  position: absolute; z-index: 6;
  left: 50%; bottom: 62px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.62);
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: scrollPulse 2.2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ----------------------------------------------------------------- HEADER */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  padding: 9px 0;
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: var(--accent); }
.topbar__list { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar__list li { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__list .ico { width: 15px; height: 15px; opacity: .8; }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.1);
  transition: background .25s, transform .25s;
}
.topbar__social a:hover { background: var(--primary); transform: translateY(-2px); }
.topbar__social svg { width: 14px; height: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, padding .3s;
}
.site-header.is-stuck { box-shadow: var(--sh-md); }
.site-header__in { display: flex; align-items: center; gap: 24px; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand__text { line-height: 1.15; }
.brand__text strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.brand__text small { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); font-weight: 700; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__list > li { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 15px;
  font-size: .93rem; font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.is-active { color: var(--primary); background: var(--primary-100); }
.nav__link svg { width: 12px; height: 12px; opacity: .6; }

.nav__sub {
  position: absolute;
  top: calc(100% + 12px); left: 0;
  min-width: 268px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .28s var(--ease);
}
.nav__list > li:hover > .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 13px;
  border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
}
.nav__sub a:hover { background: var(--mist); color: var(--primary); }
.nav__sub img { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 11px; }
.header-phone__icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--primary-100); color: var(--primary);
}
.header-phone__icon svg { width: 18px; height: 18px; }
.header-phone small { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.header-phone strong { font-size: .96rem; color: var(--ink); }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink);
  place-items: center;
}
.burger svg { width: 20px; height: 20px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 200;
  width: min(360px, 88vw);
  background: #fff;
  box-shadow: var(--sh-lg);
  transform: translateX(105%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer__close { width: 40px; height: 40px; border: 0; background: var(--mist); border-radius: var(--r-sm); display: grid; place-items: center; color: var(--ink); }
.drawer__body { padding: 14px 20px 26px; }
.drawer__body a { display: block; padding: 13px 4px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--mist-2); }
.drawer__body a:hover { color: var(--primary); }
.drawer__body .is-sub { padding-left: 20px; font-weight: 500; font-size: .92rem; color: var(--ink-3); }
.scrim { position: fixed; inset: 0; z-index: 150; background: rgba(8,32,46,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .35s; }
.scrim.is-open { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------- CARDS */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }

.card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--mist-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,26,37,.6), transparent 62%);
  opacity: .85;
}
.card__badge {
  position: absolute; z-index: 2; top: 15px; left: 15px;
  padding: 7px 15px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94);
  color: var(--primary);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: var(--sh-sm);
}
.card__badge--accent { background: var(--accent); color: #3B2A00; }
.card__badge { display: inline-flex; align-items: center; gap: 7px; }
.card__badge .ico { width: 13px; height: 13px; }
.card__price-tag {
  position: absolute; z-index: 2; bottom: 15px; right: 15px;
  padding: 9px 17px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff;
  font-size: .88rem; font-weight: 700;
}
.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 10px; }
.card__body h3 a { color: inherit; }
.card__body h3 a:hover { color: var(--primary); }
.card__body p { font-size: .96rem; margin-bottom: 20px; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .9rem; color: var(--primary);
}
.card-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card-link:hover svg { transform: translateX(5px); }

/* Icon feature card */
.icard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  height: 100%;
}
.icard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.icard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.icard:hover::before { transform: scaleX(1); }
.icard__icon {
  width: 58px; height: 58px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--primary-100); color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: background .3s, color .3s, transform .4s var(--ease);
}
.icard:hover .icard__icon { background: var(--primary); color: #fff; transform: rotate(-6deg) scale(1.05); }
.icard__icon .ico { width: 26px; height: 26px; }
.icard h4 { font-size: 1.14rem; margin-bottom: 8px; }
.icard p { font-size: .94rem; margin: 0; }

/* Stat */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #fff; line-height: 1;
  margin-bottom: 8px;
}
.stat strong span { color: var(--accent); }
.stat small { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.section--mist .stat { background: #fff; border-color: var(--line); box-shadow: var(--sh-sm); }
.section--mist .stat strong { color: var(--ink); }
.section--mist .stat small { color: var(--ink-3); }

/* ----------------------------------------------------------- PRICING */
.price-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  height: 100%;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.price-card.is-popular { border-color: var(--primary); box-shadow: var(--sh-md); }
.price-card__flag {
  position: absolute; z-index: 3; top: 0; right: 0;
  padding: 8px 18px;
  background: var(--primary); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  border-bottom-left-radius: var(--r-md);
}
.price-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.price-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.price-card:hover .price-card__media img { transform: scale(1.08); }
.price-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,26,37,.55), transparent 60%); }
.price-card__head { padding: 24px 26px 18px; border-bottom: 1px dashed var(--line); }
.price-card__head h3 { font-size: 1.3rem; margin-bottom: 12px; }
.price-amount { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-amount b { font-family: var(--font-display); font-size: 2.1rem; color: var(--primary); line-height: 1; }
.price-amount del { color: #93A7B0; font-size: 1.02rem; }
.price-amount i { font-style: normal; font-size: .8rem; color: var(--ink-3); }
.price-save {
  display: inline-block; margin-top: 10px;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--accent-100); color: #8A6300;
  font-size: .74rem; font-weight: 700;
}
.price-card__body { padding: 22px 26px; flex: 1; }
.feat-list { display: grid; gap: 11px; }
.feat-list li { display: flex; gap: 11px; font-size: .93rem; line-height: 1.55; color: var(--ink-2); }
.feat-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--primary); }
.feat-list--muted li { color: var(--body); font-size: .9rem; }
.price-card__foot { padding: 0 26px 26px; display: grid; gap: 10px; }

/* ------------------------------------------------------------ SPLIT/MEDIA */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }

.media-stack { position: relative; }
.media-stack__main { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/3; }
.media-stack__main img, .media-stack__main video { width: 100%; height: 100%; object-fit: cover; }
.media-stack__float {
  position: absolute; bottom: -26px; right: -18px;
  width: 46%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.media-stack__float img, .media-stack__float video { width: 100%; height: 100%; object-fit: cover; }
.media-stack__chip {
  position: absolute; top: 22px; left: -20px;
  background: #fff; border-radius: var(--r-md);
  padding: 15px 20px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 13px;
}
.media-stack__chip b { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); line-height: 1; }
.media-stack__chip small { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }

.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 22px; margin: 26px 0 30px; }
.check-grid li { display: flex; gap: 10px; font-size: .95rem; font-weight: 600; color: var(--ink-2); }
.check-grid svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* ------------------------------------------------------------- PROCESS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { text-align: center; position: relative; }
.step__num {
  width: 76px; height: 76px; margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  background: #fff; color: var(--primary);
  border: 2px dashed var(--primary);
  position: relative; z-index: 2;
  transition: background .35s, color .35s, transform .35s var(--ease);
}
.step:hover .step__num { background: var(--primary); color: #fff; border-style: solid; transform: scale(1.06); }
.step h4 { margin-bottom: 8px; }
.step p { font-size: .93rem; margin: 0; }
.steps::before {
  content: ''; position: absolute;
  top: 38px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 1;
}

/* --------------------------------------------------------- TESTIMONIALS */
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.tcard__quote {
  font-family: var(--font-display);
  font-size: 3.6rem; line-height: 1;
  color: var(--primary-100);
  position: absolute; top: 16px; right: 24px;
}
.tcard__stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent); }
.tcard__stars svg { width: 17px; height: 17px; }
.tcard p { font-size: .98rem; color: var(--ink-2); position: relative; z-index: 2; }
.tcard__who { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--mist-2); display: flex; align-items: center; gap: 13px; }
.tcard__av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem;
  overflow: hidden; flex-shrink: 0;
}
.tcard__av img { width: 100%; height: 100%; object-fit: cover; }
.tcard__who strong { display: block; color: var(--ink); font-size: .96rem; }
.tcard__who small { color: var(--ink-3); font-size: .82rem; }

/* ---------------------------------------------------------------- FAQ */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item.is-open { border-color: var(--primary); box-shadow: var(--sh-md); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  border: 0; background: none;
  font-family: var(--font-body);
  font-size: 1.02rem; font-weight: 700; color: var(--ink);
}
.faq__q i {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-100); color: var(--primary);
  display: grid; place-items: center;
  font-style: normal; font-size: 1.25rem; line-height: 1;
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.faq__item.is-open .faq__q i { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a > div { padding: 0 24px 22px; font-size: .97rem; }

/* --------------------------------------------------------------- CTA */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); }
.cta-band video, .cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,32,46,.93), rgba(12,102,89,.82)); }
.cta-band__in { position: relative; z-index: 2; padding: clamp(44px, 6vw, 76px) clamp(26px, 5vw, 66px); display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; max-width: 520px; }

/* -------------------------------------------------------------- FORMS */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--sh-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.field label .req { color: var(--danger); }
.field .hint { font-size: .8rem; color: var(--ink-3); margin-top: 6px; }
.input, .select, .textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit; font-size: .97rem;
  color: var(--ink);
  background: var(--mist);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: 0; background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,122,110,.12);
}
.textarea { min-height: 130px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2337596B' stroke-width='2.4'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 17px; padding-right: 42px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.alert { padding: 15px 20px; border-radius: var(--r-md); margin-bottom: 20px; font-size: .94rem; display: flex; gap: 12px; align-items: flex-start; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.alert--ok { background: #E7F6F0; color: #0A5C43; border: 1px solid #BCE5D6; }
.alert--err { background: #FDECEA; color: #8E2A20; border: 1px solid #F6CFCA; }
.alert ul { margin: 6px 0 0; padding-left: 18px; list-style: disc; }

.summary-box { background: var(--mist); border: 1px dashed var(--line); border-radius: var(--r-md); padding: 20px 22px; }
.summary-box dl { margin: 0; display: grid; gap: 11px; }
.summary-box .row { display: flex; justify-content: space-between; gap: 14px; font-size: .93rem; }
.summary-box .row dt { color: var(--ink-3); }
.summary-box .row dd { margin: 0; font-weight: 700; color: var(--ink); text-align: right; }
.summary-box .row--total { border-top: 1px solid var(--line); padding-top: 12px; font-size: 1.05rem; }
.summary-box .row--total dd { color: var(--primary); font-family: var(--font-display); font-size: 1.4rem; }

/* --------------------------------------------------------- PAGE HEADER */
.pagehead {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  /* Match the homepage hero so inner pages feel equally cinematic */
  min-height: min(88vh, 800px);
  display: flex;
  align-items: center;
}
.pagehead__bg { position: absolute; inset: 0; }
.pagehead__bg img, .pagehead__bg video { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.pagehead::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,32,46,.88) 0%, rgba(8,32,46,.62) 45%, rgba(8,32,46,.34) 100%),
    linear-gradient(to top, rgba(8,32,46,.72), transparent 55%);
}
.pagehead__in {
  position: relative; z-index: 2;
  width: 100%;
  padding: clamp(70px, 9vw, 128px) 0 clamp(60px, 7vw, 108px);
}
.pagehead h1 { color: #fff; margin-bottom: 14px; max-width: 800px; }
.pagehead p { color: rgba(255,255,255,.78); max-width: 620px; font-size: 1.06rem; margin: 0; }
.crumbs { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.crumbs .ico { width: 13px; height: 13px; opacity: .7; }

/* Same staged entrance the homepage hero uses */
.pagehead__in > * { opacity: 0; transform: translateY(24px); animation: vRise .85s var(--ease) forwards; }
.pagehead__in > *:nth-child(1) { animation-delay: .12s; }
.pagehead__in > *:nth-child(2) { animation-delay: .24s; }
.pagehead__in > *:nth-child(3) { animation-delay: .36s; }
.pagehead__in > *:nth-child(4) { animation-delay: .48s; }
.crumbs a { color: rgba(255,255,255,.82); }
.crumbs a:hover { color: var(--accent); }

/* ------------------------------------------------------------- GALLERY */
.gal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gal a { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; display: block; }
.gal a:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal a:hover img { transform: scale(1.09); }
.gal a::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,32,46,.6), transparent 55%); opacity: 0; transition: opacity .35s; }
.gal a:hover::after { opacity: 1; }
.gal span {
  position: absolute; z-index: 2; bottom: 14px; left: 16px; right: 16px;
  color: #fff; font-weight: 700; font-size: .9rem;
  opacity: 0; transform: translateY(10px); transition: .35s var(--ease);
}
.gal a:hover span { opacity: 1; transform: none; }

/* ----------------------------------------------------------- PROSE */
.prose { max-width: 820px; }
.prose h2 { margin-top: 1.6em; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.prose h3 { margin-top: 1.4em; }
.prose > *:first-child { margin-top: 0; }
.prose ul { list-style: none; display: grid; gap: 10px; margin: 0 0 1.3em; }
.prose ul li { padding-left: 30px; position: relative; }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary-100);
  box-shadow: inset 0 0 0 4px var(--primary);
}
.prose blockquote {
  margin: 1.6em 0; padding: 22px 26px;
  background: var(--mist); border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-2);
}

/* ---------------------------------------------------------------- ASIDE */
.sticky-aside { position: sticky; top: 100px; display: grid; gap: 20px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.aside-card__head { padding: 20px 24px; background: var(--ink); color: #fff; }
.aside-card__head h4 { color: #fff; margin: 0; font-size: 1.08rem; }
.aside-card__head p { margin: 4px 0 0; font-size: .86rem; color: rgba(255,255,255,.7); }
.aside-card__body { padding: 22px 24px; }
.aside-list { display: grid; gap: 4px; }
.aside-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); font-size: .93rem; font-weight: 600; color: var(--ink-2); }
.aside-list a:hover, .aside-list a.is-active { background: var(--primary-100); color: var(--primary); }
.aside-list .ico { width: 15px; height: 15px; opacity: .5; }
.aside-card__body .btn { width: 100%; }

/* --------------------------------------------------------------- FOOTER */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding-top: clamp(52px, 7vw, 88px); }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .96rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px 30px; padding-bottom: 52px; }
.site-footer a { color: rgba(255,255,255,.66); }
.site-footer a:hover { color: var(--accent); }
.footer-links { display: grid; gap: 12px; font-size: .94rem; }
.footer-contact { display: grid; gap: 16px; font-size: .94rem; }
.footer-contact li { display: flex; gap: 13px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s, transform .3s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .87rem; }

/* ------------------------------------------------------- FLOATING DOCK */
.dock { position: fixed; z-index: 120; right: 20px; bottom: 22px; display: grid; gap: 12px; }
.dock a, .dock button {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; border: 0;
  box-shadow: var(--sh-lg);
  transition: transform .3s var(--ease);
  position: relative;
}
.dock a:hover, .dock button:hover { transform: scale(1.08) translateY(-2px); }
.dock .ico { width: 25px; height: 25px; }
.dock__top .ico { transform: rotate(180deg); }
.dock__wa { background: #25D366; }
.dock__call { background: var(--primary); }
.dock__top { background: var(--ink); opacity: 0; visibility: hidden; }
.dock__top.is-on { opacity: 1; visibility: visible; }
.dock__wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: pulseRing 2.4s infinite;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }

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

/* -------------------------------------------------------------- MARQUEE */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: #fff; }
.marquee__in { display: flex; gap: 56px; padding: 20px 0; white-space: nowrap; animation: slideLeft 26s linear infinite; width: max-content; }
.marquee span { display: inline-flex; align-items: center; gap: 16px; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-3); }
.marquee span::after { content: '✦'; color: var(--accent); font-size: .8rem; }
@keyframes slideLeft { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ UTILITIES */
.center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-3 { margin-top: 26px; }
.mt-4 { margin-top: 38px; }
.muted { color: var(--ink-3); }
.small { font-size: .88rem; }
.hide-sm { display: initial; }
.empty-note { padding: 44px; text-align: center; border: 1px dashed var(--line); border-radius: var(--r-lg); background: var(--mist); }

/* ------------------------------------------------------------ RESPONSIVE */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .gal { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .nav, .header-cta .header-phone { display: none; }
  .burger { display: grid; flex-shrink: 0; }
  .site-header__in { min-height: 68px; gap: 12px; }
  .brand img { height: 40px; }
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .media-stack__float { position: static; width: 100%; margin-top: 16px; border: 0; box-shadow: none; }
  .media-stack__chip { left: 12px; top: 12px; padding: 12px 16px; }
  .sticky-aside { position: static; }
  /* Keep the same absolute-overlay carousel on mobile — only shrink it.
     (Switching the slides to position:relative here previously broke the
     opacity cascade and made every slide invisible.) */
  .vcarousel--hero { height: min(80vh, 640px); min-height: 440px; }
  .vslide__inner { padding: 28px 0; }
  .vslide__text { font-size: 1rem; }
  .hero-scroll { display: none; }
  .pagehead { min-height: min(70vh, 560px); }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .g-2, .g-3, .g-4, .frow, .check-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .gal { grid-template-columns: repeat(2, 1fr); }
  .gal a:nth-child(6n+1) { grid-column: span 2; grid-row: span 1; }
  .topbar__list { gap: 14px; font-size: .8rem; }
  .hide-sm { display: none; }
  .vcarousel__nav { width: 42px; height: 42px; }
  .vcarousel__nav--prev { left: 10px; }
  .vcarousel__nav--next { right: 10px; }
  .cta-band__in { flex-direction: column; align-items: flex-start; }
  .btn { padding: 14px 26px; }
  .dock a, .dock button { width: 50px; height: 50px; }
  .card__body { padding: 22px; }
  .pagehead { min-height: min(64vh, 460px); }
  .brand img { height: 36px; }
  .brand__text strong { font-size: .95rem; }
  .brand__text small { font-size: .6rem; }
  .header-cta .btn { padding: 10px 15px; font-size: .8rem; }
  .vcarousel--hero { height: min(76vh, 560px); min-height: 400px; }
}

/* Very small phones — drop the wordmark so the burger always has room */
@media (max-width: 470px) {
  .brand__text { display: none; }
  .vslide__tag { font-size: .66rem; padding: 7px 14px 7px 11px; margin-bottom: 16px; }
  .btn { padding: 13px 20px; font-size: .88rem; }
  .vcarousel__dots { bottom: 18px; }
}

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

@media print {
  .site-header, .topbar, .site-footer, .dock, .vcarousel__nav, .vcarousel__dots { display: none !important; }
}
