:root {
  --container: 1200px;

  --bg: #ffffff;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.72);

  --brand: #244f5b;
  --brand-2: #2f6a78;
  --accent: #ff6b5b;
  --accent-2: #ff8a7d;
  --accent-ink: #ffffff;


  --pill: var(--accent);
  --pill-ink: var(--accent-ink);

  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  --radius: 14px;

  /* Used as a fallback/poster for the hero video */
  --hero-poster: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=80");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 999;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  left: 12px;
}

/* Topbar */
.topbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.86);
}

.topbar__left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 600;
}

.topbar__item i {
  font-size: 16px;
  color: rgba(15, 23, 42, 0.78);
}

.topbar__right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: rgba(15, 23, 42, 0.78);
}

.social i {
  font-size: 18px;
}

.social:hover {
  color: rgba(15, 23, 42, 0.9);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1.2fr);
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  width: min(1500px, calc(100% - 48px));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  width: 220px;
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transform: scale(5);
  transform-origin: left center;
  display: block;
}

.brand__name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: center;
  justify-content: center;
}

.nav__link {
  position: relative;
  padding: 10px 8px;
  font-weight: 800;
  font-size: 15.5px;
  color: rgba(15, 23, 42, 0.75);
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav__link:hover {
  color: rgba(15, 23, 42, 0.92);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: var(--accent);
}

.nav__link.is-active::after {
  transform: scaleX(1);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.25);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(36, 79, 91, 0.22);
  color: rgba(36, 79, 91, 0.92);
}

.btn--ghost:hover {
  background: rgba(36, 79, 91, 0.06);
}

.btn--outline-hero {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn--outline-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 14px 36px rgba(255, 107, 91, 0.28);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(255, 107, 91, 0.32);
}

.btn--lg {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 12px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  padding: 10px;
}

.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(15, 23, 42, 0.86);
}

.burger span + span {
  margin-top: 6px;
}

/* Mobile dropdown */
.mobile {
  display: none;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.header.is-open .mobile {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}

.mobile__inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.mobile__link {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.03);
  font-weight: 800;
  color: rgba(15, 23, 42, 0.84);
}

.mobile__cta {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0b1417;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1) contrast(1.02) brightness(0.98);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.52) 46%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0) 88%
    ),
    radial-gradient(900px 520px at 10% 44%, rgba(36, 79, 91, 0.18), rgba(36, 79, 91, 0) 60%),
    radial-gradient(900px 520px at 42% 58%, rgba(255, 107, 91, 0.14), rgba(255, 107, 91, 0) 62%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 78px 0 84px;
}

.hero__content {
  max-width: 720px;
  color: #fff;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.kicker__line {
  width: 44px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
}

.hero__title {
  margin: 16px 0 14px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.thin {
  font-weight: 500;
  opacity: 0.98;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--pill);
  color: var(--pill-ink);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 18px 50px rgba(255, 107, 91, 0.22);
}

.hero__lead {
  margin: 16px 0 28px;
  max-width: 62ch;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.call__icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.call__icon i {
  font-size: 20px;
}

.call__k {
  display: block;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.call__v {
  display: block;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
}

/* Anchors (empty for now) */
.anchor {
  height: 1px;
}

/* About */
.about {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0) 70%);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 78px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__dots {
  position: absolute;
  left: -30px;
  top: -34px;
  width: 170px;
  height: 170px;
  border-radius: 18px;
  opacity: 0.8;
  background-image: radial-gradient(rgba(255, 107, 91, 0.72) 2px, transparent 2.6px);
  background-size: 18px 18px;
  pointer-events: none;
}

.about__photo {
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(1200px 640px at 10% 10%, rgba(36, 79, 91, 0.14), rgba(36, 79, 91, 0) 56%),
    radial-gradient(900px 520px at 60% 55%, rgba(255, 107, 91, 0.12), rgba(255, 107, 91, 0) 60%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
}

.about__photo.is-fallback {
  min-height: clamp(360px, 54vw, 520px);
}

.about__photo.is-fallback .about__img {
  opacity: 0;
}

.about__photo.is-fallback::before {
  content: "NPL Property Services";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2.2vw, 30px);
  color: rgba(15, 23, 42, 0.75);
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.about__video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 35px rgba(36, 79, 91, 0.35);
  display: grid;
  place-items: center;
  font-size: 32px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__video-btn i {
  margin-left: 6px;
}

.about__video-btn:hover {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 16px 45px rgba(255, 107, 91, 0.4);
}

.about__video-btn::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  opacity: 0.8;
  animation: rotatePlay 20s linear infinite;
  pointer-events: none;
}

@keyframes rotatePlay {
  100% {
    transform: rotate(360deg);
  }
}

.about__img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.about__badge {
  position: absolute;
  right: 18px;
  bottom: -34px;
  width: 240px;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.14);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  transform: translateZ(0);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.about__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 75px rgba(15, 23, 42, 0.16);
}

.about__num {
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__badgeText {
  font-weight: 900;
  font-size: 16px;
  color: rgba(15, 23, 42, 0.9);
}

.about__content {
  max-width: 560px;
}

.about__eyebrow {
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
}

.about__title {
  margin: 14px 0 16px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about__p {
  margin: 0 0 14px;
  color: rgba(15, 23, 42, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.about__link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 900;
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.about__link:hover {
  color: var(--accent);
}

/* How it works */
.how {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: #0b1417;
  color: #fff;
}

.how__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 620px at 15% 40%, rgba(36, 79, 91, 0.42), rgba(36, 79, 91, 0) 60%),
    radial-gradient(900px 620px at 80% 60%, rgba(255, 107, 91, 0.24), rgba(255, 107, 91, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 62%),
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1.8px);
  background-size: auto, auto, auto, 22px 22px;
  opacity: 0.9;
}

.how__inner {
  position: relative;
  z-index: 1;
}

.how__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.how__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.how__line {
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.how__title {
  margin: 16px auto 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.how__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.how__item {
  text-align: center;
  padding: 10px 8px 0;
}

.how__iconWrap {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  color: var(--brand-2);
  transform: translateZ(0);
}

.how__iconWrap i {
  font-size: 28px;
}

.how__h {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.how__p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

.how__foot {
  margin-top: 40px;
  text-align: center;
}

.how__note {
  margin: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.how__cta {
  font-weight: 900;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.how__cta:hover {
  color: var(--accent);
}

/* Services */
.services {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: #f7fafc;
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-conic-gradient(
      from -12deg at 50% 0%,
      rgba(36, 79, 91, 0.08) 0deg,
      rgba(36, 79, 91, 0.08) 8deg,
      rgba(255, 255, 255, 0) 8deg,
      rgba(255, 255, 255, 0) 18deg
    );
  opacity: 0.55;
  transform: translateY(-2%);
}

.services__inner {
  position: relative;
  z-index: 1;
}

.services__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.services__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
}

.services__sub {
  margin: 14px auto 0;
  max-width: 70ch;
  color: rgba(15, 23, 42, 0.66);
  font-size: 15.5px;
  line-height: 1.9;
}

.services__grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.services__grid--secondary {
  margin-top: 22px;
  grid-template-columns: minmax(0, 410px);
  justify-content: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.services__card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  transform: translateZ(0);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.services__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: opacity 170ms ease;
}

.services__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 75px rgba(15, 23, 42, 0.14);
}

.services__card:hover::before {
  opacity: 1;
}

.services__media {
  position: relative;
  height: 210px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.services__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.42)),
    radial-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 2px);
  background-size: auto, 18px 18px;
  opacity: 0.9;
}

.services__media--regular {
  background-image: url("s1.jpg");
}

.services__media--deep {
  background-image: url("s2.jpg");
}

.services__media--lease {
  background-image: url("s3.jpg");
}

.services__media--airbnb {
  background-image: url("s4.jpg");
}

.services__media--office {
  background-image: url("s5.jpg");
}

.services__icon {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.18);
  transition: transform 170ms ease;
}

.services__card:hover .services__icon {
  transform: translateX(-50%) scale(1.03);
}

.services__icon i {
  font-size: 26px;
}

.services__body {
  padding: 44px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.services__h {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);
}

.services__desc {
  margin: 0 0 14px;
  color: rgba(15, 23, 42, 0.66);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.6;
}

.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 700;
}

.services__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.55;
}

.services__list i {
  color: var(--brand-2);
  font-size: 18px;
  margin-top: 2px;
}

.services__btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 14px;
}

/* Why choose us */
.why {
  padding: 88px 0;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255, 107, 91, 0.08), transparent 55%),
    radial-gradient(820px 360px at 92% 10%, rgba(36, 79, 91, 0.08), transparent 58%),
    #ffffff;
}

.why__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.why__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(36, 79, 91, 0.92);
  font-size: 12px;
}

.why__kickerLine {
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: rgba(36, 79, 91, 0.32);
}

.why__title {
  margin: 14px 0 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.15;
  color: rgba(15, 23, 42, 0.94);
}

.why__sub {
  margin: 14px 0 0;
  max-width: 640px;
  font-weight: 700;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.66);
}

.why__list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 576px) {
  .why__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
}

.why__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 91, 0.12);
  border: 1px solid rgba(255, 107, 91, 0.2);
  color: rgba(255, 107, 91, 0.95);
}

.why__icon i {
  font-size: 20px;
}

.why__h {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);
}

.why__p {
  margin-top: 6px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.64);
  line-height: 1.6;
}

.why__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.why__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.02);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.why__img {
  width: 100%;
  height: min(520px, 54vw);
  object-fit: cover;
  display: block;
}

.why__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(380px 220px at 18% 18%, rgba(255, 255, 255, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.18));
  pointer-events: none;
}

.why__dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  background-image: radial-gradient(rgba(255, 107, 91, 0.55) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.9;
  border-radius: 18px;
  filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.12));
}

/* Testimonials Redesign */
.tst {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(1000px 500px at 50% 100%, rgba(36, 79, 91, 0.04), transparent 60%), #fbfcfd;
  overflow: hidden;
}

.tst__sub {
  margin: 14px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.tst__wrapper {
  margin-top: 50px;
  position: relative;
}

.tstSwiper {
  padding: 20px 10px 80px;
}

.tstCard {
  height: 100%;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(36, 79, 91, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.tstCard:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 79, 91, 0.15);
  box-shadow: 0 30px 60px rgba(36, 79, 91, 0.08);
}

.tstCard__quote-icon {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-size: 90px;
  color: var(--brand);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}

.tstCard__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding-bottom: 20px;
}

.tstCard__who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tstCard__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.tstCard__avatar--1 { background: linear-gradient(135deg, #244f5b, #4b8a99); }
.tstCard__avatar--2 { background: linear-gradient(135deg, #ff6b5b, #ff9e80); }
.tstCard__avatar--3 { background: linear-gradient(135deg, #2f6a78, #ff8a7d); }
.tstCard__avatar--4 { background: linear-gradient(135deg, #4b8a99, #ff6b5b); }

.tstCard__name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tstCard__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.tstCard__verified {
  color: #10b981;
  font-size: 14px;
  display: inline-flex;
}

.tstCard__loc {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 3px;
}

.tstCard__stars {
  display: inline-flex;
  gap: 3px;
  color: #f59e0b; /* Golden stars */
  font-size: 15px;
  background: rgba(245, 158, 11, 0.06);
  padding: 4px 8px;
  border-radius: 99px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.tstCard__quote {
  margin: 0;
  font-size: 15px;
  color: rgba(15, 23, 42, 0.8);
  font-weight: 600;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Custom Controls Row */
.tst__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
}

.tst__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  color: var(--brand);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tst__btn:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 10px 25px rgba(36, 79, 91, 0.15);
  transform: scale(1.05);
}

.tst__btn:active {
  transform: scale(0.95);
}

.tst__pager {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
}

.tst__pager .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(36, 79, 91, 0.2);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tst__pager .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--brand);
}

/* Footer */
.footer {
  position: relative;
  color: rgba(15, 23, 42, 0.86);
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(255, 107, 91, 0.1), transparent 60%),
    radial-gradient(860px 520px at 92% 0%, rgba(36, 79, 91, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    radial-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 42px 42px, 84px 84px;
  background-position: 0 0, 20px 20px;
  opacity: 0.55;
  pointer-events: none;
}

.footer__top {
  position: relative;
  padding: 78px 0 54px;
}

.footer__top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 91, 0.95), rgba(255, 138, 125, 0.75), transparent);
  opacity: 0.9;
}

.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.footer__brand {
  max-width: 520px;
  display: grid;
  align-content: start;
  gap: 14px;
}

@media (min-width: 981px) {
  .footer__brand {
    margin-top: -10px;
  }
}

.footer__logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
}

.footer__logoImg {
  width: clamp(220px, 26vw, 360px);
  height: clamp(92px, 11vw, 140px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.footer__name {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
}

.footer__blurb {
  margin: 0;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 700;
  line-height: 1.75;
}

.footer__cta {
  margin-top: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer .btn--ghost {
  border-color: rgba(15, 23, 42, 0.18);
  color: rgba(15, 23, 42, 0.82);
}

.footer .btn--ghost:hover {
  background: rgba(15, 23, 42, 0.04);
}

.footer__col {
  display: grid;
  gap: 10px;
}

.footer__h {
  margin: 0 0 4px;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.78);
  text-transform: uppercase;
}

.footer__link {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 800;
  transition: color 140ms ease, transform 140ms ease;
  width: fit-content;
}

.footer__link:hover {
  color: rgba(15, 23, 42, 0.92);
  transform: translateX(2px);
}

.footer__meta {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 800;
  line-height: 1.6;
}

.footer__meta i {
  margin-top: 2px;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.72);
}

.footer__social {
  margin-top: 10px;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__socialLink {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.02);
  color: rgba(15, 23, 42, 0.78);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.footer__socialLink:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.2);
}

.footer__socialLink i {
  font-size: 18px;
}

.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
}

.footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.footer__copy {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.62);
}

.footer__topLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.78);
}

.footer__topLink:hover {
  color: rgba(15, 23, 42, 0.92);
}

/* Calculator modal */
.calc {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

/* Contact modal */
.contact {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact[hidden] {
  display: none;
}

.contact__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.66);
  opacity: 0;
  transition: opacity 160ms ease;
}

.contact__panel {
  position: relative;
  width: min(720px, calc(100% - 28px));
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow);
  padding: 22px;
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  transition: transform 160ms ease, opacity 160ms ease;
}

.contact.is-open .contact__backdrop {
  opacity: 1;
}

.contact.is-open .contact__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.85);
}

.contact__close i {
  font-size: 20px;
}

.contact__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 26px;
  color: rgba(15, 23, 42, 0.92);
}

.contact__sub {
  margin: 8px 0 0;
  color: rgba(15, 23, 42, 0.66);
  font-weight: 700;
  line-height: 1.7;
}

.contact__form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.contact__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact__field {
  display: grid;
  gap: 8px;
}

.contact__label {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.72);
}

.contact__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.02);
  color: rgba(15, 23, 42, 0.92);
  font-weight: 800;
  font-size: 14px;
  font-family: inherit;
}

.contact__input--area {
  resize: vertical;
  min-height: 110px;
}

.contact__input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.22);
  border-color: rgba(255, 107, 91, 0.42);
  background: #fff;
}

.contact__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.contact__actions .btn {
  flex: 1 1 230px;
}

.calc[hidden] {
  display: none;
}

.calc__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.66);
  opacity: 0;
  transition: opacity 160ms ease;
}

.calc__panel {
  position: relative;
  width: min(640px, calc(100% - 28px));
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow);
  padding: 22px;
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  transition: transform 160ms ease, opacity 160ms ease;
}

.calc.is-open .calc__backdrop {
  opacity: 1;
}

.calc.is-open .calc__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.calc__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.85);
}

.calc__close i {
  font-size: 20px;
}

.calc__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 26px;
  color: rgba(15, 23, 42, 0.92);
}

.calc__sub {
  margin: 8px 0 0;
  color: rgba(15, 23, 42, 0.66);
  font-weight: 700;
  line-height: 1.7;
}

.calc__form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.calc__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.calc__field {
  display: grid;
  gap: 8px;
}

.calc__label {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.72);
}

.calc__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.02);
  color: rgba(15, 23, 42, 0.92);
  font-weight: 800;
  font-size: 14px;
}

.calc__input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.22);
  border-color: rgba(255, 107, 91, 0.42);
  background: #fff;
}

.calc__result {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  padding: 14px;
}

.calc__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.72);
}

.calc__line strong {
  color: rgba(15, 23, 42, 0.92);
}

.calc__line--muted {
  color: rgba(15, 23, 42, 0.62);
}

.calc__divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  margin: 10px 0;
}

.calc__line--total {
  font-size: 18px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.84);
}

.calc__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.calc__actions .btn {
  flex: 1 1 230px;
}

/* Transition header to mobile menu early to prevent nav overflow */
@media (max-width: 1250px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
  }

  .mobile {
    display: block;
  }

  .actions .btn {
    display: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .why__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
  }

  .mobile {
    display: block;
  }

  .actions .btn {
    display: none;
  }

  .hero__video {
    object-position: 66% center;
  }

  .about {
    padding: 72px 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__img {
    height: 420px;
  }

  .about__badge {
    right: 14px;
    bottom: -26px;
    width: 220px;
  }

  .how {
    padding: 78px 0;
  }

  .how__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .services {
    padding: 78px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services__grid--secondary {
    grid-template-columns: 1fr;
    max-width: none;
    margin-top: 18px;
  }

  .services__card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .topbar__left {
    display: none;
  }

  .brand__logo {
    transform: scale(3.5);
  }

  .hero__title {
    font-size: 32px;
  }

  .details-hero__title {
    font-size: 28px;
  }

  .hero__inner {
    padding: 62px 0 72px;
  }

  .about__dots {
    left: -16px;
    top: -18px;
    width: 130px;
    height: 130px;
  }

  .about__img {
    height: 360px;
  }

  .about__badge {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .how {
    padding: 64px 0;
  }

  .how__line {
    width: 36px;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services {
    padding: 64px 0;
  }

  .calc {
    padding: 16px;
  }

  .calc__panel {
    padding: 18px;
  }

  .calc__row {
    grid-template-columns: 1fr;
  }

  .tst {
    padding: 72px 0;
  }

  .tstSwiper {
    padding-left: 2px;
    padding-right: 2px;
  }

  .footer__top {
    padding: 66px 0 44px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero {
    background-image:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.52) 46%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0) 88%
      ),
      var(--hero-poster);
    background-size: cover;
    background-position: 66% center;
  }

  .hero__video {
    display: none;
  }

  .btn,
  .mobile {
    transition: none;
  }

  .calc__backdrop,
  .calc__panel {
    transition: none;
  }

  .btn--primary:hover {
    transform: none;
  }

  .how__bg {
    background-size: auto, auto, auto, 34px 34px;
  }
}

/* Quote page (premium builder + live ledger) */
.quote {
  min-height: calc(100vh - 120px);
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(255, 107, 91, 0.08), transparent 55%),
    radial-gradient(900px 460px at 92% 0%, rgba(36, 79, 91, 0.09), transparent 55%),
    #ffffff;
}

/* Quote page v2 (new look) */
.qv2 {
  min-height: calc(100vh - 120px);
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(255, 107, 91, 0.16), transparent 55%),
    radial-gradient(820px 360px at 90% 10%, rgba(36, 79, 91, 0.12), transparent 58%),
    #f2e6d3;
}

.qv2Hero {
  padding: 58px 0 24px;
}

.qv2Hero__inner {
  text-align: left;
}

.qv2Hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(36, 79, 91, 0.18);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  color: rgba(36, 79, 91, 0.92);
  letter-spacing: 0.04em;
  font-size: 12px;
}

.qv2Hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.16);
}

.qv2Hero__title {
  margin: 16px 0 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  color: rgba(36, 79, 91, 0.94);
}

.qv2Hero__accent {
  color: var(--accent);
  font-style: italic;
}

.qv2Hero__sub {
  margin: 12px 0 0;
  max-width: 860px;
  color: rgba(15, 23, 42, 0.68);
  font-weight: 700;
  line-height: 1.75;
}

.qv2Shell {
  padding: 22px 0 86px;
}

.qv2Grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 18px;
  align-items: start;
}

.qv2Panel {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  padding: 18px;
}

.qv2Panel__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.qv2Panel__kicker {
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.56);
}

.qv2Panel__title {
  margin: 8px 0 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: rgba(36, 79, 91, 0.94);
}

.qv2Panel__link {
  font-weight: 900;
  color: rgba(36, 79, 91, 0.88);
  border-bottom: 1px dashed rgba(36, 79, 91, 0.36);
  padding-bottom: 2px;
}

.qv2Block {
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.qv2Block:last-child {
  border-bottom: none;
}

.qv2Block__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.qv2Block__label {
  font-weight: 900;
  color: rgba(36, 79, 91, 0.92);
  letter-spacing: -0.01em;
}

.qv2Block__hint {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.54);
  font-size: 12px;
}

.qv2Cards {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.qv2Card {
  text-align: left;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.qv2Card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

.qv2Card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.22);
}

.qv2Card__icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: rgba(36, 79, 91, 0.08);
  border: 1px solid rgba(36, 79, 91, 0.14);
  display: grid;
  place-items: center;
  color: rgba(36, 79, 91, 0.92);
}

.qv2Card__icon i {
  font-size: 18px;
}

.qv2Card__name {
  margin-top: 10px;
  font-weight: 900;
  color: rgba(36, 79, 91, 0.94);
}

.qv2Card__meta {
  margin-top: 6px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.6);
  font-size: 12px;
}

.qv2Card.is-selected {
  border-color: rgba(36, 79, 91, 0.7);
  box-shadow: 0 18px 46px rgba(36, 79, 91, 0.14);
}

.qv2Chips {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qv2Chip {
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  cursor: pointer;
  color: rgba(36, 79, 91, 0.92);
}

.qv2Chip__muted {
  margin-left: 8px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.48);
}

.qv2Chip.is-selected {
  background: rgba(36, 79, 91, 0.95);
  color: #ffffff;
  border-color: transparent;
}

.qv2Chip.is-selected .qv2Chip__muted {
  color: rgba(255, 255, 255, 0.75);
}

.qv2Rooms {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.qv2Room {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.02);
  padding: 14px;
}

.qv2Room__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.qv2Room__label {
  font-weight: 900;
  color: rgba(36, 79, 91, 0.92);
}

.qv2Room__rate {
  font-weight: 900;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.qv2Room__value {
  margin-top: 12px;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.03em;
  color: rgba(36, 79, 91, 0.94);
}

.qv2Room__slider {
  margin-top: 12px;
}

.qv2Room__step {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.qv2Step {
  flex: 1;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(36, 79, 91, 0.24);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-weight: 900;
  color: rgba(36, 79, 91, 0.92);
  font-size: 18px;
}

.qv2Step:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.22);
}

.qv2Freq {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.qv2Freq__btn {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 12px;
  font-weight: 900;
  cursor: pointer;
  color: rgba(36, 79, 91, 0.92);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.qv2Freq__sub {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.qv2Freq__btn.is-selected {
  border-color: rgba(36, 79, 91, 0.7);
  box-shadow: 0 18px 46px rgba(36, 79, 91, 0.12);
}

.qv2Addon {
  padding: 18px 0;
}

.qv2Addon + .qv2Addon {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.qv2Addon__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.qv2Addon__num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(36, 79, 91, 0.95);
  color: rgba(255, 255, 255, 0.96);
  font-weight: 900;
  font-size: 12px;
}

.qv2Addon__copy {
  flex: 1;
  min-width: 0;
}

.qv2Addon__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: rgba(36, 79, 91, 0.94);
}

.qv2Addon__accent {
  color: var(--accent);
  font-style: italic;
}

.qv2Addon__sub {
  margin-top: 6px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.64);
  line-height: 1.6;
}

.qv2Addon__pill {
  flex: 0 0 auto;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 107, 91, 0.12);
  border: 1px solid rgba(255, 107, 91, 0.22);
  color: rgba(255, 107, 91, 0.95);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.qv2AddonGrid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.qv2AddonCard {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.02);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
}

.qv2AddonCard:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.qv2AddonCard__input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.qv2AddonCard__box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.22);
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.qv2AddonCard__box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  opacity: 0;
}

.qv2AddonCard__input:focus-visible + .qv2AddonCard__box {
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.18);
}

.qv2AddonCard__input:checked + .qv2AddonCard__box {
  border-color: transparent;
  background: rgba(36, 79, 91, 0.95);
}

.qv2AddonCard__input:checked + .qv2AddonCard__box::after {
  opacity: 1;
}

.qv2AddonCard__main {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.qv2AddonCard__name {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.qv2AddonCard__desc {
  font-weight: 700;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
}

.qv2AddonCard__price {
  font-weight: 900;
  color: rgba(36, 79, 91, 0.92);
  white-space: nowrap;
  margin-left: auto;
}

.qv2AddonCard.is-selected {
  border-color: rgba(36, 79, 91, 0.34);
  background: rgba(255, 255, 255, 0.88);
}

.qv2Slots {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qv2Slot {
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.02);
  font-weight: 900;
  cursor: pointer;
  color: rgba(36, 79, 91, 0.92);
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
}

.qv2Slot__sub {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.58);
  font-size: 12px;
}

.qv2Slot.is-selected {
  background: rgba(36, 79, 91, 0.95);
  color: rgba(255, 255, 255, 0.96);
  border-color: transparent;
}

.qv2Slot.is-selected .qv2Slot__sub {
  color: rgba(255, 255, 255, 0.78);
}

.qv2Summary {
  position: sticky;
  top: 102px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(36, 79, 91, 0.97);
  border: 1px solid rgba(36, 79, 91, 0.7);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.22);
}

.qv2Summary__head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qv2Summary__kicker {
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(255, 107, 91, 0.92);
}

.qv2Summary__title {
  margin-top: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
}

.qv2Ledger {
  padding: 16px 18px 16px;
}

.qv2Line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.qv2Line__title {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.qv2Line__sub {
  margin-top: 4px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.qv2Line__amt {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.qv2Divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 12px 0;
}

.qv2Totals {
  display: grid;
  gap: 10px;
}

.qv2Totals__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.qv2Totals__label {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.84);
}

.qv2Totals__sub {
  margin-top: 4px;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.qv2Totals__value {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.qv2Totals__row--discount .qv2Totals__value {
  color: rgba(255, 107, 91, 0.95);
}

.qv2Totals__row--total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.qv2Totals__value--big {
  font-size: 46px;
  letter-spacing: -0.03em;
}

.qv2Trust {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.qv2Trust__row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.qv2Trust__row i {
  color: rgba(255, 107, 91, 0.9);
  font-size: 18px;
  margin-top: 1px;
}

.qv2Cta {
  display: grid;
  gap: 10px;
  padding: 14px 18px 18px;
}

.qv2Cta__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-weight: 900;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(255, 107, 91, 0.24);
}

.qv2Cta__ghost {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  cursor: pointer;
}

/* noUiSlider theming for quote page */
.qv2 .noUi-target {
  border: none;
  box-shadow: none;
  background: rgba(36, 79, 91, 0.12);
  border-radius: 999px;
  height: 10px;
}

.qv2 .noUi-connect {
  background: linear-gradient(135deg, rgba(36, 79, 91, 0.82), rgba(255, 107, 91, 0.7));
}

.qv2 .noUi-handle {
  border: 1px solid rgba(36, 79, 91, 0.22);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  width: 22px;
  height: 22px;
  right: -11px;
  top: -7px;
  background: rgba(255, 255, 255, 0.96);
}

.qv2 .noUi-handle::before,
.qv2 .noUi-handle::after {
  display: none;
}

@media (max-width: 1020px) {
  .qv2Grid {
    grid-template-columns: 1fr;
  }

  .qv2Summary {
    position: relative;
    top: auto;
  }

  .contact {
    padding: 16px;
  }
  .contact__panel {
    padding: 18px;
  }
  .contact__row {
    grid-template-columns: 1fr;
  }
  .qv2Cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .qv2Freq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .qv2Hero {
    padding: 44px 0 18px;
  }

  .qv2Rooms {
    grid-template-columns: 1fr;
  }

  .qv2Cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qv2AddonGrid {
    grid-template-columns: 1fr;
  }
}

.quoteHero {
  padding: 56px 0 26px;
}

.quoteHero__inner {
  text-align: center;
}

.quoteHero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(36, 79, 91, 0.92);
  font-size: 12px;
}

.quoteHero__line {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.quoteHero__title {
  margin: 18px auto 0;
  max-width: 900px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(34px, 4.8vw, 62px);
  color: rgba(36, 79, 91, 0.92);
}

.quoteHero__accent {
  color: var(--accent);
  font-style: italic;
}

.quoteHero__sub {
  margin: 14px auto 0;
  max-width: 900px;
  color: rgba(15, 23, 42, 0.68);
  font-weight: 700;
  line-height: 1.75;
}

.quoteBody {
  padding: 34px 0 86px;
}

.quoteGrid {
  display: grid;
  grid-template-columns: 1.08fr 0.86fr;
  gap: 22px;
  align-items: start;
}

.quoteBuilder {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  padding: 22px;
}

.quoteBuilder__hint {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(36, 79, 91, 0.07);
  border: 1px solid rgba(36, 79, 91, 0.12);
}

.quoteBuilder__hintIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.quoteBuilder__hintIcon i {
  font-size: 18px;
}

.quoteBuilder__hintTitle {
  font-weight: 900;
  color: rgba(36, 79, 91, 0.92);
}

.quoteBuilder__hintSub {
  margin-top: 2px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.66);
}

.quoteDivider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  margin: 20px 0;
}

.quoteStep {
  display: grid;
  gap: 14px;
}

.quoteStep__head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.quoteStep__headRow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.quoteStep__num {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(36, 79, 91, 0.95);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.quoteStep__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 28px;
  color: rgba(36, 79, 91, 0.94);
}

.quoteStep__accent {
  color: var(--accent);
  font-style: italic;
}

.quoteStep__desc {
  margin: 4px 0 0;
  color: rgba(15, 23, 42, 0.66);
  font-weight: 700;
  line-height: 1.7;
}

.quoteServiceGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quoteService {
  text-align: left;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.quoteService:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.22);
}

.quoteService:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.quoteService__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quoteService__name {
  font-weight: 900;
  color: rgba(36, 79, 91, 0.94);
  font-size: 16px;
}

.quoteService__check {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  display: grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.quoteService__meta {
  margin-top: 10px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.66);
}

.quoteService__desc {
  margin-top: 8px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.62);
  line-height: 1.55;
}

.quoteService.is-selected {
  border-color: rgba(36, 79, 91, 0.7);
  box-shadow: 0 18px 46px rgba(36, 79, 91, 0.14);
  background: rgba(255, 255, 255, 0.98);
}

.quoteService.is-selected .quoteService__check {
  background: var(--accent);
  border-color: transparent;
  color: #ffffff;
}

.quotePills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quotePill {
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  color: rgba(36, 79, 91, 0.92);
  cursor: pointer;
}

.quotePill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.22);
}

.quotePill__muted {
  margin-left: 8px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.5);
}

.quotePill.is-selected {
  background: rgba(36, 79, 91, 0.95);
  border-color: transparent;
  color: #ffffff;
}

.quotePill.is-selected .quotePill__muted {
  color: rgba(255, 255, 255, 0.75);
}

.quoteCounters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quoteCounter {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.02);
  padding: 14px;
}

.quoteCounter__label {
  font-weight: 900;
  color: rgba(36, 79, 91, 0.92);
}

.quoteCounter__sub {
  margin-top: 4px;
  font-weight: 900;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.quoteCounter__controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quoteCounter__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(36, 79, 91, 0.42);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  cursor: pointer;
  color: rgba(36, 79, 91, 0.92);
}

.quoteCounter__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.22);
}

.quoteCounter__value {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: rgba(36, 79, 91, 0.92);
  min-width: 36px;
  text-align: center;
}

.quoteBadge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 107, 91, 0.12);
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 11px;
  white-space: nowrap;
}

.quoteFreq {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quoteFreq__btn {
  text-align: center;
  border-radius: 18px;
  padding: 16px 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  cursor: pointer;
  color: rgba(36, 79, 91, 0.92);
}

.quoteFreq__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(255, 107, 91, 0.22);
}

.quoteFreq__sub {
  margin-top: 6px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.quoteFreq__btn.is-selected {
  border-color: rgba(36, 79, 91, 0.7);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(36, 79, 91, 0.14);
}

.quoteBuilder__footer {
  margin-top: 18px;
}

.quoteLedger {
  position: sticky;
  top: 102px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(36, 79, 91, 0.97);
  border: 1px solid rgba(36, 79, 91, 0.7);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.22);
}

.quoteLedger__head {
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quoteLedger__kicker {
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: rgba(255, 107, 91, 0.92);
}

.quoteLedger__title {
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.96);
}

.quoteLedger__accent {
  color: var(--accent);
  font-style: italic;
}

.quoteLedger__body {
  padding: 18px 20px 16px;
}

.quoteItem {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.quoteItem__title {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.quoteItem__sub {
  margin-top: 4px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.quoteItem__amt {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.quoteLedger__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 12px 0;
}

.quoteTotals {
  display: grid;
  gap: 10px;
}

.quoteTotals__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.quoteTotals__label {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.84);
}

.quoteTotals__sub {
  margin-top: 4px;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.quoteTotals__value {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.quoteTotals__row--discount .quoteTotals__value {
  color: rgba(255, 107, 91, 0.95);
}

.quoteTotals__row--total {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quoteTotals__value--big {
  font-size: 44px;
  letter-spacing: -0.03em;
}

.quoteLedger__cta {
  padding: 0;
}

.quoteLedger__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 16px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.quoteLedger__btn:hover {
  background: var(--accent-2);
}

@media (max-width: 980px) {
  .quoteGrid {
    grid-template-columns: 1fr;
  }

  .quoteLedger {
    position: relative;
    top: auto;
  }

  .quoteServiceGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quoteFreq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.ab-hero {
  position: relative;
  background: #0b1417;
  overflow: hidden;
  line-height: 0;
}

.ab-hero__img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
}

@media (min-width: 1025px) {
  .ab-hero {
    height: 640px;
    overflow: hidden;
  }
  
  .ab-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

/* Story Section */
.ab-story {
  padding: 100px 0;
  background: var(--bg);
}

.ab-story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.ab-story__content {
  display: flex;
  flex-direction: column;
}

.ab-story__eyebrow {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--brand-2);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ab-story__title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.ab-story__p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 18px;
}

.ab-story__p:last-of-type {
  margin-bottom: 0;
}

.ab-story__media {
  position: relative;
}

.ab-story__img-wrap {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ab-story__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  pointer-events: none;
}

.ab-story__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Stats Section */
.ab-stats {
  background: #f7fafc;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ab-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ab-stats__card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ab-stats__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ab-stats__num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin-bottom: 12px;
  line-height: 1;
}

.ab-stats__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.ab-stats__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Values Section */
.ab-values {
  padding: 100px 0;
  background: #ffffff;
}

.ab-values__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.ab-values__eyebrow {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ab-values__title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}

.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ab-values__card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms ease, border-color 200ms ease;
  position: relative;
  overflow: hidden;
}

.ab-values__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(36, 79, 91, 0.25);
}

.ab-values__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(36, 79, 91, 0.06);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-size: 24px;
  transition: background-color 200ms ease, color 200ms ease;
}

.ab-values__card:hover .ab-values__icon {
  background: var(--brand);
  color: #ffffff;
}

.ab-values__h {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
}

.ab-values__p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Team Section */
.ab-team {
  padding: 100px 0;
  background: #f7fafc;
  border-top: 1px solid var(--border);
}

.ab-team__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.ab-team__eyebrow {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--brand-2);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ab-team__title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}

.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ab-team__card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms ease;
}

.ab-team__card:hover {
  box-shadow: var(--shadow);
}

.ab-team__photo-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
}

.ab-team__avatar {
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ab-team__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.ab-team__card:hover .ab-team__img {
  transform: scale(1.05);
}

.ab-team__body {
  padding: 24px;
  text-align: center;
}

.ab-team__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}

.ab-team__role {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ab-team__bio {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* CTA Section */
.ab-cta {
  background: #f7fafc;
  padding: 0 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ab-cta__shade {
  display: none;
}

.ab-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 50px 60px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-cta__inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.ab-cta__title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.ab-cta__lead {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.ab-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ab-cta__btn-quote {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 14px 36px rgba(255, 107, 91, 0.28);
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.ab-cta__btn-quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(255, 107, 91, 0.32);
}

.ab-cta__btn-quote i {
  font-size: 14px;
}

.ab-cta__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  border-radius: 12px;
  border: 1px solid rgba(36, 79, 91, 0.22);
  background: transparent;
  color: rgba(36, 79, 91, 0.92);
  transition: background 150ms ease, border-color 150ms ease;
}

.ab-cta__btn-call:hover {
  background: rgba(36, 79, 91, 0.06);
  border-color: rgba(36, 79, 91, 0.36);
}

.ab-cta__btn-call i {
  font-size: 20px;
  color: var(--accent);
}

.ab-cta__call-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ab-cta__call-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.ab-cta__call-number {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(36, 79, 91, 0.92);
}

/* Responsiveness for About Page */
@media (max-width: 1024px) {
  .ab-story__grid {
    gap: 48px;
  }
  
  .ab-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ab-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .ab-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ab-story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-story__img {
    height: 340px;
  }

  .ab-values__grid {
    grid-template-columns: 1fr;
  }

  .ab-team__grid {
    grid-template-columns: 1fr;
  }

  .ab-stats__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ab-story,
  .ab-values,
  .ab-team {
    padding: 80px 0;
  }

  .ab-cta {
    padding: 0 0 80px;
  }

  .ab-cta__inner {
    padding: 40px 30px;
    margin: 0 24px;
  }
}

@media (max-width: 480px) {
  .ab-cta__inner {
    padding: 30px 20px;
    margin: 0 16px;
  }
  
  .ab-cta__buttons .btn,
  .ab-cta__buttons .ab-cta__btn-quote,
  .ab-cta__buttons .ab-cta__btn-call {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */
.srv-hero {
  position: relative;
  min-height: 640px; /* matches home page hero height */
  background-color: #0b1417;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.srv-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
}

.srv-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srv-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #0b1417 38%,
    rgba(11, 20, 23, 0.92) 50%,
    rgba(11, 20, 23, 0.4) 75%,
    transparent 100%
  );
}

.srv-hero__logo-fade {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: auto;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.srv-hero__inner {
  position: relative;
  z-index: 2;
}

.srv-hero__content {
  max-width: 680px;
  color: #ffffff;
}

.srv-hero__breadcrumbs {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.srv-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 150ms ease;
}

.srv-hero__breadcrumbs a:hover {
  color: #ffffff;
}

.srv-hero__breadcrumbs span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
}

.srv-hero__title {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.srv-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
}

.srv-hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.srv-hero__btn-quote {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 14px 36px rgba(255, 107, 91, 0.28);
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.srv-hero__btn-quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(255, 107, 91, 0.32);
}

.srv-hero__btn-quote i {
  font-size: 14px;
}

.srv-hero__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transition: background 150ms ease, border-color 150ms ease;
}

.srv-hero__btn-call:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.srv-hero__btn-call i {
  font-size: 20px;
  color: #ffffff;
}

.srv-hero__call-info {
  display: flex;
  flex-direction: column;
}

.srv-hero__call-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.srv-hero__call-number {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .srv-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background-color: #0b1417;
  }

  .srv-hero__bg {
    position: relative;
    width: 100%;
    height: 320px;
    order: 1;
  }

  .srv-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .srv-hero__overlay {
    display: none;
  }

  .srv-hero__logo-fade {
    display: none;
  }

  .srv-hero__inner {
    order: 2;
    padding: 40px 0 60px;
  }

  .srv-hero__content {
    max-width: 100%;
  }

  .srv-hero__breadcrumbs {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .srv-hero__title {
    font-size: clamp(26px, 6.5vw, 36px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .srv-hero__lead {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .srv-hero__cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .srv-hero__btn-quote,
  .srv-hero__btn-call {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}



/* Card Badge (Orange "01", "02", etc.) */
.services__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* White Circle Icon Badge */
.services__icon--white {
  background: #ffffff !important;
  color: var(--accent) !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1) !important;
}

/* Orange Checkmarks List Modifier */
.services__list--accent i {
  color: var(--accent) !important;
}

/* Orange Quote Card Button Modifier */
.services__btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: var(--accent-ink) !important;
  box-shadow: 0 8px 24px rgba(255, 107, 91, 0.15) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.services__btn--accent:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 28px rgba(255, 107, 91, 0.22) !important;
}

/* Card Specific Images */
.services__media--lease-vacuum {
  background-image: url("s3.jpg");
}

.services__media--airbnb-bed {
  background-image: url("s4.jpg");
}

/* Services Trust/Stats Bar */
.srv-trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 30px 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-top: 60px;
}

.srv-trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  transition: transform 0.3s ease;
}

.srv-trust__item:hover {
  transform: translateY(-2px);
}

.srv-trust__icon {
  font-size: 38px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.srv-trust__item:hover .srv-trust__icon {
  transform: scale(1.1) rotate(3deg);
}

.srv-trust__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.srv-trust__num {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.srv-trust__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.srv-trust__divider {
  width: 1px;
  height: 48px;
  background-color: rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
  margin: 0 15px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .srv-trust {
    flex-wrap: wrap;
    padding: 30px;
    gap: 24px;
  }
  .srv-trust__divider {
    display: none;
  }
  .srv-trust__item {
    flex: 0 0 calc(50% - 12px);
    justify-content: flex-start;
    padding-left: 20px;
  }
}

@media (max-width: 576px) {
  .srv-trust {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
  }
  .srv-trust__item {
    flex: 1 1 100%;
    padding-left: 10px;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.cnt-hero {
  position: relative;
  background: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.cnt-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.cnt-hero__content {
  max-width: 640px;
}

.cnt-hero__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cnt-hero__title {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cnt-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 60ch;
}

.cnt-hero__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cnt-hero__btn-call {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 14px 36px rgba(255, 107, 91, 0.28);
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.cnt-hero__btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(255, 107, 91, 0.32);
}

.cnt-hero__btn-call i {
  font-size: 16px;
}

.cnt-hero__btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.cnt-hero__btn-quote:hover {
  background: rgba(255, 107, 91, 0.06);
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.cnt-hero__btn-quote i {
  font-size: 14px;
}

.cnt-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.cnt-hero__img-wrap {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cnt-hero__img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 980px) {
  .cnt-hero {
    padding: 60px 0;
  }
  .cnt-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cnt-hero__content {
    max-width: 100%;
    text-align: center;
  }
  .cnt-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .cnt-hero__cta {
    justify-content: center;
  }
  .cnt-hero__media {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .cnt-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .cnt-hero__btn-call,
  .cnt-hero__btn-quote {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Info cards */
.cnt-info {
  background: #f7fafc;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cnt-info__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.cnt-info__card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cnt-info__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cnt-info__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 107, 91, 0.1);
  border: 1px solid rgba(255, 107, 91, 0.18);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.cnt-info__label {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.cnt-info__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.3;
  margin-bottom: 12px;
  word-break: break-word;
}

.cnt-info__value a {
  color: inherit;
  transition: color 150ms ease;
}

.cnt-info__value a:hover {
  color: var(--accent);
}

.cnt-info__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .cnt-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .cnt-info__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cnt-info__card {
    padding: 28px 24px;
  }
}

/* Service Coverage Section */
.cnt-coverage {
  background: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.cnt-coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cnt-coverage__media {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.cnt-coverage__map {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.cnt-coverage__content {
  display: flex;
  flex-direction: column;
}

.cnt-coverage__title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin: 0 0 32px;
}

.cnt-coverage__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cnt-coverage__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.cnt-coverage__list i {
  color: var(--accent);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .cnt-coverage {
    padding: 72px 0;
  }
  .cnt-coverage__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cnt-coverage__media {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .cnt-coverage__map {
    height: 340px;
  }
  .cnt-coverage__content {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .cnt-coverage__title {
    text-align: center;
    margin-bottom: 24px;
  }
  .cnt-coverage__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: start;
    gap: 16px 32px;
    padding-left: 20px;
  }
}

@media (max-width: 640px) {
  .cnt-coverage__list {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 16px;
  }
}

/* ==========================================================================
   Sub-Service Detail Pages (Regular Property Cleaning details)
   ========================================================================== */

/* Stretched Overlay Link for Cards */
.services__card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
}

/* Service Detail Hero Section */
.details-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0b1417;
  color: #fff;
  padding: 120px 0 80px;
}

.details-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.details-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(90deg, rgba(11, 20, 23, 0.9) 0%, rgba(11, 20, 23, 0.76) 50%, rgba(11, 20, 23, 0.4) 100%),
    radial-gradient(800px 480px at 10% 40%, rgba(36, 79, 91, 0.35), rgba(36, 79, 91, 0) 60%),
    radial-gradient(800px 480px at 80% 60%, rgba(255, 107, 91, 0.16), rgba(255, 107, 91, 0) 60%);
}

.details-hero__inner {
  position: relative;
  z-index: 2;
}

.details-hero__content {
  max-width: 800px;
}

.details-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.details-hero__breadcrumbs a {
  transition: color 140ms ease;
}

.details-hero__breadcrumbs a:hover {
  color: var(--accent);
}

.details-hero__breadcrumbs span {
  color: rgba(255, 255, 255, 0.4);
}

.details-hero__title {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.details-hero__lead {
  font-size: clamp(15.5px, 1.8vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 32px;
  max-width: 68ch;
}

.details-hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.details-hero__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
}

.details-hero__btn-call i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 18px;
  transition: background 140ms ease, border-color 140ms ease;
}

.details-hero__btn-call:hover i {
  background: rgba(255, 107, 91, 0.2);
  border-color: rgba(255, 107, 91, 0.4);
}

.details-hero__btn-call span {
  display: grid;
}

.details-hero__btn-call-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.details-hero__btn-call-number {
  font-size: 17px;
  font-weight: 900;
}

/* Service Detail Intro Split Layout */
.details-intro {
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.details-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 68px;
  align-items: start;
}

.details-intro__content {
  display: flex;
  flex-direction: column;
}

.kicker--coral {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.details-intro__title {
  margin: 0 0 24px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.details-intro__text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

.details-intro__checklist {
  background: rgba(15, 23, 42, 0.01);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 34px 28px;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.included-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text);
  font-size: 14.5px;
}

.included-list__item i {
  font-size: 16px;
  color: var(--accent);
  background: rgba(255, 107, 91, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 107, 91, 0.2);
  flex-shrink: 0;
}

/* Service Detail Packages Section */
.packages {
  padding: 100px 0;
  background: #f7fafc;
  position: relative;
  overflow: hidden;
}

.packages__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    repeating-conic-gradient(
      from -12deg at 50% 0%,
      rgba(36, 79, 91, 0.05) 0deg,
      rgba(36, 79, 91, 0.05) 8deg,
      transparent 8deg,
      transparent 18deg
    );
  opacity: 0.6;
}

.packages__inner {
  position: relative;
  z-index: 1;
}

.packages__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 58px;
}

.packages__title {
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
  margin: 10px 0 16px;
}

.packages__sub {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
  font-weight: 700;
  margin: 0;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 40px 30px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.1);
}

.package-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 22px 58px rgba(255, 107, 91, 0.12);
  background: #ffffff;
}

.package-card--featured:hover {
  box-shadow: 0 28px 75px rgba(255, 107, 91, 0.16);
  border-color: var(--accent-2);
}

.package-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(255, 107, 91, 0.24);
  white-space: nowrap;
}

.package-card__badge--secondary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  box-shadow: 0 10px 24px rgba(36, 79, 91, 0.2);
}

.package-card__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 16px;
}

.package-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.package-card__price-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.package-card__price {
  font-size: 44px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.package-card__price-period {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.package-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 28px;
}

.package-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 14px;
}

.package-card__features li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.45;
}

.package-card__features li i {
  color: var(--brand-2);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.package-card--featured .package-card__features li i {
  color: var(--accent);
}

.package-card__features li.is-bold {
  color: var(--text);
  font-weight: 800;
}

.package-card__btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 13px;
}

/* Sub-service Coverage Responsive Rules */
@media (max-width: 980px) {
  .details-hero {
    min-height: 400px;
    padding: 100px 0 64px;
  }
  
  .details-intro {
    padding: 72px 0;
  }
  
  .details-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .details-intro__checklist {
    padding: 28px 22px;
  }
  
  .packages {
    padding: 72px 0;
  }
  
  .packages__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
    margin: 0 auto;
  }
  
  .package-card {
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .details-hero {
    min-height: 340px;
    padding: 80px 0 54px;
  }
  
  .details-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .details-hero__cta .btn {
    width: 100%;
  }
  
  .details-hero__btn-call {
    justify-content: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
  }
  
  .included-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Service details new features and cleaning process layout */
.details-features {
  background: #f8fafc;
  padding: 50px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item__icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 24px;
  background: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 107, 91, 0.08);
}

.feature-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-item__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
}

.feature-item__desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 600;
}

.details-process {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.details-process__head {
  text-align: left;
  margin-bottom: 40px;
}

.process-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.process-item__icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 26px;
  background: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255, 107, 91, 0.08);
}

.process-item__text {
  display: flex;
  flex-direction: column;
}

.process-item__step {
  font-size: 13px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.process-item__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
}

.process-item__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 600;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  opacity: 0.6;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  
  .process-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: -10px 0;
  }
  
  .process-item {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .details-features {
    padding: 40px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .details-process {
    padding: 60px 0;
  }
  
  .process-item {
    max-width: none;
  }
}

/* ==========================================================================
   Navigation Dropdown Menu Style
   ========================================================================== */

/* Desktop Dropdown Container */
.nav__dropdown {
  position: relative;
  display: inline-block;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

/* Hover rotation for the arrow */
.nav__dropdown:hover .nav__dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu Box */
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 340px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 100;
}

/* Open dropdown on hover */
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Safe Hover Bridge Area to prevent mouse leave closing dropdown */
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}

/* Dropdown Menu Item */
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.15s ease, transform 0.15s ease;
  text-align: left;
}

.nav__dropdown-item:hover {
  background: rgba(15, 23, 42, 0.03);
  transform: translateX(4px);
}

.nav__dropdown-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(36, 79, 91, 0.08);
  color: var(--brand-2);
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__dropdown-item:hover .nav__dropdown-item-icon {
  background: var(--brand-2);
  color: #ffffff;
}

.nav__dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__dropdown-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.15s ease;
}

.nav__dropdown-item:hover .nav__dropdown-item-title {
  color: var(--brand-2);
}

.nav__dropdown-item-desc {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

/* Dropdown Active Highlight */
.nav__dropdown-item.is-active {
  background: rgba(36, 79, 91, 0.05);
}

.nav__dropdown-item.is-active .nav__dropdown-item-icon {
  background: var(--brand);
  color: #ffffff;
}

.nav__dropdown-item.is-active .nav__dropdown-item-title {
  color: var(--brand);
}

/* ==========================================================================
   Mobile Dropdown Style
   ========================================================================== */

.mobile__dropdown {
  display: grid;
  gap: 4px;
  width: 100%;
}

.mobile__dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.03);
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.84);
  cursor: pointer;
  outline: none;
}

.mobile__dropdown-btn i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.mobile__dropdown.is-open .mobile__dropdown-btn i {
  transform: rotate(180deg);
}

.mobile__dropdown-btn.is-active {
  color: var(--accent);
  border-color: rgba(255, 107, 91, 0.25);
  background: rgba(255, 107, 91, 0.04);
}

.mobile__sublinks {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, padding 0.2s ease;
  display: grid;
  gap: 6px;
  padding-left: 14px;
}

.mobile__dropdown.is-open .mobile__sublinks {
  max-height: 400px;
  opacity: 1;
  padding-top: 4px;
  padding-bottom: 4px;
}

.mobile__sublink {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(15, 23, 42, 0.01);
  font-weight: 700;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.75);
  transition: background 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile__sublink:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--brand-2);
}

.mobile__sublink.is-active {
  color: var(--accent);
  background: rgba(255, 107, 91, 0.02);
  border-color: rgba(255, 107, 91, 0.15);
}

/* ==========================================================================
   Achievements Section
   ========================================================================== */
.achieve {
  background: radial-gradient(circle at 50% 50%, var(--brand-2) 0%, var(--brand) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.achieve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 91, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(255, 107, 91, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.achieve__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.achieve__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.achieve__card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 91, 0.4);
  box-shadow: 0 20px 40px rgba(255, 107, 91, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.achieve__icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 91, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 91, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.achieve__card:hover .achieve__icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 107, 91, 0.2);
}

.achieve__number {
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.achieve__label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Media Queries for Achievements */
@media (max-width: 992px) {
  .achieve__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .achieve {
    padding: 60px 0;
  }
  .achieve__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .achieve__card {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   Before & After Projects Section
   ========================================================================== */
.proj {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.proj__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.proj__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.1);
  user-select: none;
}

.proj__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.proj__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proj__img--before {
  z-index: 2;
  clip-path: polygon(0 0, var(--exposure, 50%) 0, var(--exposure, 50%) 100%, 0 100%);
}

.proj__label {
  position: absolute;
  bottom: 20px;
  padding: 6px 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  z-index: 3;
  pointer-events: none;
}

.proj__label--before {
  left: 20px;
}

.proj__label--after {
  right: 20px;
}

.proj__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--exposure, 50%);
  width: 2px;
  background: #ffffff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj__handle::before,
.proj__handle::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.proj__handle-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 18px;
  position: relative;
  z-index: 4;
}

.proj__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

.proj__badge {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(255, 107, 91, 0.1);
  border: 1px solid rgba(255, 107, 91, 0.2);
  color: var(--accent);
  border-radius: 99px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.proj__title {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.proj__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 30px;
}

.proj__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 12px;
}

.proj__list-header {
  font-weight: 800;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 4px;
}

.proj__list li:not(.proj__list-header) {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.proj__list li:not(.proj__list-header)::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .proj__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   Projects Grid Page Styles
   ========================================================================== */
.proj-grid {
  padding: 100px 0;
  background: #fcfdfe;
}

.proj-grid .container {
  display: grid;
  gap: 80px;
}

.proj-grid__item {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.proj-grid__item--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.proj-grid__item--reverse .proj__slider {
  order: 2;
}

.proj-grid__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.proj-grid__title {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--brand);
}

.proj-grid__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .proj-grid__item,
  .proj-grid__item--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .proj-grid__item--reverse .proj__slider {
    order: 0;
  }
}

/* Home Service Areas Grid */
.home-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}

@media (max-width: 991px) {
  .home-areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-areas__grid {
    grid-template-columns: 1fr;
  }
}

.home-areas__card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
  transition: all 250ms ease;
}

.home-areas__card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 79, 91, 0.15);
  box-shadow: var(--shadow);
}

.home-areas__card-icon {
  font-size: 24px;
  color: var(--accent);
  background: rgba(220, 114, 91, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.home-areas__card-title {
  font-weight: 800;
  font-size: 15.5px;
  color: var(--text);
}

.home-areas__card-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* Home What's Included Preview Section */
.home-included {
  padding: 90px 0;
  background: #ffffff;
}

.home-included__inner {
  text-align: center;
}

.home-included__header {
  margin-bottom: 48px;
}

.home-included__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-included__kickerLine {
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
}

.home-included__title {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 40px);
  color: var(--brand);
}

.home-included__sub {
  margin: 14px auto 0;
  max-width: 65ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.home-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}

@media (max-width: 991px) {
  .home-included__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.home-included__card {
  background: #f8fafc;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.04);
  padding: 32px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
  transition: all 250ms ease;
}

.home-included__card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 79, 91, 0.12);
  box-shadow: var(--shadow);
}

.home-included__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.home-included__card-icon {
  font-size: 24px;
  color: var(--brand);
  background: rgba(36, 79, 91, 0.06);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.home-included__card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  margin: 0;
}

.home-included__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-included__card-list li {
  font-size: 14.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.home-included__card-list li i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 2px;
}

.home-included__actions {
  margin-top: 40px;
}

/* About Meet Pradip Split Section */
.ab-expert {
  padding: 90px 0;
  background: #ffffff;
}

.ab-expert__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .ab-expert__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ab-expert__video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.ab-expert__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.ab-expert__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ab-expert__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
}

.ab-expert__kicker-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
}

.ab-expert__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 42px);
  color: var(--brand);
  line-height: 1.2;
}

.ab-expert__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.ab-expert__bio {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.ab-expert__quote {
  position: relative;
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  padding: 24px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0 0;
}
.ab-expert__quote-text {
  font-size: 16.5px;
  font-style: italic;
  line-height: 1.7;
  color: var(--brand);
  font-weight: 600;
  margin: 0 0 12px;
}

.ab-expert__quote-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Global inc-cta (Shared CTA block layout) */
.inc-cta {
  background: var(--brand);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.inc-cta__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin: 0 0 14px;
}

.inc-cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 55ch;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.inc-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
