/*!
 * Sparko — Elementor widget library
 * Author: Moeed
 * Every rule is scoped to .sparko so nothing leaks into the theme.
 */
/* ==========================================================================
   Sparko Cleaning Georgia — design system
   Shared by every Sparko Elementor widget
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
.sparko {
  --blue: #0273d8;
  --blue-bright: #0788ed;
  --blue-deep: #0058b2;
  --blue-ink: #0276d5;
  --blue-soft: #eff8ff;
  --blue-tint: #eff8ff;
  --blue-line: #dceaf4;

  --navy: #061f38;
  --navy-2: #082746;
  --navy-3: #072b50;

  --ink: #082746;
  --ink-2: #143656;
  --muted: #637487;
  --muted-light: rgba(255, 255, 255, .72);
  --line: #dceaf4;

  --white: #ffffff;

  --pad: clamp(20px, 2.4vw, 24px);
  --wrap: 1200px;
  --wrap-narrow: 986px;
  --inner: calc(var(--wrap) - (var(--pad) * 2));

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-card: 0 18px 40px rgba(6, 31, 56, .08);
  --shadow-float: 0 22px 50px rgba(6, 31, 56, .16);
  --shadow-hero: 0 34px 80px rgba(4, 24, 48, .30);

  --font: "Noto Sans Georgian", "BPG Arial", "Segoe UI", system-ui, -apple-system,
    "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, .68, .32, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
:where(.sparko) *,
:where(.sparko) *::before,
:where(.sparko) *::after { box-sizing: border-box; }



.sparko {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.sparko img { display: block; max-width: 100%; height: auto; }
.sparko a { color: inherit; text-decoration: none; }
.sparko button { font: inherit; color: inherit; cursor: pointer; }
.sparko input { font: inherit; }
.sparko p { margin: 0; }

.sparko h1,
.sparko h2,
.sparko h3,
.sparko h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.01em;
}

.sparko em { font-style: normal; color: var(--blue); }

.sparko :focus-visible {
  outline: 3px solid #ffb547;
  outline-offset: 3px;
  border-radius: 6px;
}

.sparko .site-shell { position: relative; overflow: clip; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.sparko .section-pad {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sparko .section-space { padding-block: clamp(56px, 6.5vw, 108px); }

/* full-bleed background trick for padded containers */
.sparko .bleed {
  clip-path: inset(0 -100vmax);
}

.sparko .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--blue);
  margin-bottom: 18px;
}

.sparko .eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: currentColor;
  opacity: .55;
  flex: none;
}

.sparko .eyebrow.light { color: rgba(255, 255, 255, .85); }

.sparko .section-heading h2 {
  font-size: clamp(28px, 3.3vw, 46px);
  max-width: 18ch;
}

.sparko .split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .85fr);
  gap: clamp(20px, 3vw, 60px);
  align-items: end;
  margin-bottom: clamp(30px, 3.5vw, 52px);
}

.sparko .split-heading > p {
  color: var(--muted);
  font-size: 15.5px;
  padding-bottom: 6px;
}

.sparko .center-heading {
  text-align: center;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.sparko .center-heading h2 {
  margin-inline: auto;
  max-width: 18ch;
  font-size: clamp(28px, 3.3vw, 46px);
}
.sparko .center-heading .eyebrow { justify-content: center; }

/* --------------------------------------------------------------------------
   4. Buttons & links
   -------------------------------------------------------------------------- */
.sparko .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
    background-color .25s var(--ease), color .25s var(--ease);
}

.sparko .btn span {
  display: inline-flex;
  transition: transform .25s var(--ease);
}

.sparko .btn:hover { transform: translateY(-2px); }
.sparko .btn:hover span { transform: translate(3px, -3px); }

.sparko .btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 14px 26px rgba(2, 115, 216, .28);
}

.sparko .btn-primary:hover { background: var(--blue-deep); }

.sparko .btn-white {
  background: #fff;
  color: var(--blue-ink);
  box-shadow: 0 16px 34px rgba(4, 24, 60, .22);
}

.sparko .btn-white:hover { color: var(--blue); }

.sparko .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}

.sparko .text-link span { transition: transform .25s var(--ease); }
.sparko .text-link:hover span { transform: translateX(5px); }

.sparko .light-link { color: rgba(255, 255, 255, .92); }

.sparko .play-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .34);
  font-size: 15px;
}

.sparko .center-action {
  margin-top: clamp(28px, 3vw, 46px);
  text-align: center;
}

/* --------------------------------------------------------------------------
   5. Hero wrap: topbar + header
   -------------------------------------------------------------------------- */
.sparko .hero-wrap,
.sparko .subpage-hero {
  position: relative;
  isolation: isolate;
  background-image:
    radial-gradient(120% 150% at 88% 12%, rgba(255, 255, 255, .20) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, #0389ef 0%, #077de1 50%, #005cbe 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, 100% var(--sk-band, 760px);
  background-position: 0 0, 0 var(--sk-band-offset, 0px);
  padding-bottom: clamp(74px, 8vw, 124px);
}

.sparko .topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .82);
}

.sparko .sk-topbar-band { background: transparent; }

.sparko .topbar div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sparko .topbar a { font-weight: 600; color: #fff; }
.sparko .topbar a:hover { color: #bcd8ff; }

.sparko .main-header {
  position: relative;
  z-index: 5;
  width: calc(100% - var(--pad) * 2);
  max-width: calc(var(--wrap) - var(--pad) * 2);
  margin: clamp(9px, 1vw, 13px) auto 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  padding: 10px 12px 10px 22px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-float);
}

.sparko .brand { flex: none; }
.sparko .brand img { height: 42px; width: auto; }

.sparko .main-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-inline: auto;
}

.sparko .main-header nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 2px;
  position: relative;
  transition: color .2s var(--ease);
}

.sparko .main-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: width .25s var(--ease);
}

.sparko .main-header nav a:hover,
.sparko .main-header nav a[aria-current="page"] { color: var(--blue); }
.sparko .main-header nav a:hover::after,
.sparko .main-header nav a[aria-current="page"]::after { width: 100%; }

.sparko .header-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(2, 115, 216, .3);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}

.sparko .header-cta:hover { background: var(--blue-deep); transform: translateY(-2px); }

/* mobile menu (details/summary) */
.sparko .mobile-menu { display: none; position: relative; margin-left: auto; }

.sparko .mobile-menu summary {
  list-style: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  cursor: pointer;
}

.sparko .mobile-menu summary::-webkit-details-marker { display: none; }

.sparko .mobile-menu summary i {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

.sparko .mobile-menu[open] summary i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sparko .mobile-menu[open] summary i:nth-child(2) { opacity: 0; }
.sparko .mobile-menu[open] summary i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sparko .mobile-menu > div {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-float);
  z-index: 20;
}

.sparko .mobile-menu > div a {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
}

.sparko .mobile-menu > div a:hover { background: var(--blue-tint); color: var(--blue); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.sparko .hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
  padding-block: clamp(42px, 5.4vw, 84px) clamp(20px, 2vw, 34px);
}

.sparko .hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  pointer-events: none;
  z-index: -1;
}

.sparko .hero-orb-one {
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: -70px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), transparent 65%);
}

.sparko .hero-orb-two {
  width: 460px;
  height: 460px;
  right: -190px;
  top: -160px;
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, .12), transparent 62%);
}

.sparko .hero-copy { color: #fff; }

.sparko .hero-copy h1 {
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1.12;
  max-width: 13ch;
}

.sparko .hero-copy h1 span { color: rgba(255, 255, 255, .62); }

.sparko .hero-copy > p {
  margin-top: 18px;
  max-width: 46ch;
  font-size: clamp(12.5px, 1vw, 13.5px);
  color: rgba(255, 255, 255, .82);
}

.sparko .hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  flex-wrap: wrap;
  margin-top: 32px;
}

.sparko .hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(34px, 4vw, 52px);
}

.sparko .avatar-stack { display: flex; }

.sparko .avatar-stack span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-ink);
  background: #dbeafe;
  border: 2px solid #fff;
  margin-left: -12px;
}

.sparko .avatar-stack span:first-child { margin-left: 0; }

.sparko .hero-proof > div:last-child { display: grid; }
.sparko .hero-proof strong { color: #fff; font-size: 16px; line-height: 1.3; }
.sparko .hero-proof small { color: rgba(255, 255, 255, .72); font-size: 12.5px; }

/* hero visual */
.sparko .hero-visual { position: relative; }

.sparko .hero-image-frame {
  position: relative;
  border-radius: 50% 50% 28px 50%;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, #cfe2fb, #eef5ff);
}

.sparko .hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sparko .sparkle {
  position: absolute;
  color: rgba(255, 255, 255, .9);
  font-size: 22px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

.sparko .sparkle-a { top: 12%; left: 12%; }
.sparko .sparkle-b { top: 30%; right: 16%; font-size: 15px; animation-delay: 1.1s; }


.sparko .floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px 13px 13px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(4, 24, 48, .2);
  z-index: 3;
}

.sparko .floating-card strong { display: block; font-size: 13.5px; line-height: 1.35; color: var(--ink); }
.sparko .floating-card small { font-size: 11.5px; color: var(--muted); }

.sparko .floating-card span {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #fff;
}

.sparko .rating-card { left: -6%; bottom: 15%; }
.sparko .rating-card .rating-icon { background: var(--blue); }

.sparko .eco-card { right: -4%; top: 16%; }
.sparko .eco-card .eco-icon { background: #17a97a; font-size: 10px; }


/* --------------------------------------------------------------------------
   7. Trust strip
   -------------------------------------------------------------------------- */
.sparko .trust-strip {
  position: relative;
  z-index: 6;
  width: calc(100% - (var(--pad) * 2));
  max-width: var(--inner);
  margin: clamp(-70px, -4vw, -46px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 34px);
  padding: clamp(22px, 2.6vw, 36px);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(6, 31, 56, .12);
}

.sparko .trust-item { display: flex; gap: 14px; align-items: flex-start; }

.sparko .trust-item > span {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  flex: none;
}

.sparko .trust-item h3 { font-size: 16px; margin-bottom: 4px; }
.sparko .trust-item p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* --------------------------------------------------------------------------
   8. About
   -------------------------------------------------------------------------- */
.sparko .about-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
}

.sparko .about-gallery { position: relative; }

.sparko .about-main {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 26px 60px rgba(6, 31, 56, .16);
  background: linear-gradient(140deg, #cfe2fb, #eef5ff);
}

.sparko .experience-badge {
  position: absolute;
  right: -10px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 36px rgba(2, 115, 216, .34);
}

.sparko .experience-badge strong { font-size: 30px; font-weight: 700; line-height: 1; }
.sparko .experience-badge span { font-size: 12px; line-height: 1.35; color: rgba(255, 255, 255, .88); }

.sparko .about-copy h2 { font-size: clamp(28px, 3.3vw, 46px); }

.sparko .about-copy .lead {
  margin-top: 20px;
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  color: var(--muted);
  max-width: 52ch;
}

.sparko .check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 26px 0 30px;
}

.sparko .check-grid span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   9. Services grid
   -------------------------------------------------------------------------- */
.sparko .services-section { background: var(--blue-tint); }

.sparko .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 26px);
}

.sparko .service-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.sparko .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(6, 31, 56, .16);
}

.sparko .service-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(140deg, #cfe2fb, #eef5ff);
}

.sparko .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.sparko .service-card:hover .service-image img { transform: scale(1.06); }

.sparko .service-image span {
  position: absolute;
  left: 18px;
  bottom: -20px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  box-shadow: 0 12px 24px rgba(2, 115, 216, .32);
}

.sparko .service-body { padding: 34px 22px 22px; }
.sparko .service-body h3 { font-size: 18px; margin-bottom: 9px; }

.sparko .service-body > p {
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.6;
  min-height: 66px;
}

.sparko .service-body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.sparko .service-body strong { font-size: 15px; color: var(--ink); }

.sparko .service-body > div a {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 15px;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.sparko .service-body > div a:hover {
  background: var(--blue);
  color: #fff;
  transform: translate(2px, -2px);
}

/* --------------------------------------------------------------------------
   10. Calculator
   -------------------------------------------------------------------------- */
.sparko .home-calculator {
  background:
    radial-gradient(110% 140% at 85% 12%, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(135deg, #0785ea 0%, #0563b8 55%, #06437f 100%);
  color: #fff;
}

.sparko .calculator-heading { margin-bottom: clamp(28px, 3.4vw, 50px); }
.sparko .calculator-heading h2 { color: #fff; }
.sparko .calculator-heading em { color: rgba(255, 255, 255, .62); }
.sparko .calculator-heading > p { color: rgba(255, 255, 255, .78); }

.sparko .calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, .82fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: start;
}

.sparko .calc-form-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(4, 24, 48, .24);
}

.sparko .calc-section { padding: clamp(22px, 2.6vw, 36px); }
.sparko .calc-section + .calc-section { border-top: 1px solid var(--line); }

.sparko .calc-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.sparko .calc-step > span {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.sparko .calc-step h2 { font-size: 14.5px; font-weight: 600; }
.sparko .calc-step p { font-size: 10.5px; color: var(--muted); }

/* area control */
.sparko .area-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  padding: 9px;
  border-radius: var(--r-md);
  background: #fbfdff;
  border: 1px solid var(--line);
}

.sparko .area-control button {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}

.sparko .area-control button:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.sparko .area-control label {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.sparko .area-control input {
  width: 100%;
  max-width: 130px;
  border: 0;
  background: transparent;
  text-align: right;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 700;
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
}

.sparko .area-control input::-webkit-outer-spin-button,
.sparko .area-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.sparko .area-control label span { font-size: 15px; font-weight: 600; color: var(--muted); }

.sparko .area-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) var(--progress, 0%), #e3ebf6 var(--progress, 0%));
  cursor: pointer;
}

.sparko .area-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--blue);
  box-shadow: 0 4px 12px rgba(2, 115, 216, .4);
}

.sparko .area-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--blue);
  box-shadow: 0 4px 12px rgba(2, 115, 216, .4);
}

.sparko .range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 9.5px;
  color: var(--muted);
}

/* service options */
.sparko .service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sparko .service-option {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease),
    box-shadow .2s var(--ease);
}

.sparko .service-option:hover { border-color: var(--blue-line); background: var(--blue-tint); }

.sparko .service-option.active {
  border-color: var(--blue);
  background: var(--blue-tint);
  box-shadow: 0 10px 24px rgba(2, 115, 216, .12);
}

.sparko .service-option input { position: absolute; opacity: 0; pointer-events: none; }

.sparko .radio-ui {
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 50%;
  border: 2px solid #c9d6e8;
  display: grid;
  place-items: center;
  transition: border-color .2s var(--ease);
}

.sparko .radio-ui::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  transform: scale(0);
  transition: transform .2s var(--ease);
}

.sparko .service-option.active .radio-ui { border-color: var(--blue); }
.sparko .service-option.active .radio-ui::after { transform: scale(1); }

.sparko .option-copy { flex: 1; min-width: 0; }
.sparko .option-copy strong { display: block; font-size: 13px; font-weight: 600; line-height: 1.35; }
.sparko .option-copy small { font-size: 9.5px; color: var(--muted); }

.sparko .service-option b {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.sparko .service-option b small { font-size: 8.5px; font-weight: 500; color: var(--muted); }

/* extras */
.sparko .extra-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sparko .extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .2s var(--ease);
}

.sparko .extra-item.has-qty { border-color: var(--blue); background: var(--blue-tint); }
.sparko .extra-item strong { display: block; font-size: 13px; font-weight: 600; line-height: 1.35; }
.sparko .extra-item small { font-size: 9.5px; color: var(--muted); }

.sparko .qty-control {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: none;
  padding: 4px;
  border-radius: 10px;
  background: #f1f5fc;
}

.sparko .qty-control button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 17px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}

.sparko .qty-control button:hover { background: var(--blue); color: #fff; }
.sparko .qty-control span { min-width: 24px; text-align: center; font-size: 14px; font-weight: 600; }

/* summary */
.sparko .calc-summary {
  position: sticky;
  top: 20px;
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, #0a80e6 0%, #0369c9 55%, #0058b2 100%);
  color: #fff;
  box-shadow: 0 30px 70px rgba(2, 88, 178, .28);
}

.sparko .home-calculator .calc-summary {
  background: linear-gradient(155deg, #0f4a86 0%, #07305d 45%, #04509b 100%);
  box-shadow: 0 30px 70px rgba(4, 20, 44, .35);
}

.sparko .calc-summary h2 { font-size: 21px; }

.sparko .total-price {
  margin: 12px 0 20px;
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}

.sparko .total-price small { font-size: .5em; font-weight: 600; color: rgba(255, 255, 255, .7); }

.sparko .summary-lines { display: grid; gap: 10px; }

.sparko .summary-lines > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, .16);
}

.sparko .summary-lines > div[hidden] { display: none; }
.sparko .summary-lines span { color: rgba(255, 255, 255, .62); }
.sparko .summary-lines strong { font-weight: 600; text-align: right; }

.sparko .summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 6px 0 18px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  font-size: 15px;
  font-weight: 600;
}

.sparko .summary-total strong { font-size: 18px; }

.sparko .calc-submit { width: 100%; border-radius: 999px; justify-content: space-between; padding-inline: 22px; }

.sparko .summary-note {
  margin-top: 14px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .55);
}

.sparko .summary-benefits {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.sparko .summary-benefits span { font-size: 12.5px; color: rgba(255, 255, 255, .75); }

/* --------------------------------------------------------------------------
   11. Process
   -------------------------------------------------------------------------- */
.sparko .process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

.sparko .process-grid::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--blue-line) 0 8px, transparent 8px 16px);
}

.sparko .process-grid article { position: relative; text-align: center; }

.sparko .process-grid article > span {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  border: 5px solid #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}

.sparko .process-grid article:hover > span { background: var(--blue); color: #fff; }
.sparko .process-grid h3 { font-size: 17px; margin-bottom: 7px; }
.sparko .process-grid p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* --------------------------------------------------------------------------
   12. Testimonial
   -------------------------------------------------------------------------- */
.sparko .testimonial-section { background: var(--navy-3); color: #fff; }

.sparko .testimonial-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
}

.sparko .testimonial-inner h2 { color: #fff; }
.sparko .testimonial-inner em { color: #7fb2ff; }

.sparko .testimonial-inner blockquote {
  position: relative;
  margin: 0;
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r-lg);
  background: #183a5c;
  border: 1px solid rgba(255, 255, 255, .08);
}

.sparko .quote-mark {
  font-size: 64px;
  line-height: .6;
  color: #7fb2ff;
  opacity: .45;
  margin-bottom: 12px;
}

.sparko .testimonial-inner blockquote p {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
}

.sparko .testimonial-inner footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  gap: 2px;
}

.sparko .testimonial-inner footer span { font-weight: 600; font-size: 15px; }
.sparko .testimonial-inner footer small { font-size: 12.5px; color: rgba(255, 255, 255, .6); }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.sparko .footer { background: var(--navy); color: #fff; }

.sparko .footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 3vw, 50px);
  flex-wrap: wrap;
  padding-block: clamp(40px, 4.6vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.sparko .footer-cta h2 { font-size: clamp(26px, 3vw, 42px); color: #fff; }
.sparko .footer-cta em { color: #7fb2ff; }

.sparko .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 50px);
  padding-block: clamp(34px, 3.6vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.sparko .footer-brand img {
  height: 46px;
  width: auto;
  padding: 9px 14px;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 18px;
}

.sparko .footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .62);
  max-width: 40ch;
}

.sparko .footer-main > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }

.sparko .footer-main h3 {
  font-size: 14.5px;
  margin-bottom: 6px;
  color: #fff;
}

.sparko .footer-main a,
.sparko .footer-main span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .62);
  transition: color .2s var(--ease);
}

.sparko .footer-main a:hover { color: #7fb2ff; }
.sparko .footer-main strong { font-size: 15px; color: #fff; }

.sparko .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
}

.sparko .footer-bottom div { display: flex; gap: 22px; }
.sparko .footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   14. Services page
   -------------------------------------------------------------------------- */
.sparko .subpage-hero { padding-bottom: clamp(12px, 1.4vw, 20px); }

.sparko .subpage-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -46px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, .12), transparent 62%);
  pointer-events: none;
  z-index: 1;
}

.sparko .subpage-heading {
  position: relative;
  z-index: 2;
  padding-top: clamp(38px, 4.8vw, 76px);
  color: #fff;
}

.sparko .subpage-heading h1 {
  font-size: clamp(31px, 4.1vw, 56px);
  max-width: 20ch;
}

.sparko .subpage-heading em { color: rgba(255, 255, 255, .62); }

.sparko .subpage-heading > p {
  margin-top: 16px;
  max-width: 62ch;
  font-size: clamp(11.5px, .9vw, 12.5px);
  color: rgba(255, 255, 255, .8);
}

.sparko .services-page { max-width: var(--wrap-narrow); }

.sparko .service-list { display: grid; gap: clamp(46px, 5.2vw, 92px); }

.sparko .service-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 62px);
  align-items: center;
}

.sparko .service-detail-image { position: relative; }

.sparko .service-detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 26px 60px rgba(6, 31, 56, .16);
  background: linear-gradient(140deg, #cfe2fb, #eef5ff);
}

.sparko .service-detail-image > span {
  position: absolute;
  right: 20px;
  bottom: -18px;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(2, 115, 216, .34);
}

.sparko .service-price {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.sparko .service-detail h2 { font-size: clamp(22px, 2.1vw, 30px); }

.sparko .service-detail p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

.sparko .service-detail ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 22px 0 26px;
  padding: 0;
}

.sparko .service-detail li { font-size: 14px; color: var(--ink-2); }

.sparko .tick { color: var(--blue); font-weight: 700; }
.sparko .summary-benefits .tick { color: #7fb2ff; }

.sparko .service-detail:nth-child(even) .service-detail-image { order: 2; }

/* --------------------------------------------------------------------------
   14b. Calculator page
   -------------------------------------------------------------------------- */
.sparko .calc-page { max-width: var(--wrap-narrow); }
.sparko .calc-page .calc-form-card { box-shadow: 0 26px 60px rgba(6, 31, 56, .10); }
.sparko .calc-page .summary-benefits .tick { color: #d7e8ff; }

/* --------------------------------------------------------------------------
   14c. About page
   -------------------------------------------------------------------------- */
.sparko .about-story {
  max-width: var(--wrap-narrow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
}

.sparko .about-story > div:first-child { position: relative; }

.sparko .about-story img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 26px 60px rgba(6, 31, 56, .16);
  background: linear-gradient(140deg, #cfe2fb, #eef5ff);
}

.sparko .story-stamp {
  position: absolute;
  right: -24px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: 0 20px 44px rgba(6, 31, 56, .18);
}

.sparko .story-stamp strong { font-size: 27px; font-weight: 700; line-height: 1; color: var(--blue); }
.sparko .story-stamp span { font-size: 11.5px; line-height: 1.35; color: var(--muted); }

.sparko .about-story h2 { font-size: clamp(26px, 3vw, 42px); }

.sparko .about-story > div:last-child p {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 54ch;
}

.sparko .about-story .btn { margin-top: 26px; }

.sparko .values-section { background: var(--blue-tint); }
.sparko .values-section .section-pad { max-width: var(--wrap-narrow); }

.sparko .values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.sparko .values-grid article {
  padding: clamp(20px, 2.2vw, 28px);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.sparko .values-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(6, 31, 56, .14);
}

.sparko .values-grid article > span {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.sparko .values-grid h3 { font-size: 17px; margin-bottom: 8px; }
.sparko .values-grid p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* --------------------------------------------------------------------------
   14d. Contact page
   -------------------------------------------------------------------------- */
.sparko .contact-page {
  max-width: var(--wrap-narrow);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 3.4vw, 56px);
  align-items: start;
}

.sparko .contact-info h2 { font-size: clamp(26px, 3vw, 42px); }

.sparko .contact-info > p {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 44ch;
}

.sparko .contact-cards { display: grid; gap: 12px; margin: 28px 0 22px; }

.sparko .contact-cards > * {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: 0 10px 26px rgba(6, 31, 56, .06);
  transition: border-color .25s var(--ease), transform .25s var(--ease),
    box-shadow .25s var(--ease);
}

.sparko .contact-cards a:hover {
  border-color: var(--blue-line);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(6, 31, 56, .1);
}

.sparko .contact-cards > * > span {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 17px;
}

.sparko .contact-cards small { display: block; font-size: 11.5px; color: var(--muted); }
.sparko .contact-cards strong { font-size: 14.5px; }

.sparko .hours-card {
  padding: clamp(20px, 2.2vw, 26px);
  border-radius: var(--r-lg);
  background: var(--navy);
  color: #fff;
}

.sparko .hours-card h3 { font-size: 15px; margin-bottom: 12px; }

.sparko .hours-card > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.sparko .hours-card span { color: rgba(255, 255, 255, .6); }
.sparko .hours-card strong { color: #fff; font-weight: 600; }

.sparko .form-card {
  padding: clamp(24px, 2.8vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: 0 26px 60px rgba(6, 31, 56, .10);
}

.sparko .form-card h2 { font-size: clamp(21px, 2.2vw, 28px); }
.sparko .form-card > p { margin-top: 8px; font-size: 13.5px; color: var(--muted); }

.sparko .contact-form { display: grid; gap: 16px; margin-top: 24px; }

.sparko .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sparko .contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
}

.sparko .contact-form input,
.sparko .contact-form select,
.sparko .contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.sparko .contact-form input::placeholder,
.sparko .contact-form textarea::placeholder { color: #9db0c6; }

.sparko .contact-form input:focus,
.sparko .contact-form select:focus,
.sparko .contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(2, 115, 216, .12);
}

.sparko .contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%23637487' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.sparko .contact-form textarea { min-height: 132px; resize: vertical; line-height: 1.6; }
.sparko .contact-form .btn { justify-self: start; margin-top: 6px; }

.sparko .form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-line);
  font-size: 13.5px;
  color: var(--blue-ink);
}

.sparko .form-status[hidden] { display: none; }

/* --------------------------------------------------------------------------
   15. Reveal animation
   -------------------------------------------------------------------------- */
.sparko .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  will-change: opacity, transform;
}

.sparko .reveal.is-visible { opacity: 1; transform: none; }
.sparko .delay-1 { transition-delay: .14s; }
.sparko .delay-2 { transition-delay: .26s; }

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .sparko .hero-copy h1 { max-width: 14ch; }
  .sparko .rating-card { left: -2%; }
  .sparko .eco-card { right: 0; }
  .sparko .calc-layout { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
}

@media (max-width: 1040px) {
  .sparko .main-header nav,
.sparko .main-header .header-cta { display: none; }
  .sparko .mobile-menu { display: block; }

  .sparko .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(40px, 6vw, 60px);
    padding-bottom: 10px;
  }

  .sparko .hero-copy h1 { max-width: 16ch; }
  .sparko .hero-copy > p { max-width: 58ch; }
  .sparko .hero-visual { max-width: 620px; }

  .sparko .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .sparko .about-section { grid-template-columns: minmax(0, 1fr); }
  .sparko .about-gallery { max-width: 560px; }

  .sparko .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .sparko .calc-layout { grid-template-columns: minmax(0, 1fr); }
  .sparko .calc-summary { position: static; }

  .sparko .testimonial-inner { grid-template-columns: minmax(0, 1fr); }

  .sparko .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .sparko .about-story { grid-template-columns: minmax(0, 1fr); }
  .sparko .about-story > div:first-child { max-width: 560px; }

  .sparko .contact-page { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .sparko .split-heading { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .sparko .section-heading h2 { max-width: 22ch; }

  .sparko .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 34px; }
  .sparko .process-grid::before { display: none; }

  .sparko .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .sparko .service-detail { grid-template-columns: minmax(0, 1fr); }
  .sparko .service-detail:nth-child(even) .service-detail-image { order: 0; }
  .sparko .service-detail-image > span { width: 50px; height: 50px; }
}

@media (max-width: 720px) {
  .sparko .topbar { font-size: 11.5px; }
  .sparko .topbar > span { display: none; }
  .sparko .topbar div { width: 100%; justify-content: space-between; gap: 12px; }

  .sparko .service-options,
.sparko .extra-list { grid-template-columns: minmax(0, 1fr); }

  .sparko .field-row { grid-template-columns: minmax(0, 1fr); }

  .sparko .service-body > p { min-height: 0; }
}

@media (max-width: 640px) {
  .sparko .brand img { height: 36px; }
  .sparko .main-header { padding: 9px 10px 9px 16px; }

  .sparko .hero-copy h1 { font-size: clamp(30px, 8.4vw, 40px); max-width: 20ch; }
  .sparko .hero-actions { gap: 14px; }
  .sparko .hero-actions .btn { width: 100%; }
  .sparko .hero-image-frame { border-radius: 50% 50% 20px 50%; }
  .sparko .floating-card { padding: 10px 14px 10px 10px; }
  .sparko .floating-card small { display: none; }
  .sparko .rating-card { left: 0; bottom: 8%; }
  .sparko .eco-card { right: 0; top: 8%; }

  .sparko .trust-strip { grid-template-columns: minmax(0, 1fr); gap: 18px; }

  .sparko .check-grid { grid-template-columns: minmax(0, 1fr); }
  .sparko .experience-badge { right: 12px; bottom: 14px; padding: 13px 16px; }

  .sparko .service-grid { grid-template-columns: minmax(0, 1fr); }

  .sparko .calc-step { gap: 11px; }
  .sparko .area-control { flex-wrap: nowrap; }
  .sparko .area-control button { width: 42px; height: 42px; }

  .sparko .process-grid { grid-template-columns: minmax(0, 1fr); }

  .sparko .values-grid { grid-template-columns: minmax(0, 1fr); }
  .sparko .story-stamp { right: 14px; bottom: 16px; padding: 12px 18px; }
  .sparko .contact-form .btn { justify-self: stretch; }

  .sparko .footer-main { grid-template-columns: minmax(0, 1fr); }
  .sparko .footer-cta .btn { width: 100%; }
  .sparko .footer-bottom { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  :where(.sparko) *,
:where(.sparko) *::before,
:where(.sparko) *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .sparko .reveal { opacity: 1; transform: none; }
}

@media print {
  .sparko .hero-wrap,
.sparko .home-calculator { background: #0273d8 !important; -webkit-print-color-adjust: exact; }
}


/* --------------------------------------------------------------------------
   Plugin additions
   -------------------------------------------------------------------------- */

/* Reveal is opt-in: JS sets data-sk-anim, so content is never hidden when JS
   is stripped by an optimisation plugin or blocked. */
.sparko .reveal { opacity: 1; transform: none; }
.sparko[data-sk-anim="on"] .reveal { opacity: 0; transform: translateY(22px); }
.sparko[data-sk-anim="on"] .reveal.is-visible { opacity: 1; transform: none; }

/* Ambient motion is driven by requestAnimationFrame in sparko.js, not
   @keyframes, because optimisation plugins strip keyframes. */
.sparko .sparkle,
.sparko .floating-card { will-change: transform, opacity; }

/* Editor helpers */
.sparko .sk-empty {
  padding: 40px 20px;
  border: 1px dashed var(--blue-line);
  border-radius: var(--r-md);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* Header/hero seam: both widgets share the same horizontal gradient so a
   stacked Header + Hero reads as one blue block. */
.sparko .sk-flush-top { padding-top: 0; }
.sparko .sk-flush-bottom { padding-bottom: 0; }

/* Widget root: allows the overlay layer to sit behind content but above the
   widget's own background image. */
.sparko { position: relative; isolation: isolate; }
.sparko > .sk-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* Shared blue band used by the header widget and every hero widget. Because it
   is a horizontal gradient, a stacked Header + Hero reads as one block with no
   visible seam. */
.sparko .sk-blue {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  background-image:
    radial-gradient(120% 150% at 88% 12%, rgba(255, 255, 255, .20) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, #0389ef 0%, #077de1 50%, #005cbe 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, 100% var(--sk-band, 760px);
  background-position: 0 0, 0 var(--sk-band-offset, 0px);
}

/* The header widget carries no bottom padding — the hero below supplies it. */
.sparko.sk-global-header .sk-blue { padding-bottom: 0; }

/* Slider fill is a variable so the panel can repaint it. */
.sparko .area-slider {
  background: linear-gradient(90deg,
    var(--sk-slider-fill, var(--blue)) var(--progress, 0%),
    #e3ebf6 var(--progress, 0%));
}

/* Calculator — Form: summary colour preset (prefix_class on the Elementor
   element, so !important is required to beat Elementor's generated CSS). */
.sk-summary-navy .calc-summary {
  background: linear-gradient(155deg, #0f4a86 0%, #07305d 45%, #04509b 100%) !important;
}
.sk-summary-blue .calc-summary {
  background: linear-gradient(160deg, #0a80e6 0%, #0369c9 55%, #0058b2 100%) !important;
}
.sk-summary-blue .summary-benefits .tick { color: #d7e8ff; }

/* Services rows: option to keep every image on the same side. */
.sparko .service-list.sk-no-alt .service-detail:nth-child(even) .service-detail-image { order: 0; }

/* Subpage hero decorative ring, toggled from the panel. */
.sparko .subpage-hero::after { content: none; }
.sparko .subpage-hero.sk-has-orb::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -46px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, .12), transparent 62%);
  pointer-events: none;
  z-index: 1;
}

/* Heading tag freedom: .sk-h carries the h1 sizing whatever tag is chosen. */
.sparko .subpage-heading .sk-h {
  font-size: clamp(31px, 4.1vw, 56px);
  max-width: 20ch;
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
}
.sparko .subpage-heading .sk-h em { color: rgba(255, 255, 255, .66); }

/* Elementor gives every widget a wrapper; make sure full-width sections can
   still breathe inside a boxed column. */
.elementor-widget-sparko-global-header .elementor-widget-container,
.elementor-widget-sparko-global-footer .elementor-widget-container { overflow: visible; }


/* Widget roots clip their own decoration — a widget can't rely on a
   page-level overflow-x guard the way a standalone page can. */
.sparko .hero-wrap,
.sparko .services-section,
.sparko .home-calculator,
.sparko .testimonial-section,
.sparko .values-section,
.sparko .footer {
  overflow: hidden;
  overflow: clip;
}

/* --------------------------------------------------------------------------
   Standalone section widgets
   Each of these normally lives inside a two-column grid on its page. Dropped on
   its own, it needs the page container + a sane max width of its own.
   -------------------------------------------------------------------------- */
.sparko .sk-calc-solo,
.sparko .sk-contact-solo,
.sparko.sk-services-solo {
  max-width: var(--wrap-narrow);
  margin-inline: auto;
}

.sparko .sk-calc-solo .calc-summary { position: static; }
.sparko .sk-contact-solo .hours-card { max-width: 520px; }

/* Single service row: optional mirrored layout. */
.sparko.sk-services-solo .service-detail.sk-image-right .service-detail-image { order: 2; }

/* CTA band on its own keeps the navy block but rounds off. */
.sparko .sk-cta-solo {
  background: var(--navy);
  overflow: hidden;
  overflow: clip;
}
.sparko .sk-cta-solo .footer-cta { border-top: 0; }

/* --------------------------------------------------------------------------
   Blue band continuity
   The reference paints header + hero as ONE 135deg gradient. Because they are
   two widgets here, the gradient is drawn at a fixed notional band height and
   the hero simply shows the next slice, so the two line up seamlessly. Both
   numbers are exposed as panel controls if a header ends up taller.
   -------------------------------------------------------------------------- */
.sparko.sk-global-topbar .sk-blue,
.sparko.sk-global-header .sk-blue { --sk-band: 440px; --sk-band-offset: 0px; }

.sparko.sk-services-hero .sk-blue,
.sparko.sk-calculator-hero .sk-blue,
.sparko.sk-about-hero .sk-blue,
.sparko.sk-contact-hero .sk-blue { --sk-band: 440px; --sk-band-offset: -117px; }

.sparko.sk-home-hero .sk-blue { --sk-band: 720px; --sk-band-offset: -117px; }

/* A hero used on its own (no header above) starts the gradient at the top. */
.sk-no-header .sk-blue { --sk-band-offset: 0px !important; }


/* ==========================================================================
   Mobile pass — every section checked at 390px
   ========================================================================== */
@media (max-width: 640px) {

  /* --- Typography: headings down, body up ------------------------------- */
  .sparko .hero-copy h1 { font-size: clamp(25px, 7vw, 30px); max-width: 100%; }

  .sparko .subpage-heading h1,
  .sparko .subpage-heading h2,
  .sparko .subpage-heading .sk-h { font-size: clamp(24px, 6.6vw, 29px); max-width: 100%; }

  .sparko .section-heading h2,
  .sparko .center-heading h2,
  .sparko .about-copy h2,
  .sparko .about-story h2,
  .sparko .contact-info h2,
  .sparko .testimonial-inner h2,
  .sparko .calculator-heading h2 { font-size: clamp(21px, 5.8vw, 25px); max-width: 100%; }

  .sparko .footer-cta h2 { font-size: clamp(20px, 5.4vw, 24px); }
  .sparko .service-detail h2 { font-size: 19px; }
  .sparko .form-card h2 { font-size: 19px; }

  /* 11.5px body copy is unreadable on a phone — lift it back up */
  .sparko .hero-copy > p,
  .sparko .subpage-heading > p { font-size: 13.5px; line-height: 1.65; max-width: 100%; }
  .sparko .split-heading > p,
  .sparko .about-copy .lead { font-size: 13.5px; }

  /* --- Section rhythm ---------------------------------------------------- */
  .sparko .section-space { padding-block: clamp(40px, 11vw, 58px); }
  .sparko .subpage-heading { padding-top: clamp(26px, 8vw, 40px); }
  .sparko .subpage-hero { padding-bottom: clamp(20px, 6vw, 30px); }
  .sparko .subpage-hero.sk-has-orb::after {
    width: 200px; height: 200px; right: -70px; bottom: -30px;
  }

  /* --- Hero visual ------------------------------------------------------- */
  .sparko .hero-image-frame { aspect-ratio: 4 / 3.6; }
  .sparko .floating-card { max-width: 64%; padding: 9px 12px 9px 9px; }
  .sparko .floating-card small { display: block; font-size: 9.5px; }
  .sparko .floating-card strong { font-size: 11.5px; }
  .sparko .rating-card { left: 8px; bottom: 10px; }
  .sparko .eco-card { right: 8px; top: 10px; }
  .sparko .hero-proof { flex-wrap: wrap; gap: 12px; margin-top: clamp(24px, 7vw, 34px); }

  /* --- Tap targets ------------------------------------------------------- */
  .sparko .qty-control button { width: 34px; height: 34px; font-size: 16px; }
  .sparko .qty-control span { min-width: 28px; }
  .sparko .mobile-menu > div a { padding-block: 12px; }
  .sparko .service-body > div a { width: 38px; height: 38px; }

  /* --- Calculator -------------------------------------------------------- */
  .sparko .calc-summary { position: static !important; }
  .sparko .calc-section { padding: 18px 16px; }
  .sparko .service-option { padding: 11px 12px; }
  .sparko .extra-item { padding: 11px 12px; }
  .sparko .total-price { font-size: 32px; }
  .sparko .range-labels { font-size: 9.5px; }
  .sparko .calc-submit { padding-inline: 18px; }

  /* --- Cards ------------------------------------------------------------- */
  .sparko .trust-strip { padding: 20px 18px; }
  .sparko .service-body { padding: 18px 16px 16px; }
  .sparko .values-grid article { padding: 20px 18px; }
  .sparko .contact-cards > * { padding: 12px 13px; }
  .sparko .form-card { padding: 22px 18px; }
  .sparko .testimonial-inner blockquote { padding: 22px 18px; }
  .sparko .hours-card { padding: 20px 18px; }

  /* --- Services rows ----------------------------------------------------- */
  .sparko .service-detail-image > span { width: 44px; height: 44px; font-size: 13px; }
  .sparko .service-detail ul { gap: 8px; }

  /* --- Footer ------------------------------------------------------------ */
  .sparko .footer-cta { gap: 20px; padding-block: 34px; }
  .sparko .footer-main { gap: 26px; }
  .sparko .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 430px) {
  .sparko .topbar { font-size: 10.5px; }
  .sparko .option-copy strong,
  .sparko .service-option b { font-size: 12.5px; }
  .sparko .extra-item strong { font-size: 12.5px; }
  .sparko .story-stamp,
  .sparko .experience-badge { position: static; margin-top: 14px; display: inline-flex; }
}


/* --------------------------------------------------------------------------
   Header widget must NOT clip: the mobile menu drops out of its own box.
   (.sk-blue clips decoration on the hero widgets, but the header has none.)
   -------------------------------------------------------------------------- */
.sparko.sk-global-header,
.sparko.sk-global-topbar { position: relative; z-index: 40; }

.sparko.sk-global-header .sk-blue,
.sparko.sk-global-topbar .sk-blue { overflow: visible; }

.elementor-widget-sparko-global-header,
.elementor-widget-sparko-global-header .elementor-widget-container { overflow: visible; }

.sparko .mobile-menu { position: relative; z-index: 50; }
.sparko .mobile-menu > div { z-index: 50; }


/* ==========================================================================
   Row wrapping — when a price or stepper can't sit beside the label, it drops
   to the next line instead of colliding with it.
   ========================================================================== */
.sparko .service-option {
  flex-wrap: wrap;
  row-gap: 6px;
}

.sparko .option-copy {
  flex: 1 1 55%;
  min-width: 0;
}

.sparko .service-option b { margin-left: auto; }

.sparko .extra-item {
  flex-wrap: wrap;
  row-gap: 10px;
}

.sparko .extra-item > div:first-child {
  flex: 1 1 118px;
  min-width: 0;
}

.sparko .extra-item .qty-control { margin-left: auto; }

/* Below 480px a two-column calculator can never fit; force one column and beat
   Elementor's generated rule on specificity so old saved pages fix themselves. */
@media (max-width: 480px) {
  .sparko .calc-form-card .service-options,
  .sparko .calc-form-card .extra-list,
  .sparko .sk-calc-solo .service-options,
  .sparko .sk-calc-solo .extra-list {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* ==========================================================================
   Glyph badges: symbol characters are missing from Noto Sans Georgian, so the
   badge rendered empty on Android. Give glyph holders a symbol-capable stack
   and hide the chip entirely when no glyph is set.
   ========================================================================== */
.sparko {
  --font-glyph: "Noto Sans Symbols 2", "Noto Sans Symbols", "Segoe UI Symbol",
    "Apple Symbols", "Android Emoji", var(--font);
}

.sparko .service-image span,
.sparko .contact-cards > * > span,
.sparko .play-dot,
.sparko .rating-icon,
.sparko .eco-icon,
.sparko .quote-mark,
.sparko .tick,
.sparko .btn span,
.sparko .text-link span,
.sparko .header-cta span { font-family: var(--font-glyph); }

.sparko .service-image span:empty,
.sparko .contact-cards > * > span:empty,
.sparko .rating-icon:empty,
.sparko .eco-icon:empty { display: none; }
