:root {
  --bg: #f5f8fe;
  --text: #111827;
  --muted: #5b6475;
  --brand: #0d56d8;
  --brand2: #1f7aff;
  --line: #e6ebf4;
  --card: #ffffff;
  --radius: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html, body {
  min-height: 100%;
}
html {
  overflow-y: auto;
}
body {
  margin: 0;
  background: radial-gradient(circle at 85% -10%, #dce9ff 0%, transparent 34%), var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 120;
  background: #0f2f63;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
}
.skip-link:focus {
  top: 10px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #4f8dfd;
  outline-offset: 2px;
}

.topline {
  background: #03153a;
  color: #fff;
  font-size: 13px;
}
.topline__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.topline__inner p { margin: 0; }
.topline__inner a { font-weight: 700; }

.site-header {
  position: sticky;
  top: 0px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  line-height: 1;
  color: #0f2f63;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo__wordmark {
  font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1;
}

.logo:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

@media (max-width: 640px) {
  .logo {
    padding: 2px 0;
  }
  .logo__wordmark {
    font-size: clamp(23px, 6.6vw, 28px);
  }
}

.menu {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.menu a {
  position: relative;
  transition: color 0.22s ease;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #0d56d8, #27c46d);
  transition: transform 0.22s ease;
}
.menu a:hover {
  color: var(--brand);
}
.menu a:hover::after {
  transform: scaleX(1);
}
.menu-actions { display: flex; gap: 10px; }

.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 91, 216, 0.16);
}
.btn:hover::after {
  animation: btnShine 1.1s ease;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}
.btn--brand {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.btn--light {
  background: #fff;
}

.hero {
  padding: 58px 0;
  background-color: #efebe5;
  background-image: url("./assets/media/top-hero-bg-full.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 126px;
  width: 190px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 50%, rgba(142, 120, 86, 0.42) 0 10%, transparent 12%),
    radial-gradient(circle at 28% 54%, rgba(142, 120, 86, 0.36) 0 8%, transparent 10%),
    radial-gradient(circle at 46% 47%, rgba(142, 120, 86, 0.3) 0 7%, transparent 9%),
    radial-gradient(circle at 67% 52%, rgba(142, 120, 86, 0.26) 0 6%, transparent 8%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(198, 240, 255, 0.88) 52%, rgba(255, 255, 255, 0) 100%);
  filter: blur(0.8px);
  pointer-events: none;
  z-index: 4;
  animation: brushTrail 8s ease-in-out infinite;
}
.hero::after {
  content: "🧹";
  position: absolute;
  left: 16px;
  top: 90px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 38px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(150, 188, 235, 0.75);
  background: rgba(255, 255, 255, 0.68);
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(7, 48, 118, 0.28));
  z-index: 5;
  animation: brushSweep 8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 3;
}

.kicker {
  color: var(--brand);
  font-weight: 700;
  margin: 0 0 8px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-title__accent,
.hero-title__main {
  display: block;
}

.hero-title__accent {
  color: #26b66f;
}

.hero-title__main {
  color: #12345f;
}

.hero-copy p { margin: 0; color: var(--muted); }
.cta-row { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-badges span {
  font-size: 13px;
  color: #20488d;
  border: 1px solid #c8daf9;
  background: #edf4ff;
  padding: 6px 10px;
  border-radius: 999px;
  animation: pulseBadge 3.2s ease-in-out infinite;
}
.hero-badges span:nth-child(2) { animation-delay: 0.5s; }
.hero-badges span:nth-child(3) { animation-delay: 1s; }

.clean-icons {
  margin-top: 12px;
  display: inline-flex;
  gap: 10px;
  position: relative;
}
.clean-icons span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #c8daf9;
  box-shadow: 0 8px 18px rgba(13, 86, 216, 0.15);
  animation: floatY 3.4s ease-in-out infinite;
}
.clean-icons span:first-child {
  position: relative;
  animation: brushIconSweep 3s ease-in-out infinite;
}
.clean-icons span:first-child::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 15px;
  width: 8px;
  height: 6px;
  border-radius: 999px;
  background: rgba(126, 205, 255, 0.7);
  filter: blur(0.3px);
  animation: brushIconTrail 3s ease-in-out infinite;
}
.clean-icons span:nth-child(2) { animation-delay: 0.6s; }
.clean-icons span:nth-child(3) { animation-delay: 1.2s; }

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orbs span {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.32;
  animation: orbMove 11s ease-in-out infinite;
}
.hero-orbs span:nth-child(1) {
  background: #45d2ff;
  left: -20px;
  top: 40px;
}
.hero-orbs span:nth-child(2) {
  background: #ffca4f;
  right: 12%;
  top: 12px;
  width: 96px;
  height: 96px;
  animation-delay: 2.5s;
}
.hero-orbs span:nth-child(3) {
  background: #6cefa6;
  right: -30px;
  bottom: 30px;
  width: 150px;
  height: 150px;
  animation-delay: 1.5s;
}
.hero-orbs span:nth-child(4) {
  background: #ff7ec7;
  left: 18%;
  top: -26px;
  width: 108px;
  height: 108px;
  animation-delay: 3.1s;
}
.hero-orbs span:nth-child(5) {
  background: #9b8cff;
  right: 24%;
  bottom: -28px;
  width: 128px;
  height: 128px;
  animation-delay: 0.8s;
}

.hero-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(15, 91, 216, 0.2);
  position: relative;
}
.hero-photo img { width: 100%; height: 430px; object-fit: cover; display: block; }

.trust-ribbon {
  padding-top: 20px;
  padding-bottom: 24px;
}
.trust-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid article {
  padding: 16px;
}
.trust-grid h4 {
  margin: 0 0 4px;
  font-size: 16px;
}
.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.logo-cloud {
  padding: 2px 0 28px;
}
.logo-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.logo-pill {
  border: 1px solid #bdd3fb;
  background: linear-gradient(120deg, #ffffff, #eef4ff);
  color: #1e4ca5;
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 8px 16px rgba(13, 86, 216, 0.08);
  animation: shimmer 4.2s linear infinite;
}

.counter-bar { padding: 0 0 28px; }
.counters {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.counters article { padding: 18px; text-align: center; }
.counters strong {
  display: block;
  font-size: 32px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
  animation: glowNumber 2.8s ease-in-out infinite;
}
.counters span { color: var(--muted); font-size: 14px; }

.section { padding: 68px 0; }
.section {
  position: relative;
  isolation: isolate;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  right: -110px;
  top: 12%;
  background: radial-gradient(circle, rgba(88, 162, 255, 0.22) 0%, rgba(88, 162, 255, 0) 68%);
  pointer-events: none;
  animation: sectionAura 9s ease-in-out infinite;
}
.section,
.trust-ribbon,
.logo-cloud,
.counter-bar {
  scroll-margin-top: 108px;
}
.section-mini {
  margin: 0 0 8px;
  color: #0b4bbf;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, #f4f8ff 0%, #e6f5ff 45%, #effff6 100%);
  border: 1px solid #bfd9ff;
  box-shadow: 0 10px 20px rgba(13, 86, 216, 0.12);
  animation: badgePulse 4s ease-in-out infinite;
}
.section-mini::before {
  content: "✦";
  color: #21b56b;
  font-size: 12px;
  line-height: 1;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(31px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.7px;
  color: #0f3468;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: min(180px, 46%);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d56d8, #31c26f, #0d56d8);
  background-size: 200% 100%;
  animation: headingGlow 4.5s linear infinite;
}
.title-icons {
  margin-top: 10px;
  display: inline-flex;
  gap: 10px;
  vertical-align: middle;
}
.title-icons span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cfe0ff;
  box-shadow: 0 10px 18px rgba(13, 86, 216, 0.16);
  font-size: 18px;
  line-height: 1;
  animation: titleIconFloat 2.8s ease-in-out infinite;
}
.title-icons span:nth-child(2) {
  animation-delay: 0.35s;
}
.title-icons span:nth-child(3) {
  animation-delay: 0.7s;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.about-photo, .about-photo img { width: 100%; }
.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
}
.about-photo img { height: 450px; object-fit: cover; display: block; object-position: center 20%; }
.about-photo__person {
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: translateY(16px);
}

.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.check-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.check-list li::before {
  content: "✓ ";
  color: var(--brand);
  font-weight: 800;
}

.services {
  background: linear-gradient(160deg, #f2f8ff 0%, #e8f3ff 58%, #e9fff6 100%);
  border-top: 1px solid #cadeff;
  border-bottom: 1px solid #cadeff;
}
.service-intro {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}
.service-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  --shape-a-size: 112px;
  --shape-b-size: 62px;
  --shape-a-color: rgba(0, 198, 255, 0.32);
  --shape-b-color: rgba(255, 102, 196, 0.3);
  --shape-delay: 0s;
  background: linear-gradient(160deg, #ffffff 0%, #f4f9ff 60%, #f1fff7 100%);
  border: 1px solid #cae0ff;
  border-radius: var(--radius);
  padding: 18px;
  min-height: 210px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 12px 26px rgba(15, 91, 216, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.service-card::before {
  width: var(--shape-a-size);
  height: var(--shape-a-size);
  right: -26px;
  top: -26px;
  border-radius: 48% 52% 60% 40% / 40% 55% 45% 60%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45) 0 28%, transparent 29%),
    radial-gradient(circle at 68% 62%, var(--shape-a-color) 0 68%, rgba(255, 255, 255, 0.08) 100%);
  animation: serviceShapeFloat 6.6s ease-in-out infinite;
  animation-delay: var(--shape-delay);
}
.service-card::after {
  width: var(--shape-b-size);
  height: var(--shape-b-size);
  left: -18px;
  bottom: -16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 45%),
    radial-gradient(circle at 70% 68%, var(--shape-b-color) 0 72%, rgba(255, 255, 255, 0.06) 100%);
  clip-path: polygon(50% 0%, 100% 35%, 82% 100%, 20% 92%, 0% 42%);
  animation: serviceShapeSpin 9s linear infinite;
  animation-delay: calc(var(--shape-delay) - 1.1s);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
  animation: serviceIconFloat 3.8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.service-card:nth-child(1) .service-card__icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-card__icon { animation-delay: 0.3s; }
.service-card:nth-child(3) .service-card__icon { animation-delay: 0.6s; }
.service-card:nth-child(4) .service-card__icon { animation-delay: 0.9s; }
.service-card:nth-child(5) .service-card__icon { animation-delay: 1.2s; }
.service-card:nth-child(6) .service-card__icon { animation-delay: 1.5s; }
.service-card:nth-child(1) {
  --shape-a-size: 122px;
  --shape-b-size: 54px;
  --shape-a-color: rgba(87, 172, 255, 0.3);
  --shape-b-color: rgba(255, 161, 74, 0.34);
  --shape-delay: 0.1s;
}
.service-card:nth-child(2) {
  --shape-a-size: 98px;
  --shape-b-size: 70px;
  --shape-a-color: rgba(255, 121, 201, 0.3);
  --shape-b-color: rgba(108, 239, 166, 0.34);
  --shape-delay: 0.6s;
}
.service-card:nth-child(3) {
  --shape-a-size: 116px;
  --shape-b-size: 58px;
  --shape-a-color: rgba(132, 130, 255, 0.32);
  --shape-b-color: rgba(255, 205, 94, 0.34);
  --shape-delay: 1.1s;
}
.service-card:nth-child(4) {
  --shape-a-size: 106px;
  --shape-b-size: 64px;
  --shape-a-color: rgba(46, 216, 190, 0.3);
  --shape-b-color: rgba(255, 120, 143, 0.34);
  --shape-delay: 1.5s;
}
.service-card:nth-child(5) {
  --shape-a-size: 126px;
  --shape-b-size: 56px;
  --shape-a-color: rgba(255, 148, 82, 0.3);
  --shape-b-color: rgba(76, 186, 255, 0.34);
  --shape-delay: 2s;
}
.service-card:nth-child(6) {
  --shape-a-size: 94px;
  --shape-b-size: 72px;
  --shape-a-color: rgba(165, 136, 255, 0.3);
  --shape-b-color: rgba(72, 222, 148, 0.34);
  --shape-delay: 2.4s;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #123b78;
  position: relative;
  z-index: 1;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: #97bcff;
  box-shadow: 0 22px 44px rgba(13, 86, 216, 0.28);
}

.service-card--center {
  border-color: #74a8ff;
  background: linear-gradient(160deg, #f8fbff 0%, #eaf4ff 55%, #ecfff4 100%);
  box-shadow: 0 18px 36px rgba(13, 86, 216, 0.2);
}

@media (min-width: 1025px) {
  .service-card--center {
    transform: translateY(-8px);
  }
  .service-card--center:hover {
    transform: translateY(-12px);
  }
}

.before-after {
  background: linear-gradient(165deg, #ffffff 0%, #f2fff6 55%, #eef8ff 100%);
  border-top: 1px solid #cfeada;
  border-bottom: 1px solid #cfeada;
}
.gallery-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 72px;
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #d8e7ff;
  box-shadow: 0 12px 24px rgba(19, 63, 136, 0.12);
  transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease;
  filter: saturate(1.02);
}
.gallery-grid img:nth-child(1) { grid-column: span 7; grid-row: span 5; }
.gallery-grid img:nth-child(2) { grid-column: span 5; grid-row: span 4; }
.gallery-grid img:nth-child(3) { grid-column: span 4; grid-row: span 4; }
.gallery-grid img:nth-child(4) { grid-column: span 8; grid-row: span 4; }
.gallery-grid img:nth-child(5) { grid-column: span 6; grid-row: span 4; }
.gallery-grid img:nth-child(6) { grid-column: span 6; grid-row: span 4; }
.gallery-grid img:nth-child(7) { grid-column: span 5; grid-row: span 5; }
.gallery-grid img:nth-child(8) { grid-column: span 7; grid-row: span 5; }
.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(8) {
  object-position: center 45%;
}
.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 20px 36px rgba(19, 63, 136, 0.22);
  filter: saturate(1.06);
}

.ba-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ba-grid article {
  border: 1px solid #d9e7ff;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff, #f5faff);
  box-shadow: 0 10px 22px rgba(15, 91, 216, 0.1);
}
.ba-grid span {
  display: inline-block;
  margin: 10px;
  font-weight: 700;
  color: var(--brand);
}
.ba-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.testimonials { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #edf4ff;
  color: var(--brand);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 16px;
}
.review-head strong { font-size: 28px; }
.review-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.review-card p { margin: 0 0 10px; color: var(--muted); }
.review-card h4 { margin: 0; font-size: 14px; }
.review-card__meta {
  color: #0f4fbf !important;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(4px);
  transition: opacity 0.72s ease, transform 0.72s ease, filter 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.gallery {
  background: linear-gradient(165deg, #fdfefe 0%, #eef6ff 55%, #f2fffa 100%);
}

.image-reviews {
  background: linear-gradient(160deg, #ffffff 0%, #eef6ff 56%, #eafff3 100%);
  border-top: 1px solid #d5e6ff;
  border-bottom: 1px solid #d5e6ff;
}
.review-slider {
  margin-top: 14px;
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid #d7e7ff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 16px 34px rgba(13, 86, 216, 0.12);
}
.review-slider__viewport {
  overflow: hidden;
  border-radius: 14px;
}
.review-slider__track {
  display: flex;
  transition: transform 0.46s ease;
}
.review-slide {
  min-width: 100%;
  position: relative;
}
.review-slide img {
  width: 100%;
  height: min(60vh, 460px);
  object-fit: cover;
  display: block;
}
.review-slide p {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  background: rgba(9, 37, 86, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 12px;
  backdrop-filter: blur(2px);
}
.review-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 46, 102, 0.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.review-slider__arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(14, 46, 102, 0.88);
}
.review-slider__arrow--prev {
  left: 22px;
}
.review-slider__arrow--next {
  right: 22px;
}
.review-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.review-slider__dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #adc7f5;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.review-slider__dots button.is-active {
  background: #0d56d8;
  transform: scale(1.3);
}

.pricing {
  background: linear-gradient(160deg, #f2f8ff 0%, #e9f4ff 55%, #e7fff2 100%);
  border-top: 1px solid #c8ddff;
  border-bottom: 1px solid #c8ddff;
}
.pricing .price-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card {
  background: linear-gradient(165deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #d3e3ff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 28px rgba(13, 86, 216, 0.12);
}
.price-card h3 { margin: 0; }
.price { font-size: 30px; color: var(--brand); font-weight: 800; margin: 8px 0 12px; }
.price-card ul { margin: 0 0 14px; padding-left: 18px; color: var(--muted); }
.price-card li { margin: 8px 0; }
.price-card--highlight {
  border-color: #8fbbff;
  background: linear-gradient(165deg, #ffffff 0%, #e7f3ff 58%, #ecfff6 100%);
  box-shadow: 0 22px 42px rgba(15, 91, 216, 0.24);
}

.contact {
  background: linear-gradient(160deg, #ffffff 0%, #f2fff7 48%, #eef7ff 100%);
  border-top: 1px solid #cae9da;
}
.lead-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cfe0ff;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  background: #ffffff;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7a8393;
}
.contact-side {
  background: linear-gradient(160deg, #eef6ff 0%, #e8fff2 100%);
  border: 1px solid #c9defd;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 91, 216, 0.12);
}
.contact-side h3 { margin: 0 0 8px; color: var(--brand); }
.contact-side p { margin: 0 0 8px; color: var(--muted); }

.faq {
  background: linear-gradient(165deg, #f4f9ff 0%, #ffffff 52%, #f4fff8 100%);
  border-top: 1px solid #d2e2ff;
}
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid #d4e3ff;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(13, 86, 216, 0.08);
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.faq-q span {
  color: var(--brand);
  font-size: 20px;
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  padding: 0 16px;
  transition: max-height 0.22s ease, padding 0.18s ease;
}
.faq-item.open .faq-a {
  max-height: 120px;
  padding: 0 16px 14px;
}
.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

.site-footer {
  padding: 26px 0 90px;
  border-top: 1px solid #d2e2ff;
  background: linear-gradient(160deg, #eaf4ff 0%, #e4f1ff 55%, #e7fff1 100%);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-wrap p { margin: 0; color: var(--muted); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--muted); }

.mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #d4e2fb;
  background: rgba(255, 255, 255, 0.96);
  pointer-events: none;
}
.mcta {
  flex: 1;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  pointer-events: auto;
}
.mcta--wa {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 61;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1faa4c;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(26, 133, 61, 0.45);
  animation: pulseWa 2.2s ease-in-out infinite;
}

.wa-float__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 75px;
  transform: translateX(-50%);
  background: #0e285c;
  color: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-2px); }

@media (max-width: 1024px) {
  body {
    padding-bottom: 0;
  }
  .container {
    width: min(var(--container), calc(100% - 30px));
  }
  .btn {
    min-height: 44px;
    padding-inline: 16px;
  }
  .nav-wrap {
    min-height: auto;
    padding: 10px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .menu {
    display: flex;
    order: 3;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    gap: 14px;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .menu-actions {
    margin-left: auto;
  }
  .hero-grid, .two-col, .trust-grid, .service-grid, .ba-grid, .review-grid, .pricing .price-grid, .counters {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
  .trust-grid article,
  .counters article {
    padding: 18px;
    text-align: left;
  }
  .service-grid,
  .pricing .price-grid {
    gap: 14px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
  .gallery-grid img {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .hero-photo img { height: 320px; }
  .about-photo img { height: 320px; }
  .mobilebar {
    display: flex;
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 10px 10px 0;
    border: 1px solid #d4e2fb;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(9, 32, 79, 0.1);
    pointer-events: auto;
  }
  .wa-float {
    display: none;
  }
  .review-slide img { height: 340px; }
}

@media (max-width: 640px) {
  body {
    font-size: 15.5px;
    line-height: 1.7;
    background: #f6f8fc;
  }
  .container {
    width: min(var(--container), calc(100% - 24px));
  }
  .site-header {
    box-shadow: 0 6px 18px rgba(13, 36, 82, 0.08);
  }
  .topline__inner {
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    text-align: center;
  }
  .topline__inner a {
    display: none;
  }
  .nav-wrap {
    gap: 8px;
    padding: 9px 0;
    align-items: center;
  }
  .logo__wordmark {
    font-size: clamp(22px, 7.5vw, 27px);
  }
  .menu-actions .btn {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }
  .menu {
    gap: 12px;
    padding-bottom: 6px;
    mask-image: linear-gradient(to right, transparent 0, #000 10px, #000 calc(100% - 10px), transparent 100%);
  }
  .menu a {
    padding: 6px 10px;
    font-size: 12px;
    border: 1px solid #d8e4f7;
    border-radius: 999px;
    background: #fff;
    color: #304463;
  }
  .menu a:nth-child(1),
  .menu a:nth-child(3),
  .menu a:nth-child(5),
  .menu a:nth-child(6) {
    display: none;
  }
  .hero {
    padding: 42px 0 38px;
    background-position: center center;
    background-size: cover;
  }
  .hero::before,
  .hero::after,
  .hero-orbs,
  .clean-icons {
    display: none;
  }
  .hero-copy {
    max-width: 100%;
  }
  .kicker {
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }
  h1 {
    margin-bottom: 14px;
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: -0.6px;
    line-height: 1.08;
  }
  h2 {
    margin-bottom: 14px;
    font-size: clamp(27px, 8.4vw, 36px);
    line-height: 1.16;
  }
  .hero-copy p,
  .service-intro {
    font-size: 15.5px;
    color: #4d5a72;
  }
  .hero-badges {
    margin-top: 14px;
    gap: 10px;
  }
  .hero-badges span {
    font-size: 12.5px;
    padding: 7px 12px;
  }
  .cta-row .btn {
    width: 100%;
  }
  .section {
    padding: 48px 0;
  }
  .trust-ribbon {
    padding-top: 24px;
  }
  .section-mini {
    margin-bottom: 10px;
  }
  .trust-grid,
  .counters {
    background: transparent;
    border: 0;
    gap: 10px;
  }
  .trust-grid article,
  .counters article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(13, 86, 216, 0.08);
  }
  .trust-grid article h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #0e376f;
  }
  .trust-grid article p {
    color: #5a6780;
    font-size: 14px;
    line-height: 1.5;
  }
  .counters strong {
    font-size: 31px;
  }
  .service-grid {
    margin-top: 16px;
  }
  .service-card,
  .price-card,
  .contact-side {
    padding: 20px;
    border-radius: 16px;
  }
  .service-card {
    min-height: 0;
  }
  .service-card h3 {
    font-size: 19px;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.55;
  }
  .check-list li,
  .faq-q {
    padding: 13px 14px;
  }
  .lead-form {
    gap: 12px;
  }
  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    border-radius: 12px;
    padding: 13px;
    font-size: 16px;
  }
  .lead-form button {
    min-height: 48px;
    font-size: 15px;
  }
  .price-card ul {
    margin-bottom: 16px;
  }
  .price-card .btn {
    width: 100%;
  }
  .contact .two-col > div,
  .contact .contact-side {
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(13, 43, 101, 0.08);
  }
  .contact .contact-side {
    order: -1;
    margin-bottom: 6px;
  }
  .contact-side h3 {
    font-size: 22px;
  }
  .faq-item {
    border-radius: 14px;
  }
  .faq-q {
    font-size: 15px;
    line-height: 1.45;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .review-slider {
    margin-top: 18px;
    padding: 12px;
    border-radius: 16px;
  }
  .review-slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  .review-slider__arrow--prev {
    left: 14px;
  }
  .review-slider__arrow--next {
    right: 14px;
  }
  .review-slider__dots {
    margin-top: 10px;
  }
  .review-slide img {
    height: 250px;
  }
  .review-slide p {
    left: 10px;
    right: 10px;
    bottom: 10px;
    text-align: center;
    border-radius: 10px;
    font-size: 13px;
    padding: 7px 10px;
  }
  .site-footer {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .mobilebar {
    gap: 12px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 24px rgba(9, 32, 79, 0.14);
  }
  .mcta {
    height: 48px;
    font-size: 15px;
  }
  .wa-float {
    bottom: 96px;
  }
}

@media (max-width: 640px), (prefers-reduced-motion: reduce) {
  .hero-badges span,
  .logo-pill,
  .counters strong,
  .wa-float,
  .service-card::before,
  .service-card::after,
  .service-card__icon {
    animation: none !important;
  }
  .service-card:hover,
  .btn:hover,
  .review-slider__arrow:hover {
    transform: none;
  }
  .section::before,
  h2::after,
  .section-mini,
  .title-icons span {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .menu a::after,
  .btn::after {
    transition: none !important;
    animation: none !important;
  }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 86, 216, 0.0); }
  50% { box-shadow: 0 8px 18px -8px rgba(13, 86, 216, 0.35); }
}

@keyframes orbMove {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(16px) translateX(-12px); }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 180% 50%; }
}

@keyframes glowNumber {
  0%, 100% { text-shadow: 0 0 0 rgba(31, 122, 255, 0); }
  50% { text-shadow: 0 0 18px rgba(31, 122, 255, 0.35); }
}

@keyframes pulseWa {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes brushSweep {
  0% {
    transform: translateX(0) translateY(0) rotate(-16deg);
    opacity: 1;
  }
  25% {
    transform: translateX(70px) translateY(1px) rotate(9deg);
    opacity: 1;
  }
  50% {
    transform: translateX(0) translateY(-1px) rotate(-16deg);
    opacity: 1;
  }
  75% {
    transform: translateX(70px) translateY(2px) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) translateY(0) rotate(-16deg);
    opacity: 1;
  }
}

@keyframes brushTrail {
  0% {
    transform: translateX(0) scaleX(0.88);
    opacity: 0.7;
  }
  25% {
    transform: translateX(70px) scaleX(1.16);
    opacity: 0.16;
  }
  50% {
    transform: translateX(0) scaleX(0.92);
    opacity: 0.68;
  }
  75% {
    transform: translateX(70px) scaleX(1.18);
    opacity: 0.14;
  }
  100% {
    transform: translateX(0) scaleX(0.88);
    opacity: 0.7;
  }
}

@keyframes brushIconSweep {
  0% {
    transform: translateX(0) rotate(-18deg);
  }
  25% {
    transform: translateX(14px) rotate(-6deg);
  }
  50% {
    transform: translateX(-2px) rotate(-20deg);
  }
  75% {
    transform: translateX(14px) rotate(-6deg);
  }
  100% {
    transform: translateX(0) rotate(-18deg);
  }
}

@keyframes brushIconTrail {
  0% {
    transform: translateX(0) scaleX(0.6);
    opacity: 0.2;
  }
  25% {
    transform: translateX(10px) scaleX(0.96);
    opacity: 0.46;
  }
  50% {
    transform: translateX(-1px) scaleX(0.62);
    opacity: 0.2;
  }
  75% {
    transform: translateX(10px) scaleX(0.96);
    opacity: 0.46;
  }
  100% {
    transform: translateX(0) scaleX(0.6);
    opacity: 0.2;
  }
}

@keyframes serviceIconFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.06);
  }
}

@keyframes serviceShapeFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  40% {
    transform: translateY(8px) translateX(-6px) rotate(10deg);
  }
  70% {
    transform: translateY(-3px) translateX(5px) rotate(-7deg);
  }
}

@keyframes serviceShapeSpin {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(-6px);
  }
  100% {
    transform: rotate(360deg) translateY(0);
  }
}

@keyframes btnShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(13, 86, 216, 0.12);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(13, 86, 216, 0.2);
  }
}

@keyframes headingGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes sectionAura {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(16px) translateX(-10px) scale(1.12);
    opacity: 0.5;
  }
}

@keyframes titleIconFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.08);
  }
}
