/* ============================================================
   CleanzATX — Modern Sleek Styles
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky:        #0ea5e9;
  --sky-d:      #0284c7;
  --sky-dd:     #0369a1;
  --sky-l:      #e0f2fe;
  --sky-ll:     #f0f9ff;
  --cyan:       #06b6d4;
  --navy:       #0c1a2e;
  --navy-2:     #0f2440;
  --slate:      #334155;
  --mid:        #64748b;
  --border:     #e2e8f0;
  --bg:         #f8fafc;
  --white:      #ffffff;
  --gold:       #f59e0b;
  --green:      #10b981;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 8px 24px rgba(0,0,0,.09);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.12);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.16);
  --shadow-sky: 0 8px 28px rgba(14,165,233,.35);

  --r:    10px;
  --r-lg: 18px;
  --r-xl: 24px;

  --font:  'Inter', system-ui, sans-serif;
  --head:  'Plus Jakarta Sans', system-ui, sans-serif;

  --nav-h:  72px;
  --max-w:  1200px;
  --py:     100px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}
.section { padding-block: var(--py); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  letter-spacing: -.01em;
  cursor: pointer;
}
/* Universal shine sweep on all buttons */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transition: left .5s ease;
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before {
  left: 120%;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}
.btn--primary:hover {
  background: var(--sky-d);
  border-color: var(--sky-d);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(14,165,233,.4);
}

.btn--shiny {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sky), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--shiny::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transition: left .5s ease;
}
.btn--shiny:hover::before {
  left: 120%;
}
.btn--shiny:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(14,165,233,.45), inset 0 1px 0 rgba(255,255,255,.3);
}

.btn--glass {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.btn--outline {
  background: transparent;
  color: var(--sky);
  border-color: var(--sky);
}
.btn--outline:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(14,165,233,.4);
}

.btn--white {
  background: var(--white);
  color: var(--sky-d);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--sky-ll);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.btn--nav {
  padding: 8px 18px;
  font-size: 14px;
  background: var(--sky);
  color: var(--white);
  border-radius: 7px;
}
.btn--nav:hover { background: var(--sky-d); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-ll);
  border: 1px solid rgba(14,165,233,.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--head);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 17px;
  color: var(--mid);
  max-width: 580px;
  line-height: 1.7;
}
.section__header { text-align: center; margin-bottom: 64px; }
.section__header .section__sub { margin-inline: auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(12,26,46,.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(12,26,46,.99);
  box-shadow: 0 2px 32px rgba(0,0,0,.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
}
.nav__logo-img {
  height: 120px;
  width: auto;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links li a:not(.btn):not(.nav__phone) {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.nav__links li a:not(.btn):not(.nav__phone):hover { color: var(--white); }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky) !important;
  transition: color .2s;
}
.nav__phone:hover { color: #38bdf8 !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px 20px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.nav__mobile.open { display: flex; }
.nav__mobile a:not(.btn) {
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.nav__mobile a:not(.btn):hover { color: var(--white); }
.nav__mobile .btn { margin-top: 14px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--navy);
}

/* Animated grid background */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Glowing orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,.22) 0%, transparent 70%);
  top: -100px; left: -200px;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,.1) 0%, transparent 70%);
  top: 40%; left: 60%;
  animation: orbFloat 10s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(.97); }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.hero__text { position: relative; z-index: 2; }
.hero__photo {
  position: relative;
  z-index: 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
  margin-top: 100px;
  transform: scale(1.1);
  transform-origin: top center;
}
.hero__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero__brand-title {
  font-family: var(--head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--sky);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-anim .hero__brand-title { animation: fadeUp .7s .02s ease forwards; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.25);
  color: rgba(255,255,255,.8);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero__badge .stars { color: var(--gold); letter-spacing: 1px; }

.hero__title {
  font-family: var(--head);
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.title-line { display: block; opacity: 0; transform: translateY(30px); }
.title-line--accent {
  color: transparent;
  -webkit-text-stroke: 1px var(--sky);
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__stats {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  transition: background .2s, border-color .2s;
}
.stat:hover {
  background: rgba(14,165,233,.08);
  border-color: rgba(14,165,233,.25);
}
.stat__num {
  font-family: var(--head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.stat__star { color: var(--gold); font-size: 22px; }
.stat__label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  white-space: nowrap;
}

.hero__logo-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  opacity: 0;
  animation: badgeEntrance 1s .8s ease forwards;
  filter: drop-shadow(0 24px 64px rgba(14,165,233,.25));
}
.hero__logo-badge img { width: 100%; height: 100%; }
@keyframes badgeEntrance {
  from { opacity: 0; transform: translateY(-50%) scale(.85) rotate(-6deg); }
  to   { opacity: .9; transform: translateY(-50%) scale(1) rotate(0deg); }
}


/* Hero animations */
.hero-anim .title-line { animation: fadeUp .7s ease forwards; }
.hero-anim .title-line:nth-child(1) { animation-delay: .1s; }
.hero-anim .title-line:nth-child(2) { animation-delay: .22s; }
.hero-anim .title-line:nth-child(3) { animation-delay: .34s; }
.hero-anim .hero__sub  { animation: fadeUp .7s .48s ease forwards; }
.hero-anim .hero__ctas { animation: fadeUp .7s .6s ease forwards; }
.hero-anim .hero__stats{ animation: fadeUp .7s .72s ease forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   AOS (scroll reveal)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }

.services__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.services__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.gallery-thumb {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.gallery-thumb--wide {
  aspect-ratio: 16 / 10;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,.3);
}
.svc-card--primary {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: rgba(14,165,233,.35);
  color: var(--white);
}
.svc-card--primary:hover { box-shadow: 0 20px 60px rgba(12,26,46,.5); }

.svc-card__num {
  font-family: var(--head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--sky);
  opacity: .6;
  margin-bottom: 16px;
}
.svc-card--primary .svc-card__num { color: var(--sky); opacity: .8; }

.svc-card__badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.svc-card__icon {
  width: 52px; height: 52px;
  background: var(--sky-ll);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  margin-bottom: 22px;
  transition: background .2s;
}
.svc-card:hover .svc-card__icon { background: var(--sky-l); }
.svc-card--primary .svc-card__icon {
  background: rgba(14,165,233,.12);
  border-color: rgba(14,165,233,.2);
}
.svc-card__icon svg { width: 28px; height: 28px; }

.svc-card h3 {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.svc-card--primary h3 { color: var(--white); }

.svc-card p {
  font-size: 14.5px;
  color: var(--mid);
  margin-bottom: 22px;
  line-height: 1.7;
  flex-grow: 1;
}
.svc-card--primary p { color: rgba(255,255,255,.6); }

.svc-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.svc-card ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--slate);
}
.svc-card ul li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--sky-ll);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%230ea5e9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.svc-card--primary ul li { color: rgba(255,255,255,.7); }
.svc-card--primary ul li::before { background-color: rgba(14,165,233,.15); }

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky);
  transition: gap .2s;
  margin-top: auto;
}
.svc-card__link:hover { gap: 10px; }
.svc-card--primary .svc-card__link { color: #7dd3fc; }

/* Plans strip */
.plans-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 32px;
  flex-wrap: wrap;
}
.plans-strip__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.plans-strip__label svg { color: var(--sky); flex-shrink: 0; }
.plans-strip__options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.plan-chip {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  transition: all .2s;
  cursor: default;
}
.plan-chip:hover { border-color: var(--sky); color: var(--sky); }
.plan-chip--active {
  background: var(--sky-ll);
  border-color: var(--sky);
  color: var(--sky-d);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--navy); }
.why-us .section__tag { background: rgba(14,165,233,.12); border-color: rgba(14,165,233,.2); }
.why-us .section__title { color: var(--white); }
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-us__intro {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  line-height: 1.75;
}

.features { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--r);
  transition: background .2s;
}
.feature-item:hover { background: rgba(255,255,255,.05); }
.fi-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--sky-ll), var(--sky-l));
  border: 1px solid rgba(14,165,233,.18);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  margin-top: 1px;
}
.feature-item h4 {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-item p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* Right side proof cards */
.why-us__right { display: flex; flex-direction: column; gap: 20px; }

.proof-card--main {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-xl);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.proof-card__logo {
  height: 64px;
  margin-bottom: 20px;
}
.proof-card__logo img { height: 100%; width: auto; }
.proof-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.proof-score {
  font-family: var(--head);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
}
.proof-stars {
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.proof-rating > div span { font-size: 14px; color: rgba(255,255,255,.55); }
.proof-bar {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.proof-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  border-radius: 2px;
  transition: width 1.5s 0.5s ease;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.proof-mini {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-mini:hover { border-color: var(--sky); background: var(--sky-ll); }
.proof-mini--accent {
  background: linear-gradient(135deg, var(--sky-ll), rgba(6,182,212,.06));
  border-color: rgba(14,165,233,.25);
}
.pm-num {
  font-family: var(--head);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pm-label { font-size: 12px; color: var(--mid); font-weight: 500; }

.proof-quote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-xl);
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.proof-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: 18px;
  font-family: Georgia, serif;
  font-size: 96px;
  font-weight: 700;
  color: var(--sky);
  opacity: .18;
  line-height: 1;
  pointer-events: none;
}
.proof-quote::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 100% 100%, rgba(14,165,233,.12) 0%, transparent 70%);
  pointer-events: none;
}
.proof-quote p {
  font-size: 16px;
  color: rgba(255,255,255,.92);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 14px;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}
.proof-quote__stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}
.proof-quote span {
  font-size: 13px;
  color: var(--sky);
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--navy); overflow: hidden; }
.reviews .section__tag { background: rgba(14,165,233,.12); border-color: rgba(14,165,233,.2); }
.reviews .section__title { color: var(--white); }
.reviews .section__sub { color: rgba(255,255,255,.55); }
.reviews .section__header { margin-bottom: 40px; }

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.or-score {
  font-family: var(--head);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
}
.or-stars { display: block; font-size: 22px; color: var(--gold); letter-spacing: 2px; margin-bottom: 4px; }
.or-count { display: block; font-size: 14px; color: rgba(255,255,255,.5); }
.or-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: all .2s;
}
.or-link:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* Review carousel */
.reviews__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all .28s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.review-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(14,165,233,.3);
  transform: translateY(-4px);
}
.review-card--featured {
  background: linear-gradient(140deg, rgba(14,165,233,.15), rgba(6,182,212,.08));
  border-color: rgba(14,165,233,.3);
}

.rc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.rc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.rc-info { flex: 1; min-width: 0; }
.rc-info strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.3; }
.rc-info span { font-size: 12px; color: rgba(255,255,255,.45); }
.rc-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; flex-shrink: 0; }

.review-card blockquote {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 20px;
}

.rc-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.rnav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.rnav-btn:hover { background: rgba(255,255,255,.15); color: var(--white); }
.rnav-dots { display: flex; gap: 7px; }
.rnav-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .2s;
}
.rnav-dot.active { background: var(--sky); width: 22px; border-radius: 4px; }

/* ============================================================
   ABOUT / MEET THE OWNER
   ============================================================ */
.about { background: var(--white); }
.about .section__title { color: var(--navy); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__nextdoor {
  margin-top: 60px;
}
.about__nextdoor .about__nd-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about__nextdoor .nd-review {
  border-bottom: none;
  padding-bottom: 0;
}
.about__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}
.about__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about__bio {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__bio--quote {
  font-style: italic;
  color: var(--navy);
  background: var(--sky-ll);
  border-left: 3px solid var(--sky);
  padding: 16px 20px;
  border-radius: 0 var(--r) var(--r) 0;
  margin-top: 8px;
}
.about__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: all .2s;
}
.about-badge:hover { border-color: var(--sky); background: var(--sky-ll); }
.about-badge svg { color: var(--green); flex-shrink: 0; }
.about-badge strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.about-badge span { font-size: 12px; color: var(--mid); }

.about__card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: #00b551;
  color: var(--white);
  font-family: var(--head);
  font-size: 16px;
  font-weight: 700;
}
.about__nd-reviews { padding: 8px 0; }
.nd-review {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.nd-review:last-child { border-bottom: none; }
.nd-review__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.nd-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}
.nd-review__header strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.nd-review__header span { display: block; font-size: 11px; color: var(--mid); }
.nd-review p { font-size: 14px; color: var(--slate); line-height: 1.65; font-style: italic; }

/* ============================================================
   GALLERY / BEFORE & AFTER
   ============================================================ */
.gallery { background: var(--white); }
.gallery__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery__item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all .28s;
}
.gallery__item:hover {
  border-color: rgba(14,165,233,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery__item img {
  width: 100%;
  display: block;
  filter: brightness(1.1) contrast(1.05);
}
.gallery__badge {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 6px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
.gallery__badge--before {
  left: 12px;
  background: rgba(239, 68, 68, .88);
}
.gallery__badge--after {
  left: calc(50% + 12px);
  right: auto;
  background: rgba(34, 197, 94, .88);
}
.gallery__item--stacked .gallery__badge--before {
  top: 12px;
  left: 12px;
}
.gallery__item--stacked .gallery__badge--after {
  top: calc(50% + 12px);
  left: 12px;
  right: auto;
  bottom: auto;
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: white;
}
.gallery__caption strong {
  display: block;
  font-family: var(--head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.gallery__caption span { font-size: 12px; opacity: .8; }
.gallery__note {
  text-align: center;
  font-size: 14px;
  color: var(--mid);
  margin-top: 32px;
}
.gallery__note a { color: var(--sky); font-weight: 600; }
.gallery__note a:hover { text-decoration: underline; }

/* ============================================================
   AREAS
   ============================================================ */
.areas { background: var(--navy); }
.areas .section__tag { background: rgba(14,165,233,.12); border-color: rgba(14,165,233,.2); }
.areas .section__title { color: var(--white); }
.areas .section__sub { color: rgba(255,255,255,.65); }
.areas__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.areas__left p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 4px;
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: all .2s;
  cursor: default;
}
.area-pill svg { color: rgba(255,255,255,.4); flex-shrink: 0; transition: color .2s; }
.area-pill:hover {
  border-color: var(--sky);
  color: var(--white);
  background: rgba(14,165,233,.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(14,165,233,.15);
}
.area-pill:hover svg { color: var(--sky); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 80px;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--sky-dd) 0%, var(--sky) 50%, var(--cyan) 100%);
}
.cta-band__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.05) 0%, transparent 50%);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.03em;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,.8); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--navy); }
.contact .section__tag { background: rgba(14,165,233,.12); border-color: rgba(14,165,233,.2); }
.contact .section__title { color: var(--white); }
.contact .section__sub { color: rgba(255,255,255,.65); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact__left > p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact__cards { display: flex; flex-direction: column; gap: 12px; }
.ccard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  transition: all .22s;
}
.ccard:hover { border-color: var(--sky); background: rgba(14,165,233,.1); box-shadow: 0 4px 16px rgba(14,165,233,.12); }
.ccard__icon {
  width: 42px; height: 42px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}
.ccard strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.ccard span { font-size: 12px; color: rgba(255,255,255,.5); }

/* Quote form */
.quote-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qf-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.qf-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sky);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.qf-section-label:not(:first-child) {
  margin-top: 8px;
}
.qf-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.qf-field label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.qf-field input,
.qf-field select,
.qf-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,.1);
}
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: #b0bac7; }
.qf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.qf-field textarea { resize: vertical; min-height: 110px; }
.qf-note { text-align: center; font-size: 13px; color: var(--mid); margin-top: 14px; }

/* Form success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success__check {
  width: 68px; height: 68px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #16a34a;
  animation: checkBounce .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes checkBounce {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.form-success h3 { font-family: var(--head); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--mid); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--white); color: var(--mid); }
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
.footer__logo img { height: 44px; width: auto; }
.footer__brand p { font-size: 14px; line-height: 1.75; margin-bottom: 18px; max-width: 280px; }
.footer__rating { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.fr-stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.footer__col h4 {
  font-family: var(--head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col ul li a {
  font-size: 14px;
  color: var(--mid);
  transition: color .2s;
}
.footer__col ul li a:hover { color: var(--sky); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 22px;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --py: 80px; }
  .hero__logo-badge { width: 200px; height: 200px; }
  .why-us__inner { gap: 56px; }
}

@media (max-width: 900px) {
  :root { --py: 72px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__logo-badge { display: none; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__photo { max-height: 350px; aspect-ratio: 4/3; order: 2; margin-top: 0; transform: none; }

  .services__layout { grid-template-columns: 1fr; }
  .services__gallery { position: static; }
  .services__grid .svc-card:last-child { max-width: none; }

  .nav__logo-img { height: 72px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__right { order: -1; }
  .about__nextdoor .about__nd-reviews { grid-template-columns: 1fr; }
  .gallery__stack { max-width: 100%; grid-template-columns: 1fr; }

  .why-us__inner { grid-template-columns: 1fr; }
  .why-us__right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
  .proof-card--main { grid-column: 1/-1; }
  .proof-grid { display: contents; }
  .proof-quote { grid-column: 1/-1; }

  .reviews__track { grid-template-columns: 1fr 1fr; }
  .reviews__track .review-card:last-child { display: none; }

  .areas__inner { grid-template-columns: 1fr; gap: 40px; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  .footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1/-1; }
}

@media (max-width: 640px) {
  :root { --py: 60px; --nav-h: 64px; }

  .hero__title { font-size: clamp(40px, 10vw, 60px); }
  .hero__stats { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .stat { flex: 1; min-width: 90px; padding: 16px 12px; }
  .stat__num { font-size: 20px; }

  .services__grid { grid-template-columns: 1fr; }
  .services__grid .svc-card:last-child { max-width: none; grid-column: auto; }

  .reviews__track { grid-template-columns: 1fr; }
  .reviews__track .review-card:last-child { display: flex; }

  .areas__grid { grid-template-columns: 1fr 1fr; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }

  .quote-form { padding: 24px 18px; }
  .qf-row { grid-template-columns: 1fr; }
  .qf-row--3 { grid-template-columns: 1fr; }

  .footer__main { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { justify-content: center; text-align: center; }

  .plans-strip { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Quote Wizard
   ============================================================ */
.quote-section {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.quote-section .section__tag { color: var(--sky); }
.quote-section .section__title { color: var(--navy); }
.quote-section .section__sub { color: var(--slate); }

.qwiz {
  max-width: 720px;
  margin: 0 auto;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}

/* Progress */
.qwiz__progress { margin-bottom: 32px; }
.qwiz__bar {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 16px;
}
.qwiz__bar-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  border-radius: 99px;
  transition: width .4s ease;
}
.qwiz__steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.qwiz__step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.3);
  border: 2px solid rgba(255,255,255,.08);
  transition: all .3s;
}
.qwiz__step.active {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}
.qwiz__step.done {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.qwiz__step-label {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* Panels */
.qwiz__panel { display: none; }
.qwiz__panel.active { display: block; animation: qwizFade .35s ease; }
@keyframes qwizFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.qwiz__panel-title {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.qwiz__panel-sub {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Fields */
.qwiz__field { margin-bottom: 20px; }
.qwiz__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: 6px;
}
.qwiz__field label em { font-weight: 400; color: rgba(255,255,255,.4); font-style: normal; }
.qwiz__field .req { color: var(--sky); }
.qwiz__field input,
.qwiz__field select,
.qwiz__field textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.qwiz__field input::placeholder { color: rgba(255,255,255,.3); }
.qwiz__field input:focus,
.qwiz__field select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}
.qwiz__field select option { background: var(--navy-2); color: var(--white); }
.qwiz__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Chips (radio buttons as clickable tiles) */
.qwiz__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.qwiz__chip {
  padding: 10px 20px;
  border-radius: var(--r);
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.qwiz__chip:hover { border-color: rgba(255,255,255,.25); color: var(--white); }
.qwiz__chip.active {
  border-color: var(--sky);
  background: rgba(14,165,233,.12);
  color: var(--white);
}

/* Checkboxes */
.qwiz__checks { display: flex; flex-direction: column; gap: 10px; }
.qwiz__check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.qwiz__check input[type="checkbox"],
.qwiz__check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sky);
  flex-shrink: 0;
}
.qwiz__check em { color: rgba(255,255,255,.4); font-style: normal; font-size: 13px; }
.qwiz__conditional { margin-bottom: 20px; padding: 16px; background: rgba(255,255,255,.03); border-radius: var(--r); border: 1px solid rgba(255,255,255,.06); }

/* Plan cards */
.qwiz__plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.qwiz__plan {
  background: rgba(255,255,255,.04);
  border: 2px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  cursor: pointer;
  transition: all .25s;
  position: relative;
}
.qwiz__plan:hover { border-color: rgba(255,255,255,.2); }
.qwiz__plan.selected {
  border-color: var(--sky);
  background: rgba(14,165,233,.08);
}
.qwiz__plan--popular {
  border-color: var(--sky);
}
.qwiz__plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.qwiz__plan h4 {
  font-family: var(--head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.qwiz__plan-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--sky);
  margin-bottom: 12px;
}
.qwiz__plan-price span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.5); }
.qwiz__plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.qwiz__plan ul li {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}
.qwiz__plan ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}
.qwiz__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  cursor: pointer;
}
.qwiz__toggle input { width: 16px; height: 16px; accent-color: var(--sky); }

/* Actions */
.qwiz__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.qwiz__action-group { display: flex; gap: 12px; align-items: center; }
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  padding: 10px 20px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  font-family: var(--font);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.3); color: var(--white); }

/* Price card */
.qwiz__price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  margin-bottom: 16px;
}
.qwiz__price-lines { display: flex; flex-direction: column; gap: 10px; }
.qwiz__price-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(255,255,255,.7);
}
.qwiz__price-line span:last-child { font-weight: 600; color: var(--white); }
.qwiz__price-line--discount { color: var(--green) !important; }
.qwiz__price-line--discount span { color: var(--green) !important; }
.qwiz__price-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 16px 0;
}
.qwiz__price-total {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--head);
  color: var(--white);
}
.qwiz__price-total span:last-child { color: var(--sky); }
.qwiz__disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Large home */
.qwiz__large-home {
  text-align: center;
  padding: 40px 20px;
}
.qwiz__large-icon { margin-bottom: 16px; }
.qwiz__large-home h4 {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.qwiz__large-home p {
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}

/* Confirmation */
.qwiz__confirm {
  text-align: center;
  padding: 40px 20px;
}
.qwiz__confirm-check { margin-bottom: 16px; }
.qwiz__confirm h3 {
  font-family: var(--head);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.qwiz__confirm p {
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* Field validation error */
.qwiz__field--error input,
.qwiz__field--error select {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.15);
}

/* Responsive */
@media (max-width: 700px) {
  .qwiz { padding: 28px 20px; }
  .qwiz__row { grid-template-columns: 1fr; }
  .qwiz__plans { grid-template-columns: 1fr; }
  .qwiz__actions { flex-direction: column-reverse; gap: 12px; }
  .qwiz__actions > * { width: 100%; text-align: center; justify-content: center; }
  .qwiz__action-group { flex-direction: column-reverse; width: 100%; }
  .qwiz__action-group > * { width: 100%; justify-content: center; }
  .qwiz__step { width: 28px; height: 28px; font-size: 12px; }
}
