:root {
  --pink: #fbd3f0;
  --aqua: #c4f7ff;
  --lav: #d9c7ff;
  --blue: #d3e8ff;

  --bg1: #ecf8ff;
  --bg2: #d8f0ff;
  --bg3: #cde7f7;
  --bg4: #bbe2fa;

  --ink: #07041b;
  --muted: rgba(7, 4, 27, 0.62);
  --glass: rgba(255, 255, 255, 0.34);
  --glass-strong: rgba(255, 255, 255, 0.52);
  --glass-border: rgba(7, 4, 27, 0.12);
  --shadow: 0 24px 64px rgba(7, 4, 27, 0.1);
  --animation-delay: 0.2s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(
    circle at 50% 24%,
    var(--bg1) 0%,
    var(--bg2) 35%,
    var(--bg3) 66%,
    var(--bg4) 100%
  );
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 7%, rgba(251, 211, 240, 0.48), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(196, 247, 255, 0.58), transparent 34%),
    radial-gradient(circle at 52% 66%, rgba(217, 199, 255, 0.2), transparent 34%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 62%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 45% 85%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.5px);
  background-size: 210px 210px, 280px 280px, 340px 340px;
}

a {
  color: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

.section-shell {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: clamp(10px, 1.8vw, 24px);
  left: 50%;
  z-index: 50;
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInSoft 0.75s ease forwards var(--animation-delay);
  pointer-events: none;
  transition:
    top 0.35s ease,
    width 0.35s ease,
    padding 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-visible {
  pointer-events: auto;
}

.site-header.is-scrolled {
  top: 12px;
  width: min(1180px, calc(100% - 32px));
  padding: 10px 14px;
  border: 1px solid rgba(7, 4, 27, 0.09);
  border-radius: 999px;
  background: rgba(236, 248, 255, 0.72);
  box-shadow: 0 14px 38px rgba(7, 4, 27, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
  display: block;
}

.brand span {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 4vw, 52px);
}

.nav-links a,
.header-actions a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-links a::after,
.login-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.login-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.signup-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg1) !important;
  box-shadow: 0 16px 34px rgba(7, 4, 27, 0.18);
  letter-spacing: 0.02em !important;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease;
}

.signup-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(7, 4, 27, 0.24);
}

.menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ink);
}

.menu-btn span::before {
  transform: translateY(-7px);
}

.menu-btn span::after {
  transform: translateY(5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 25% 20%, rgba(251, 211, 240, 0.62), transparent 36%),
    radial-gradient(circle at 80% 18%, rgba(196, 247, 255, 0.7), transparent 38%),
    radial-gradient(
      circle at 50% 30%,
      rgba(236, 248, 255, 0.92) 0%,
      rgba(216, 240, 255, 0.94) 38%,
      rgba(205, 231, 247, 0.96) 70%,
      rgba(187, 226, 250, 0.98) 100%
    );
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(22px);
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-content {
  position: relative;
  width: min(420px, 100%);
  min-height: min(560px, calc(100svh - 56px));
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(7, 4, 27, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 70px rgba(7, 4, 27, 0.12);
  backdrop-filter: blur(18px);
  transform: scale(0.96);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open .mobile-menu-content {
  transform: scale(1);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

.mobile-menu-brand img {
  width: 32px;
  height: 32px;
  display: block;
}

.menu-close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.72);
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-links {
  display: grid;
  gap: 8px;
  margin: 46px 0;
  justify-items: center;
}

.mobile-menu-links a {
  width: 100%;
  padding: 17px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(7, 4, 27, 0.1);
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  font-size: clamp(28px, 9vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(14px);
}

.mobile-menu.is-open .mobile-menu-links a {
  animation: mobileLinkIn 0.56s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(4) { animation-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(5) { animation-delay: 0.32s; }

.mobile-menu-actions {
  display: grid;
}

.mobile-menu-signup {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg1);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 18px 44px rgba(7, 4, 27, 0.18);
}

body.menu-open {
  overflow: hidden;
}

/* Shared type and buttons */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(7, 4, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: rgba(7, 4, 27, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--aqua));
  box-shadow: 0 0 12px rgba(196, 247, 255, 0.9);
}

.pricing-hero h1,
.section-heading h2,
.calculator-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.pricing-hero h1 {
  max-width: 620px;
  font-size: clamp(38px, 4.25vw, 58px);
  line-height: 1.02;
}

.section-heading h2,
.calculator-copy h2,
.final-cta h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.02;
}

.button {
  min-width: 150px;
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  background: var(--ink);
  color: var(--bg1);
  box-shadow: 0 18px 38px rgba(7, 4, 27, 0.2);
}

.button-dark:hover {
  box-shadow: 0 24px 52px rgba(7, 4, 27, 0.26);
}

.button-light {
  border-color: rgba(7, 4, 27, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(7, 4, 27, 0.08);
}

.button-light:hover {
  border-color: rgba(7, 4, 27, 0.36);
  background: rgba(255, 255, 255, 0.28);
}

.button-aqua {
  background: var(--aqua);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(196, 247, 255, 0.2);
}

.button-aqua:hover {
  background: #d8fbff;
  box-shadow: 0 22px 52px rgba(196, 247, 255, 0.28);
}

.button-outline-light {
  border-color: rgba(236, 248, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: var(--bg1);
}

.button-outline-light:hover {
  border-color: rgba(236, 248, 255, 0.62);
  background: rgba(255, 255, 255, 0.09);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading > p,
.calculator-copy > p {
  max-width: 620px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 500;
}

/* Hero */
.pricing-hero {
  min-height: 92svh;
  padding-top: 132px;
  padding-bottom: 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.hero-intro {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.62;
  font-weight: 500;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 15px 0 0;
  color: rgba(7, 4, 27, 0.56);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 199, 255, 0.36), rgba(196, 247, 255, 0.18), transparent 68%);
  filter: blur(32px);
}

.pricing-window {
  padding: 16px;
  border: 1px solid rgba(7, 4, 27, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 70px rgba(7, 4, 27, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-window:hover {
  transform: translateY(-5px);
}

.window-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2px 4px 13px;
  color: rgba(7, 4, 27, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.window-top > div {
  display: flex;
  gap: 5px;
}

.window-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(7, 4, 27, 0.18);
}

.live-pill {
  justify-self: end;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(196, 247, 255, 0.72);
  color: rgba(7, 4, 27, 0.68);
}

.overview-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.overview-plan {
  min-height: 236px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(7, 4, 27, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
}

.overview-plan-core {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(7, 4, 27, 0.9);
  color: var(--bg1);
  box-shadow: 0 20px 48px rgba(7, 4, 27, 0.17);
}

.overview-plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.overview-plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.overview-price-block {
  min-width: 0;
  display: grid;
  justify-items: end;
  text-align: right;
}

.overview-price-main {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 5px;
}

.overview-price-main strong {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.overview-price-main span {
  margin-bottom: 3px;
  color: rgba(236, 248, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.overview-price-details {
  margin-top: 15px;
  display: grid;
  justify-items: end;
  gap: 4px;
}

.overview-price-details small {
  color: rgba(236, 248, 255, 0.62);
  font-size: 9px;
  line-height: 1.35;
  white-space: nowrap;
}

.overview-plan p,
.overview-plan > small {
  margin: 0;
  font-weight: 600;
}

.overview-plan p {
  font-size: 14px;
}

.overview-plan > small {
  color: rgba(7, 4, 27, 0.55);
  font-size: 11px;
  line-height: 1.4;
}

.overview-plan-core > small {
  color: rgba(236, 248, 255, 0.58);
}

.overview-note {
  margin-top: 12px;
  padding: 17px 18px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(7, 4, 27, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.3);
}

.overview-note span {
  color: rgba(7, 4, 27, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.overview-note strong {
  font-size: 12px;
  line-height: 1.45;
}

/* Plans */
.plans {
  padding-top: 90px;
  padding-bottom: 106px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 740px;
  padding: clamp(28px, 3.2vw, 38px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 4, 27, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 58px rgba(7, 4, 27, 0.08);
  backdrop-filter: blur(20px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 74px rgba(7, 4, 27, 0.12);
}

.plan-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -105px;
  top: -105px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 211, 240, 0.46), rgba(196, 247, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.plan-card-core {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 90% 4%, rgba(196, 247, 255, 0.16), transparent 29%),
    rgba(7, 4, 27, 0.92);
  color: var(--bg1);
  box-shadow: 0 28px 74px rgba(7, 4, 27, 0.2);
}

.plan-card-core::before {
  background: radial-gradient(circle, rgba(217, 199, 255, 0.22), rgba(196, 247, 255, 0.09), transparent 70%);
}

.popular-pill {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin: -4px 0 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(196, 247, 255, 0.18);
}

.popular-pill-spacer {
  visibility: hidden;
  pointer-events: none;
}

.plan-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.plan-label {
  margin: 0 0 10px;
  color: rgba(7, 4, 27, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-card-core .plan-label {
  color: rgba(236, 248, 255, 0.52);
}

.plan-card h3 {
  max-width: 270px;
  margin: 0;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.plan-price {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
}

.plan-price strong {
  font-size: clamp(42px, 4.7vw, 62px);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.plan-price span {
  margin-top: 10px;
  color: rgba(7, 4, 27, 0.52);
  font-size: 11px;
  font-weight: 600;
}

.plan-card-core .plan-price span {
  color: rgba(236, 248, 255, 0.5);
}

.plan-description {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(7, 4, 27, 0.62);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 500;
}

.plan-card-core .plan-description {
  color: rgba(236, 248, 255, 0.66);
}

.core-price-note {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  padding: 11px 13px;
  align-self: flex-start;
  border: 1px solid rgba(196, 247, 255, 0.18);
  border-radius: 14px;
  background: rgba(196, 247, 255, 0.08);
  color: var(--aqua);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.core-price-note-spacer {
  visibility: hidden;
  pointer-events: none;
}

.plan-rule {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  margin: 26px 0;
  background: rgba(7, 4, 27, 0.1);
}

.plan-card-core .plan-rule {
  background: rgba(255, 255, 255, 0.1);
}

.plan-features {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 23px;
  color: rgba(7, 4, 27, 0.7);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.plan-card-core .plan-features li {
  color: rgba(236, 248, 255, 0.76);
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(251, 211, 240, 0.88), rgba(196, 247, 255, 0.94));
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.plan-actions {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  gap: 15px;
}

.plan-button {
  width: 100%;
}

.plan-text-link {
  position: relative;
  justify-self: center;
  margin-top: 0;
  color: rgba(7, 4, 27, 0.58);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.plan-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-text-link:hover::after {
  transform: scaleX(1);
}

.plan-text-link-light {
  color: rgba(236, 248, 255, 0.58);
}

/* Calculator */
.calculator {
  padding-top: 84px;
  padding-bottom: 108px;
}

.calculator-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
  border: 1px solid rgba(7, 4, 27, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.calculator-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 211, 240, 0.42), rgba(196, 247, 255, 0.13), transparent 70%);
  pointer-events: none;
}

.calculator-copy,
.calculator-result {
  position: relative;
  z-index: 1;
}

.calculator-form {
  max-width: 520px;
  margin-top: 31px;
}

.calculator-form label {
  display: block;
  margin-bottom: 11px;
  color: rgba(7, 4, 27, 0.66);
  font-size: 12px;
  font-weight: 700;
}

.counter-row {
  display: grid;
  grid-template-columns: 52px minmax(90px, 1fr) 52px;
  gap: 8px;
}

.counter-button,
#propertyCount {
  min-height: 52px;
  border: 1px solid rgba(7, 4, 27, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink);
}

.counter-button {
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.counter-button:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

#propertyCount {
  width: 100%;
  padding: 0 14px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  outline: none;
  appearance: textfield;
}

#propertyCount::-webkit-outer-spin-button,
#propertyCount::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

#propertyCount:focus {
  border-color: rgba(7, 4, 27, 0.28);
  box-shadow: 0 0 0 4px rgba(196, 247, 255, 0.34);
}

.property-range {
  width: 100%;
  height: 5px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) var(--range-progress, 3.6%), rgba(7, 4, 27, 0.12) var(--range-progress, 3.6%), rgba(7, 4, 27, 0.12) 100%);
  appearance: none;
  outline: none;
  cursor: pointer;
}

.property-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid var(--bg1);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 5px 15px rgba(7, 4, 27, 0.24);
  appearance: none;
}

.property-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid var(--bg1);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 5px 15px rgba(7, 4, 27, 0.24);
}

.range-labels {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: rgba(7, 4, 27, 0.46);
  font-size: 10px;
  font-weight: 700;
}

.calculator-result {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(7, 4, 27, 0.92);
  color: var(--bg1);
  box-shadow: 0 26px 62px rgba(7, 4, 27, 0.2);
}

.result-label {
  color: rgba(236, 248, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-price {
  margin-top: 17px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.result-price strong {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.result-price span {
  padding-bottom: 6px;
  color: rgba(236, 248, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
}

.result-breakdown {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.result-breakdown > div {
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.result-breakdown span {
  color: rgba(236, 248, 255, 0.62);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}

.result-breakdown strong {
  font-size: 12px;
}

.calculator-result > p {
  margin: 18px 0 0;
  color: rgba(236, 248, 255, 0.56);
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
}

.calculator-result .button {
  width: 100%;
  margin-top: 22px;
}

/* Plan guide */
.plan-guide {
  padding-top: 86px;
  padding-bottom: 110px;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.guide-card {
  padding: clamp(28px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(7, 4, 27, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 52px rgba(7, 4, 27, 0.07);
  backdrop-filter: blur(18px);
}

.guide-card-core {
  background: rgba(255, 255, 255, 0.43);
}

.guide-card-heading > span {
  color: rgba(7, 4, 27, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.guide-card-heading h3 {
  margin: 12px 0 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.guide-feature-list {
  margin-top: 30px;
  display: grid;
}

.guide-feature-list > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(7, 4, 27, 0.1);
}

.guide-feature-list strong {
  font-size: 12px;
  line-height: 1.45;
}

.guide-feature-list p {
  margin: 0;
  color: rgba(7, 4, 27, 0.62);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
}

.guide-card .button {
  width: 100%;
  margin-top: auto;
}

/* Comparison */
.comparison {
  padding-top: 86px;
  padding-bottom: 112px;
}

.comparison-wrap {
  overflow: hidden;
  border: 1px solid rgba(7, 4, 27, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(7, 4, 27, 0.09);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  padding-top: 22px;
  padding-bottom: 22px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(7, 4, 27, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table thead th:first-child,
.comparison-table tbody th:first-child {
  width: 50%;
}

.comparison-table thead th:nth-child(2),
.comparison-table thead th:nth-child(3),
.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  width: 25%;
  text-align: center;
}

.comparison-table tbody th {
  color: rgba(7, 4, 27, 0.72);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.comparison-table td {
  color: rgba(7, 4, 27, 0.62);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-group-row th {
  padding: 15px 22px;
  background: rgba(7, 4, 27, 0.9);
  color: rgba(236, 248, 255, 0.78) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.check {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(251, 211, 240, 0.88), rgba(196, 247, 255, 0.94));
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.dash {
  color: rgba(7, 4, 27, 0.32);
  font-size: 16px;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 88px;
  margin-bottom: 96px;
  padding: clamp(34px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(196, 247, 255, 0.16), transparent 30%),
    rgba(7, 4, 27, 0.94);
  color: var(--bg1);
  box-shadow: 0 30px 80px rgba(7, 4, 27, 0.22);
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 211, 240, 0.18), transparent 68%);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 248, 255, 0.58);
}

.final-cta h2 {
  max-width: 700px;
  color: var(--bg1);
}

.final-cta p {
  max-width: 620px;
  margin: 17px 0 0;
  color: rgba(236, 248, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

.final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 5;
  width: min(1240px, calc(100% - 48px));
  min-height: 118px;
  margin: 0 auto;
  padding: 34px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(7, 4, 27, 0.1);
  color: rgba(7, 4, 27, 0.62);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 211, 240, 0.68),
    rgba(196, 247, 255, 0.78),
    transparent
  );
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-copyright {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-universe {
  margin: 0;
  color: rgba(7, 4, 27, 0.56);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-universe span {
  margin: 0 5px;
  color: rgba(7, 4, 27, 0.34);
}

.footer-universe a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.footer-universe a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.footer-universe a:hover::after,
.footer-universe a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  text-align: right;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.footer-legal a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.footer-legal a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.footer-legal span {
  color: rgba(7, 4, 27, 0.36);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInSoft {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mobileLinkIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-btn {
    justify-self: end;
    display: block;
  }

  .pricing-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
  }

  .pricing-window {
    padding: 13px;
  }

  .overview-plan {
    min-height: 218px;
    padding: 18px;
  }

  .plan-card {
    min-height: 760px;
  }

  .plan-card-top {
    display: grid;
    gap: 20px;
  }

  .plan-price {
    justify-items: start;
  }

  .calculator-panel {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 38px;
  }

  .guide-feature-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px 17px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 680px) {
  html,
  body {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }

  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header,
  .site-header.is-scrolled {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    transform: none;
  }

  .site-header {
    top: 12px;
    gap: 8px;
  }

  .site-header.is-scrolled {
    padding: 8px 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 29px;
    height: 29px;
  }

  .brand span {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .menu-btn {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
  }

  .mobile-menu {
    padding: 14px;
  }

  .mobile-menu-content {
    min-height: calc(100svh - 28px);
    padding: 22px;
    border-radius: 26px;
  }

  .pricing-hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 72px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .pricing-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .pricing-window {
    border-radius: 25px;
  }

  .window-top {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .window-top > span:nth-child(2) {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .overview-plans {
    grid-template-columns: 1fr;
  }

  .overview-plan {
    min-height: 190px;
  }

  .overview-price-details small {
    white-space: normal;
  }

  .plans,
  .calculator,
  .plan-guide,
  .comparison {
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .calculator-copy h2,
  .final-cta h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .plan-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 0;
    padding: 26px 21px;
    border-radius: 27px;
  }

  .plan-card-top {
    padding-top: 0;
  }

  .popular-pill {
    margin-bottom: 18px;
  }

  .plan-description {
    font-size: 13px;
  }

  .plan-features li {
    font-size: 12px;
  }

  .calculator-panel {
    padding: 26px 20px;
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 28px;
  }

  .calculator-result {
    padding: 24px 20px;
    border-radius: 23px;
  }

  .result-breakdown > div {
    align-items: flex-start;
  }

  .guide-card {
    padding: 26px 21px;
    border-radius: 27px;
  }

  .guide-feature-list > div {
    padding: 15px 0;
  }

  .comparison-wrap {
    overflow-x: auto;
    border-radius: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 700px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 14px;
  }

  .final-cta {
    width: min(100% - 28px, 1120px);
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 31px 22px;
    gap: 28px;
    border-radius: 28px;
  }

  .final-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-actions .button {
    width: 100%;
  }

  .site-footer {
    width: min(100%, calc(100% - 32px));
    min-height: 142px;
    padding: 30px 0 34px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
  }

  .footer-legal {
    justify-content: flex-start;
    text-align: left;
    gap: 7px;
  }
}

@media (max-width: 390px) {
  .site-header,
  .site-header.is-scrolled {
    left: 10px;
    right: 10px;
  }

  .mobile-menu {
    padding: 10px;
  }

  .mobile-menu-content {
    min-height: calc(100svh - 20px);
  }

  .plan-card,
  .guide-card {
    padding-inline: 18px;
  }

  .counter-row {
    grid-template-columns: 48px minmax(80px, 1fr) 48px;
  }

  .result-breakdown > div {
    display: grid;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* =========================================================
   PRICING UPDATES: INTRODUCTORY OFFER + INSPECTIONS
   ========================================================= */

.limited-offer-pill,
.comparison-offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(7, 4, 27, 0.1);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(251, 211, 240, 0.76),
    rgba(196, 247, 255, 0.82)
  );
  color: rgba(7, 4, 27, 0.72);
  font-size: 8px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.overview-property-offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.plan-feature-with-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.introductory-offer-note {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 14px 17px;
  border: 1px solid rgba(7, 4, 27, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.28);
  color: rgba(7, 4, 27, 0.58);
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 500;
  backdrop-filter: blur(14px);
}

.introductory-offer-note strong {
  color: rgba(7, 4, 27, 0.76);
}

.comparison-offer-label {
  min-height: 21px;
  margin: 6px auto 0;
  padding-inline: 7px;
  display: flex;
  width: max-content;
  font-size: 7px;
}

/* Dedicated inspection explanation */
.inspection-section {
  padding-top: 82px;
  padding-bottom: 108px;
}

.inspection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.inspection-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 40px);
  border-radius: 32px;
}

.inspection-card-guided {
  border: 1px solid rgba(7, 4, 27, 0.12);
  background:
    radial-gradient(circle at 92% 7%, rgba(196, 247, 255, 0.5), transparent 34%),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 22px 58px rgba(7, 4, 27, 0.08);
  backdrop-filter: blur(20px);
}

.inspection-card-assisted {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 92% 6%, rgba(196, 247, 255, 0.14), transparent 34%),
    rgba(7, 4, 27, 0.92);
  color: var(--bg1);
  box-shadow: 0 28px 74px rgba(7, 4, 27, 0.2);
}

.inspection-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 23px;
}

.inspection-kicker,
.inspection-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.inspection-kicker {
  border: 1px solid rgba(7, 4, 27, 0.1);
  background: rgba(255, 255, 255, 0.38);
  color: rgba(7, 4, 27, 0.62);
}

.inspection-kicker-light {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(236, 248, 255, 0.62);
}

.inspection-badge {
  background: rgba(196, 247, 255, 0.64);
  color: rgba(7, 4, 27, 0.7);
}

.inspection-badge-discount {
  background: linear-gradient(135deg, var(--pink), var(--aqua));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(196, 247, 255, 0.14);
}

.inspection-card h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(26px, 2.65vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.inspection-card-assisted h3 {
  color: var(--bg1);
}

.inspection-card > p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(7, 4, 27, 0.63);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 500;
}

.inspection-card-assisted > p {
  color: rgba(236, 248, 255, 0.67);
}

.inspection-list {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.inspection-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(7, 4, 27, 0.7);
  font-size: 12px;
  line-height: 1.48;
  font-weight: 600;
}

.inspection-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(251, 211, 240, 0.9),
    rgba(196, 247, 255, 0.96)
  );
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.inspection-service-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 19px;
}

.inspection-service-price strong {
  color: var(--bg1);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.inspection-service-price span {
  color: rgba(236, 248, 255, 0.53);
  font-size: 11px;
  font-weight: 600;
}

.inspection-service-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 25px;
}

.inspection-service-flow > div {
  min-width: 0;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
}

.inspection-service-flow span,
.inspection-service-flow strong {
  display: block;
}

.inspection-service-flow span {
  color: rgba(196, 247, 255, 0.66);
  font-size: 8px;
  font-weight: 700;
}

.inspection-service-flow strong {
  margin-top: 7px;
  color: rgba(236, 248, 255, 0.8);
  font-size: 9px;
  line-height: 1.4;
}

.inspection-service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.inspection-service-details span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(236, 248, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
}

.inspection-card-assisted > .inspection-service-note {
  margin-top: 17px;
  color: rgba(236, 248, 255, 0.44);
  font-size: 10px;
  line-height: 1.52;
}

.plan-card {
  min-height: 780px;
}

@media (max-width: 1020px) {
  .inspection-grid {
    grid-template-columns: 1fr;
  }

  .inspection-card {
    padding: clamp(28px, 5vw, 40px);
  }
}

@media (max-width: 680px) {
  .overview-property-offer {
    align-items: flex-start;
    flex-direction: column;
  }

  .introductory-offer-note {
    margin-top: 18px;
    text-align: left;
  }

  .inspection-section {
    padding-top: 66px;
    padding-bottom: 82px;
  }

  .inspection-card {
    padding: 23px;
    border-radius: 26px;
  }

  .inspection-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .inspection-card h3 {
    font-size: 27px;
  }

  .inspection-service-flow {
    grid-template-columns: 1fr;
  }

  .inspection-service-flow > div {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }

  .inspection-service-flow strong {
    margin-top: 0;
  }

  .plan-card {
    min-height: 0;
  }
}

