: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;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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: 280px 1fr 280px;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.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);
}

.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--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__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(3, minmax(0, 1fr));
  gap: 22px;
}

.services__grid--secondary {
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  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("https://images.unsplash.com/photo-1528740561666-dc2479dc08ab?auto=format&fit=crop&w=1400&q=80");
}

.services__media--deep {
  background-image:
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80");
}

.services__media--lease {
  background-image:
    url("https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=1400&q=80");
}

.services__media--airbnb {
  background-image:
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1400&q=80");
}

.services__media--office {
  background-image:
    url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1400&q=80");
}

.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;
  line-height: 1.7;
}

.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;
  gap: 18px;
}

.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__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);
}

.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 */
.tst {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(980px 460px at 18% 0%, rgba(36, 79, 91, 0.06), transparent 55%),
    radial-gradient(860px 420px at 88% 10%, rgba(255, 107, 91, 0.05), transparent 60%),
    rgba(15, 23, 42, 0.01);
  overflow: hidden;
}

.tst::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image:
    radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 38px 38px, 72px 72px;
  background-position: 0 0, 18px 18px;
  opacity: 0.45;
  pointer-events: none;
}

.tst__inner {
  position: relative;
}

.tst__head {
  text-align: center;
}

.tst__kicker {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(36, 79, 91, 0.92);
  font-size: 12px;
}

.tst__line {
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: rgba(36, 79, 91, 0.26);
}

.tst__title {
  margin: 14px auto 0;
  max-width: 840px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.12;
  color: rgba(15, 23, 42, 0.94);
}

.tst__shell {
  margin-top: 30px;
}

.tstSwiper {
  padding: 10px 6px 34px;
}

.tstCard {
  height: 100%;
  border-radius: 22px;
  padding: 22px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.swiper-slide-active .tstCard {
  transform: translateY(-2px);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.tstCard__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.tstCard__who {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.tstCard__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(36, 79, 91, 0.92);
  background: rgba(36, 79, 91, 0.08);
  border: 1px solid rgba(36, 79, 91, 0.14);
}

.tstCard__name {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
}

.tstCard__loc {
  margin-top: 2px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.56);
  font-style: italic;
}

.tstCard__stars {
  display: inline-flex;
  gap: 4px;
  color: var(--accent);
}

.tstCard__stars i {
  font-size: 18px;
}

.tstCard__quote {
  margin: 18px 0 0;
  color: rgba(15, 23, 42, 0.68);
  font-weight: 700;
  line-height: 1.85;
  font-style: italic;
}

.tst__pager {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
}

.tst__pager .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(15, 23, 42, 0.2);
  opacity: 1;
}

.tst__pager .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 999px;
  background: rgba(36, 79, 91, 0.9);
}

/* 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;
}

/* Responsive */
@media (max-width: 980px) {
  .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;
  }

  .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(5, 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));
  }
}
