/* ===================================================
   Purple Property Services
   Editorial light-through-glass redesign
   =================================================== */

:root {
  --ink-950: #10131b;
  --ink-900: #171b25;
  --ink-800: #222938;
  --ink-700: #374055;
  --ink-600: #55607a;
  --ink-500: #74809c;
  --ink-400: #a1adc8;
  --ink-300: #cbd4e7;
  --ink-200: #e4e9f4;
  --ink-100: #f2f5fb;
  --white: #ffffff;

  --violet-900: #31114b;
  --violet-800: #4f1f77;
  --violet-700: #6926a3;
  --violet-600: #7f37bb;
  --violet-500: #9a57dd;
  --violet-400: #bc8cff;
  --violet-200: #e6d8ff;
  --violet-100: #f4edff;

  --sky-500: #48b8ff;
  --sky-300: #9bd9ff;
  --sky-100: #edf8ff;
  --mint-500: #42c4a3;
  --amber-400: #ffca55;
  --rose-400: #ff7e95;

  --page-bg: #f7f8fc;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: rgba(15, 19, 27, 0.78);
  --border: rgba(76, 90, 125, 0.16);
  --border-strong: rgba(76, 90, 125, 0.24);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px rgba(35, 42, 61, 0.06);
  --shadow-card: 0 18px 55px rgba(32, 42, 70, 0.09);
  --shadow-strong: 0 28px 80px rgba(18, 24, 39, 0.16);
  --shadow-glow: 0 16px 44px rgba(127, 55, 187, 0.22);

  --container: 1240px;
  --ease: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(72, 184, 255, 0.12), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(154, 87, 221, 0.11), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, var(--page-bg) 35%, #f6f7fb 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    linear-gradient(rgba(90, 107, 145, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 107, 145, 0.028) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 86%);
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--violet-200);
  color: var(--violet-900);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.container--wide {
  width: min(100% - 1.25rem, 1360px);
}

.container--full {
  width: min(100% - 1rem, 1440px);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--ink-950);
  color: var(--white);
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-pill);
  z-index: 400;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  background: var(--ink-950);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__actions a {
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--ease);
}

.topbar__actions a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(247, 248, 252, 0.76);
  border-bottom: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(76, 90, 125, 0.12);
  box-shadow: 0 8px 30px rgba(20, 28, 45, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.brand__text {
  display: grid;
  gap: 0.16rem;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.brand__text small {
  color: var(--ink-600);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.72rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  color: var(--ink-700);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--violet-700);
  transform: translateY(-1px);
}

.header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
}

.header__cta,
.button--primary {
  background: linear-gradient(135deg, var(--violet-700), var(--violet-500));
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.header__cta:hover,
.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(127, 55, 187, 0.28);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-900);
  border-color: rgba(82, 94, 126, 0.16);
  box-shadow: var(--shadow-soft);
}

.button--secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.button--ghost {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--border);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.74);
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  transition: transform var(--ease), opacity var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.94));
}

.section--tint {
  background: linear-gradient(180deg, rgba(244, 237, 255, 0.72), rgba(255, 255, 255, 0.94));
}

.section--proof {
  background: linear-gradient(180deg, rgba(237, 248, 255, 0.72), rgba(255, 255, 255, 0.94));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.72;
}

.section-heading .eyebrow,
.page-hero .eyebrow,
.hero--split .eyebrow {
  color: var(--violet-700);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(154, 87, 221, 0.18);
}

.section-heading h2,
.hero h1,
.page-hero h1 {
  margin: 0.95rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.intro-panel h2,
.pricing-cta h2,
.callout-box h3,
.page-hero__aside h2 {
  margin: 0.95rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading p,
.lede,
.page-hero__lede {
  color: var(--ink-700);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--home {
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 6rem);
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__ambient::before,
.hero__ambient::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
}

.hero__ambient::before {
  width: 460px;
  height: 460px;
  left: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(72, 184, 255, 0.24), transparent 68%);
}

.hero__ambient::after {
  width: 520px;
  height: 520px;
  right: -90px;
  top: 70px;
  background: radial-gradient(circle, rgba(154, 87, 221, 0.22), transparent 68%);
}

.hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(350px, 0.94fr);
  gap: 2.2rem;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy h1 {
  max-width: 12ch;
}

.lede {
  max-width: 56ch;
  margin: 1.25rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.hero__highlights {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__highlights li,
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.hero__highlights li::before,
.checklist li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-500), var(--sky-500));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.metric-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: 22px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-700);
  font-size: 0.88rem;
}

.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  min-height: 630px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.14));
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 19, 27, 0.02), rgba(15, 19, 27, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 34%);
}

.hero__floating-card,
.hero__review-card,
.floating-review-badge,
.glass-card {
  background: var(--surface-strong);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.hero__floating-card {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  padding: 1rem 1.15rem;
  border-radius: 24px;
  width: min(250px, 84%);
}

.hero__floating-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-700);
}

.hero__floating-card span {
  color: var(--ink-700);
  font-size: 0.94rem;
}

.hero__review-card {
  position: absolute;
  top: 1rem;
  right: -0.8rem;
  border-radius: 26px;
  padding: 1rem 1.15rem;
  min-width: 170px;
}

.hero__review-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero__review-card span {
  color: var(--ink-700);
  font-size: 0.88rem;
}

.floating-review-badge {
  position: fixed;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.95rem 1rem;
  border-radius: 24px;
  text-align: center;
  z-index: 35;
  transition: transform var(--ease), box-shadow var(--ease);
}

.floating-review-badge:hover {
  transform: translateY(-50%) scale(1.03);
}

.floating-review-badge__score {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.floating-review-badge__stars {
  color: var(--amber-400);
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.floating-review-badge__text {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--ink-600);
}

.trust-strip {
  padding: 1.3rem 0;
  background: rgba(255, 255, 255, 0.78);
  border-block: 1px solid rgba(76, 90, 125, 0.1);
  backdrop-filter: blur(14px);
}

.trust-bar {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

.trust-bar li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(82, 94, 126, 0.12);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-800);
}

.trust-bar__icon {
  width: 19px;
  height: 19px;
  color: var(--violet-600);
  flex: 0 0 auto;
}

.split-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.split-overview--center {
  align-items: center;
}

.card-panel {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.intro-panel {
  padding: 2rem;
}

.intro-panel p {
  margin-top: 1rem;
  color: var(--ink-700);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.intro-card,
.service-card,
.promise-step,
.pricing-highlight,
.factor-card,
.value-prop,
.testimonial-card,
.review-card,
.proof-card,
.work-card,
.callout-card,
.areas-card,
.pricing-table-wrap,
.calc-card,
.thermo-product-card,
.callout-box,
.guarantee-footnote,
.quote-form,
.contact-card {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.intro-card {
  padding: 1.2rem;
}

.intro-card strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-700);
}

.intro-card span {
  display: block;
  margin-top: 0.4rem;
  font-size: 1rem;
  color: var(--ink-700);
}

.services-grid,
.promise-steps,
.work-grid,
.proof-grid,
.factors-grid,
.value-props,
.thermo-product-grid {
  display: grid;
  gap: 1.2rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  padding: 1.6rem;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--sky-500), var(--violet-500));
}

.service-card__badge,
.card-kicker,
.tone-chip,
.social-chip,
.compare-label,
.page-pill,
.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__badge,
.card-kicker,
.tone-chip,
.page-pill {
  background: var(--violet-100);
  color: var(--violet-700);
}

.page-hero__aside .page-pill,
.contact-card .card-kicker,
.review-card .card-kicker {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-card h3,
.promise-step__content h3,
.proof-card__body h3,
.factor-card h3,
.value-prop h3,
.callout-card h3,
.thermo-product-card h3,
.pricing-highlight h3,
.contact-card h3 {
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.service-card p,
.promise-step__content p,
.proof-card__body p,
.factor-card p,
.value-prop p,
.thermo-product-card p,
.contact-card p,
.pricing-highlight p,
.review-card__small,
.form-note,
.areas-note,
.pricing-note,
.guarantee-footnote,
.callout-box p {
  color: var(--ink-700);
}

.service-card__link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--violet-700);
  font-weight: 800;
}

.service-card__link:hover {
  color: var(--violet-900);
}

.service-card--feature {
  background: linear-gradient(160deg, rgba(244, 237, 255, 0.82), rgba(255, 255, 255, 0.96));
}

.promise-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promise-step {
  padding: 1.8rem 1.4rem;
  position: relative;
}

.promise-step__number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-700), var(--sky-500));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  box-shadow: var(--shadow-glow);
}

.promise-step__content p {
  margin-top: 0.8rem;
}

.work-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr 1.1fr;
}

.work-card {
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card figcaption {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(10, 14, 24, 0.62);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

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

.proof-card {
  overflow: hidden;
}

.before-after-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(82, 94, 126, 0.08);
}

.compare-image {
  position: relative;
  overflow: hidden;
}

.compare-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 350ms ease;
}

.compare-image:hover img {
  transform: scale(1.04);
}

.compare-label {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(16, 19, 27, 0.74);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.proof-card__body {
  padding: 1.4rem;
}

.reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 1.4rem;
  align-items: stretch;
  margin-bottom: 1.7rem;
}

.review-card {
  padding: 2rem;
  background: linear-gradient(155deg, rgba(17, 22, 35, 0.9), rgba(80, 31, 119, 0.95));
  color: var(--white);
}

.review-card__eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.76;
}

.review-score strong {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.92;
}

.review-score span,
.review-card__small {
  color: rgba(255, 255, 255, 0.8);
}

.review-card .button--primary {
  color: var(--ink-950);
}

.review-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 1.5rem;
}

.review-themes span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.review-card .button--primary {
  width: 100%;
  background: var(--white);
  color: var(--ink-950);
  box-shadow: none;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.testimonials-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonials-caption {
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink-800);
}

.testimonials-controls {
  display: flex;
  gap: 0.55rem;
}

.testimonial-control {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: var(--ink-800);
}

.testimonial-control:hover {
  background: var(--white);
  color: var(--violet-700);
}

.testimonials-marquee {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  transition: transform 320ms ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 0.7rem);
  padding: 1.35rem;
}

.testimonial-card__header,
.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-card__top {
  justify-content: flex-start;
  margin: 1rem 0 0.8rem;
  flex-wrap: wrap;
}

.testimonial-person {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
}

.testimonial-avatar--photo {
  background-size: cover;
  background-position: center;
}

.avatar--blue { background: linear-gradient(135deg, #3277ff, #72a1ff); }
.avatar--green { background: linear-gradient(135deg, #199f8b, #52d3bb); }
.avatar--gold { background: linear-gradient(135deg, #d58f10, #ffcb5f); }
.avatar--slate { background: linear-gradient(135deg, #5f6e89, #9ca8be); }
.avatar--facebook { background: linear-gradient(135deg, #1457cb, #4d9afe); }
.avatar-photo--garden { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=96&h=96&fit=crop'); }
.avatar-photo--coffee { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=96&h=96&fit=crop'); }
.avatar-photo--outdoors { background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=96&h=96&fit=crop'); }
.avatar-photo--books { background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=96&h=96&fit=crop'); }

.testimonial-author {
  margin: 0;
  font-weight: 800;
}

.testimonial-meta {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--ink-600);
}

.social-chip--google {
  background: #eef5ff;
  color: #1f67e6;
}

.social-chip--facebook {
  background: #edf3ff;
  color: #1658cc;
}

.social-chip__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--white);
}

.social-chip__icon--google { background: #1f67e6; }
.social-chip__icon--facebook { background: #1658cc; }

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-rating__score {
  font-weight: 800;
}

.stars {
  color: var(--amber-400);
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.testimonial-quote {
  color: var(--ink-700);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 1.4rem;
  align-items: start;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 1rem;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(82, 94, 126, 0.1);
}

.process-list li::before {
  counter-increment: steps;
  content: counter(steps);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--violet-700), var(--sky-500));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.process-list {
  counter-reset: steps;
}

.process-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.05;
}

.process-list span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-700);
}

.callout-card {
  padding: 1.5rem;
}

.callout-card__image {
  width: 100%;
  border-radius: 24px;
  margin: 1rem 0 1.2rem;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
}

.callout-card__phone {
  margin: 0.8rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--violet-700);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(82, 94, 126, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.1rem 2.25rem 1.1rem 0;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--violet-700);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--ink-700);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
}

.contact-card {
  padding: 1.8rem;
  background: linear-gradient(160deg, rgba(20, 24, 38, 0.94), rgba(79, 31, 119, 0.92));
  color: var(--white);
}

.contact-card p,
.contact-card .contact-list strong,
.contact-card .contact-list span,
.contact-card .contact-list a,
.contact-card .checklist li,
.contact-card .form-support {
  color: rgba(255, 255, 255, 0.88);
}

.contact-card h3,
.contact-card .form-note,
.contact-card .form-note a {
  color: var(--white);
}

.contact-card .checklist li::before {
  box-shadow: inset 0 0 0 5px rgba(20, 24, 38, 0.55);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.contact-buttons .button {
  flex: 1;
}

.quote-form {
  padding: 1.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field,
.quote-form label {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.quote-form label > span,
.quote-form label:first-line {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink-800);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(82, 94, 126, 0.18);
  background: rgba(250, 251, 255, 0.88);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--ink-900);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(127, 55, 187, 0.34);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(154, 87, 221, 0.12);
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

.photo-upload {
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px dashed rgba(82, 94, 126, 0.3);
  background: rgba(245, 247, 252, 0.92);
  min-height: 110px;
  cursor: pointer;
  text-align: center;
}

.photo-upload:hover {
  border-color: rgba(127, 55, 187, 0.36);
  background: rgba(244, 237, 255, 0.52);
}

.photo-upload input {
  display: none;
}

.photo-upload__text {
  color: var(--ink-700);
}

.quote-form .button--primary {
  width: 100%;
  margin-top: 0.3rem;
}

.areas-card {
  padding: 1.7rem;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
}

.areas-list li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(246, 248, 252, 0.84);
  border: 1px solid rgba(82, 94, 126, 0.1);
  font-weight: 700;
  color: var(--ink-800);
}

.site-footer {
  padding: 2.5rem 0 2.2rem;
  background: linear-gradient(180deg, rgba(18, 23, 35, 0.98), rgba(15, 19, 27, 1));
  color: var(--white);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text small,
.footer__details a,
.footer__details span {
  color: rgba(255, 255, 255, 0.82);
}

.footer__details {
  display: flex;
  gap: 1rem 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__details a:hover {
  color: var(--white);
}

.mobile-quick-actions {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(76, 90, 125, 0.14);
  backdrop-filter: blur(18px);
}

.mobile-quick-actions a {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 800;
  color: var(--violet-700);
  background: rgba(244, 237, 255, 0.62);
}

.sticky-cta {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 5rem);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 1.4rem;
  align-items: end;
}

.page-hero__copy,
.page-hero__aside,
.pricing-table-wrap,
.pricing-cta,
.calc-card,
.callout-box,
.thermo-product-card,
.guarantee-footnote {
  padding: 1.8rem;
}

.page-hero__copy {
  min-height: 100%;
}

.page-hero__lede {
  margin-top: 1.2rem;
}

.hero-panel-stack,
.pricing-highlights {
  display: grid;
  gap: 1rem;
}

.pricing-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-highlight strong,
.page-hero__aside strong,
.price-tag strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(82, 94, 126, 0.12);
}

.pricing-table th {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-600);
}

.pricing-table__service {
  font-weight: 800;
}

.pricing-table__meta {
  color: var(--ink-600);
  font-weight: 600;
}

.pricing-table__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--violet-700);
}

.pricing-table__notes {
  color: var(--ink-700);
}

.pricing-cta {
  background: linear-gradient(135deg, rgba(244, 237, 255, 0.78), rgba(237, 248, 255, 0.88));
}

.pricing-cta__price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.92;
}

.pricing-cta__price span {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink-700);
}

.pricing-cta__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.factor-card,
.value-prop,
.pricing-highlight {
  padding: 1.4rem;
}

.factor-card__icon,
.value-prop__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(72, 184, 255, 0.16), rgba(154, 87, 221, 0.18));
  font-size: 1.45rem;
}

.factor-card h3,
.value-prop h3,
.pricing-highlight h3 {
  font-size: 1.2rem;
}

.page-hero__aside {
  background: linear-gradient(160deg, rgba(17, 22, 35, 0.92), rgba(79, 31, 119, 0.94));
  color: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-hero__aside-image {
  display: block;
  width: calc(100% + 3.6rem);
  margin: -1.8rem -1.8rem 1.3rem;
  border-radius: 34px 34px 24px 24px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero__aside p,
.page-hero__aside li,
.page-hero__aside span {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero__aside .price-tag,
.page-hero__aside .price-tag strong,
.page-hero__aside h2,
.page-hero__aside a {
  color: var(--white);
}

.price-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  min-height: auto;
  padding: 0;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.price-tag strong {
  font-size: 3rem;
}

.thermo-theme {
  --violet-900: #0f4f48;
  --violet-800: #14635d;
  --violet-700: #17786f;
  --violet-600: #1a8b80;
  --violet-500: #2ca99d;
  --violet-400: #75d4c7;
  --violet-200: #d7f6ef;
  --violet-100: #edfdfa;
  --shadow-glow: 0 16px 44px rgba(26, 139, 128, 0.2);
}

.callout-box {
  background: linear-gradient(145deg, rgba(255, 244, 240, 0.86), rgba(255, 250, 248, 0.98));
  border: 1px solid rgba(255, 131, 109, 0.26);
}

.callout-box--warning h3 {
  color: #a7391f;
}

.calc-card {
  max-width: 820px;
  margin: 0 auto;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(82, 94, 126, 0.12);
}

.calc-row:last-of-type {
  border-bottom: 0;
}

.calc-row__label b {
  display: block;
  font-size: 1rem;
}

.calc-row__label small {
  color: var(--ink-600);
}

.counter {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.c-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-700), var(--violet-500));
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: var(--shadow-glow);
}

.c-val {
  min-width: 38px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.savings-result {
  margin-top: 1.5rem;
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(237, 253, 250, 0.95), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(37, 180, 146, 0.18);
  text-align: center;
}

.savings-result__label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-700);
  font-weight: 800;
}

.savings-result__total {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 0.95;
}

.savings-result__subtext,
.savings-result__footnote {
  color: var(--ink-700);
}

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

.thermo-product-card {
  overflow: hidden;
  padding: 0;
}

.thermo-product-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.thermo-product-card__body {
  padding: 1.5rem;
}

.thermo-product-card ul {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.thermo-product-card li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.thermo-product-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-700), var(--mint-500));
  margin-top: 0.45rem;
  flex: 0 0 auto;
}

.expert-note {
  margin-top: 1.2rem;
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: rgba(237, 253, 250, 0.9);
  border: 1px solid rgba(37, 180, 146, 0.16);
}

.expert-note h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.check-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(246, 248, 252, 0.9);
  border: 1px solid rgba(82, 94, 126, 0.12);
}

.check-option input {
  width: auto;
}

.form-support {
  margin: 0 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.guarantee-footnote {
  margin-top: 1.2rem;
}

@media (max-width: 1100px) {
  .hero__shell,
  .page-hero__grid,
  .split-grid,
  .split-overview,
  .reviews-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .promise-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid,
  .trust-bar,
  .pricing-highlights,
  .areas-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__frame {
    min-height: 520px;
  }

  .testimonial-card {
    flex-basis: calc(50% - 0.5rem);
  }

  .floating-review-badge {
    display: none;
  }
}

@media (max-width: 820px) {
  .topbar__inner,
  .footer__inner,
  .footer__details {
    justify-content: center;
    text-align: center;
  }

  .hamburger {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 84px 1rem auto 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(76, 90, 125, 0.12);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .site-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.95rem 1rem;
  }

  .header__cta {
    display: none;
  }

  .hero__copy,
  .page-hero__copy,
  .section-heading,
  .section-heading--left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__copy h1,
  .lede,
  .page-hero__lede {
    max-width: none;
  }

  .hero__actions,
  .cta-row,
  .pricing-cta__actions,
  .contact-buttons {
    justify-content: center;
  }

  .hero__metrics,
  .services-grid,
  .promise-steps,
  .proof-grid,
  .factors-grid,
  .value-props,
  .thermo-product-grid,
  .faq-list,
  .areas-list,
  .work-grid,
  .trust-bar,
  .intro-grid,
  .form-grid,
  .pricing-highlights {
    grid-template-columns: 1fr;
  }

  .before-after-compare {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .hero__floating-card,
  .hero__review-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .hero__frame {
    min-height: 420px;
  }

  .work-card {
    min-height: 300px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.9rem 0.8rem;
  }

  .mobile-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (max-width: 560px) {
  .header__inner {
    min-height: 78px;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .hero__frame {
    min-height: 360px;
  }

  .section-heading h2,
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .quote-form,
  .contact-card,
  .page-hero__copy,
  .page-hero__aside,
  .pricing-table-wrap,
  .pricing-cta,
  .calc-card,
  .callout-box,
  .guarantee-footnote,
  .thermo-product-card__body,
  .intro-panel,
  .card-panel,
  .service-card,
  .promise-step,
  .review-card,
  .testimonial-card,
  .callout-card,
  .areas-card {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}
