* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --page: 1040px;
  --content: 760px;
  --narrow: 620px;
  --card-radius: 18px;
  --card-pad: 30px 22px;
}

body {
  background: #f5f5f7;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  color: #1d1d1f;
  padding: 20px;
  scroll-behavior: smooth;
}

/* overflow:clip clips rounded corners without creating a scroll container,
   so position:sticky on .nav works relative to the viewport */
.site {
  background: #fff;
  border-radius: 12px;
  overflow: clip;
  max-width: var(--page);
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid #d2d2d7;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo,
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: -10px;
}

.logo img,
.brand-logo img,
.logo-img {
  display: block;
  width: clamp(220px, 24vw, 320px);
  max-height: 56px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav-r {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-a {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  text-decoration: none;
}

.nav-a.active,
.nav-item.active > .nav-parent {
  color: #0071e3;
  font-weight: 600;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-caret {
  font-size: 10px;
  color: #6e6e73;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 0.5px solid #d2d2d7;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #1d1d1f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background: #e8f3ff;
  color: #0071e3;
}

.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: #0071e3;
  text-decoration: none;
  white-space: nowrap;
}

.nav-phone:hover {
  text-decoration: underline;
}

.nav-btn,
.btn-p,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: none;
  background: #0071e3;
  color: #fff;
  cursor: pointer;
}

.nav-btn:hover,
.btn-p:hover,
.cta-btn:hover {
  background: #0077ed;
}

.btn-s,
.cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  background: #fff;
  color: #0071e3;
  border: 1.5px solid #0071e3;
  cursor: pointer;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1d1d1f;
  border-radius: 2px;
  transition: all 0.25s;
}

/* ═══════════════ MOBILE NAV OVERLAY ═══════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  flex-direction: column;
  padding: 28px 32px 40px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-close {
  align-self: flex-end;
  background: #f5f5f7;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1f;
  margin-bottom: 28px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-a {
  font-size: 26px;
  font-weight: 700;
  color: #1d1d1f;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 0.5px solid #f0f0f0;
  letter-spacing: -0.5px;
}

.mobile-nav-a:hover {
  color: #0071e3;
}

.mobile-nav-a.active {
  color: #0071e3;
}

.mobile-nav-section-label {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e6e73;
}

.mobile-nav-sub {
  display: grid;
  gap: 2px;
}

.mobile-nav-sub .mobile-nav-a {
  font-size: 18px;
  font-weight: 600;
  padding-left: 14px;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.mobile-nav-phone {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #0071e3;
  text-decoration: none;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  padding: 80px 32px 64px;
  text-align: center;
  background: #fff;
  border-bottom: 0.5px solid #d2d2d7;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #0071e3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: #e8f3ff;
  padding: 6px 14px;
  border-radius: 14px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #0071e3;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-h1 {
  font-size: 56px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-h1 em {
  font-style: normal;
  color: #0071e3;
}

.hero-p {
  font-size: 19px;
  color: #1d1d1f;
  line-height: 1.6;
  max-width: var(--narrow);
  margin: 0 auto 26px;
  font-weight: 400;
}

.hero-price {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 30px;
  max-width: var(--narrow);
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 44px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f5f5f7;
  border: 0.5px solid #d2d2d7;
  font-size: 12px;
  font-weight: 600;
  color: #1d1d1f;
}

.page-hero {
  padding: 72px 32px 56px;
  background: #fff;
  border-bottom: 0.5px solid #d2d2d7;
}

.page-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.page-title {
  font-size: 46px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.page-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: #1d1d1f;
}

.page-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ═══════════════ CREDENTIALS BAR ═══════════════ */
.creds-bar {
  background: #fff;
  border-bottom: 0.5px solid #d2d2d7;
  padding: 22px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
}

.cred-icon {
  font-size: 16px;
}

/* ═══════════════ SOCIAL PROOF / REVIEWS ═══════════════ */
.reviews {
  padding: 64px 32px;
  background: #f5f5f7;
  border-bottom: 0.5px solid #d2d2d7;
}

.reviews-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0 28px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #d2d2d7;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1f;
}

.reviews-setup-note {
  font-size: 12px;
  color: #6e6e73;
  font-style: italic;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: var(--card-radius);
  border: 0.5px solid #d2d2d7;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  font-size: 18px;
  color: #f5a623;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 1.65;
  color: #1d1d1f;
  flex: 1;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: #0071e3;
}

.review-placeholder-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a1a1a6;
  border-top: 0.5px solid #f0f0f0;
  padding-top: 10px;
}

/* ═══════════════ NC URGENCY CALLOUT ═══════════════ */
.urgency {
  background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
  padding: 32px;
}

.urgency-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.urgency-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.urgency-body {
  flex: 1;
  min-width: 200px;
}

.urgency-body strong {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.urgency-body p {
  font-size: 15px;
  color: #a1a1a6;
  line-height: 1.55;
}

.urgency-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ═══════════════ SECTION COMMONS ═══════════════ */
.samples {
  padding: 64px 32px;
  background: #fff;
  border-top: 0.5px solid #d2d2d7;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.sample-card {
  background: #f5f5f7;
  border-radius: 16px;
  border: 0.5px solid #d2d2d7;
  padding: 20px;
  text-decoration: none;
  color: #1d1d1f;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sample-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.sample-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.sample-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #4b4b50;
}

.sample-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0071e3;
  background: #e8f3ff;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.samples-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

.sample-note {
  font-size: 13px;
  color: #6e6e73;
  text-align: center;
  margin-bottom: 22px;
}

.sop-summary-note {
  font-size: 13px;
  font-weight: 600;
  color: #0071e3;
  text-align: center;
  margin-bottom: 10px;
}

/* ═══════════════ NODE ANIMATION ═══════════════ */
.nodes-wrap {
  background: rgba(245, 245, 247, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 22px 28px 24px;
  max-width: 640px;
  margin: 30px auto 0;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.65s forwards;
}

.nd-eye {
  font-size: 12px;
  font-weight: 700;
  color: #6e6e73;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 22px;
  text-align: center;
}

.nd-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

.node {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 42px auto auto;
  justify-items: center;
  align-items: start;
  text-align: center;
  min-width: 0;
}

.n-c {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.35s ease;
  background: #fff;
  color: #1d1d1f;
  border: 2px solid #d2d2d7;
}

.node.n-active .n-c {
  background: #0071e3;
  color: #fff;
  border-color: #0071e3;
  box-shadow: 0 6px 14px rgba(0, 113, 227, 0.18);
}

.node.n-done .n-c {
  background: #0071e3;
  color: #fff;
  border-color: #0071e3;
  box-shadow: 0 5px 12px rgba(0, 113, 227, 0.14);
}

.node.n-idle .n-c {
  background: #fff;
  color: #1d1d1f;
  border-color: #d2d2d7;
}

.n-track {
  position: absolute;
  z-index: 1;
  left: calc(12.5% + 21px);
  right: calc(12.5% + 21px);
  top: 20px;
  height: 3px;
  pointer-events: none;
}

.n-track-base,
.n-track-fill {
  position: absolute;
  inset: 0;
  height: 3px;
  border-radius: 999px;
}

.n-track-base {
  background: #d2d2d7;
}

.n-track-fill {
  width: 0%;
  background: #0071e3;
  transition: width 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.n-l {
  margin-top: 11px;
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1f;
  white-space: nowrap;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.n-sl {
  margin-top: 5px;
  font-size: 11px;
  color: #6e6e73;
  white-space: nowrap;
  line-height: 1.25;
}

/* ═══════════════ EQ SECTIONS ═══════════════ */
.eq {
  padding: 64px 32px;
  background: #fff;
}

.sec-eye {
  font-size: 13px;
  font-weight: 600;
  color: #0071e3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.sec-h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 10px;
}

.sec-sub {
  font-size: 15px;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.eq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.section-note {
  max-width: var(--content);
  margin: 18px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: #6e6e73;
}

a.eq-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.eq-card {
  background: #f5f5f7;
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

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

.eq-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 0.5px solid #d2d2d7;
  font-size: 24px;
}

.eq-name {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 5px;
}

.eq-desc {
  font-size: 13px;
  color: #1d1d1f;
  line-height: 1.5;
  opacity: 0.85;
}

.eq-card .trust-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 8px 14px;
}

.trust-link {
  font-size: 13px;
  color: #0071e3;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #0071e3;
  border-radius: 999px;
  padding: 6px 12px;
}

.trust-link:hover {
  background: #e8f3ff;
}

/* ═══════════════ ADDON PRICE ═══════════════ */
.addon-price-inline {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0071e3;
  background: #e8f3ff;
  border-radius: 999px;
  padding: 3px 10px;
}

/* ═══════════════ RADON NOTE ═══════════════ */
.radon-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f5f5f7;
  border: 0.5px solid #d2d2d7;
  border-radius: 14px;
  padding: 18px 22px;
  max-width: 880px;
  margin: 24px auto 0;
  font-size: 14px;
  line-height: 1.55;
  color: #1d1d1f;
}

.radon-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.content-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.content-card {
  max-width: 880px;
  margin: 0 auto;
  background: #f5f5f7;
  border: 0.5px solid #d2d2d7;
  border-radius: var(--card-radius);
  padding: 24px;
}

.content-card + .content-card {
  margin-top: 16px;
}

.content-card p,
.content-card li {
  font-size: 14px;
  line-height: 1.65;
  color: #1d1d1f;
}

.content-card p + p,
.content-card ul + p,
.content-card p + ul {
  margin-top: 12px;
}

.content-card ul {
  padding-left: 20px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.detail-panel {
  background: #f5f5f7;
  border: 0.5px solid #d2d2d7;
  border-radius: var(--card-radius);
  padding: 24px;
}

.detail-panel h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.detail-panel p,
.detail-panel li {
  font-size: 14px;
  line-height: 1.6;
  color: #1d1d1f;
}

.detail-panel ul {
  padding-left: 18px;
}

.detail-panel li + li {
  margin-top: 6px;
}

.placeholder-embed,
.empty-state-card {
  max-width: 880px;
  margin: 0 auto;
  background: #f5f5f7;
  border: 1px dashed #d2d2d7;
  border-radius: var(--card-radius);
  padding: 34px 28px;
  text-align: center;
  color: #6e6e73;
}

.placeholder-embed strong,
.empty-state-card strong {
  display: block;
  font-size: 18px;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.inline-link-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.media-card {
  background: #fff;
  border: 0.5px solid #d2d2d7;
  border-radius: var(--card-radius);
  padding: 24px;
}

.media-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.media-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6e6e73;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: #a1a1a6;
}

/* ═══════════════ CHECKLIST ═══════════════ */
.checklist-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: #f5f5f7;
  border: 0.5px solid #d2d2d7;
  border-radius: var(--card-radius);
  padding: 28px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.checklist-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: #1d1d1f;
  line-height: 1.5;
  padding: 8px 10px;
  background: #fff;
  border-radius: 10px;
  border: 0.5px solid #d2d2d7;
}

.checklist-item.checklist-2024 {
  background: #e8f3ff;
  border-color: #b3d4f7;
}

.check-mark {
  color: #0071e3;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.sop-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #0071e3;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 4px;
  white-space: nowrap;
}

/* ═══════════════ INSPECTION IN ACTION ═══════════════ */
.action-grid {
  grid-template-columns: repeat(3, 1fr);
}

.photo-ph {
  background: #ffffff;
  border: 1px dashed #d2d2d7;
  border-radius: 12px;
  padding: 38px 12px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #6e6e73;
}

/* ═══════════════ BUSINESS BASICS ═══════════════ */
.business-basics {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.bb-line {
  background: #f5f5f7;
  border: 0.5px solid #d2d2d7;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  font-size: 14px;
  color: #1d1d1f;
}

/* ═══════════════ PRICING ═══════════════ */
.pricing {
  padding: 64px 32px;
  background: #f5f5f7;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-note {
  font-size: 12px;
  line-height: 1.6;
  color: #6e6e73;
  max-width: 900px;
  margin: 16px auto 0;
}

.pricing-addons {
  max-width: 880px;
  margin: 22px auto 0;
  display: grid;
  gap: 10px;
}

.pricing-addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 0.5px solid #d2d2d7;
  border-radius: 14px;
  padding: 14px 18px;
}

.pa-name {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
}

.pa-cost {
  font-size: 13px;
  font-weight: 700;
  color: #0071e3;
  white-space: nowrap;
}

.section-cta-center {
  margin-top: 18px;
  text-align: center;
}

.price-card {
  background: #fff;
  border: 0.5px solid #d2d2d7;
  border-radius: 18px;
  padding: 28px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
  border: 2px solid #0071e3;
}

.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0071e3;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 12px;
}

.p-name {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.p-price {
  font-size: 38px;
  font-weight: 700;
  color: #0071e3;
  letter-spacing: -1.2px;
}

.p-price small {
  font-size: 14px;
  font-weight: 500;
  color: #6e6e73;
}

.p-feat {
  font-size: 14px;
  color: #1d1d1f;
  margin: 20px 0 0;
  text-align: left;
  padding: 0 4px;
  list-style: none;
  line-height: 1.5;
}

.p-feat li {
  padding: 5px 0;
  display: flex;
  gap: 8px;
}

.p-feat li::before {
  content: "✓";
  color: #0071e3;
  font-weight: 600;
}

/* Add-on pricing cards */
.addons-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 22px auto 0;
}

.addon-card {
  background: #fff;
  border: 0.5px solid #d2d2d7;
  border-radius: 14px;
  padding: 20px 22px;
}

.addon-label {
  font-size: 15px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.addon-price-tag {
  font-size: 22px;
  font-weight: 700;
  color: #0071e3;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.addon-desc {
  font-size: 13px;
  color: #6e6e73;
  line-height: 1.5;
}

/* ═══════════════ FOR AGENTS ═══════════════ */
.agents-scheduling {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.agents-scheduling-note {
  font-size: 12px;
  color: #6e6e73;
  font-style: italic;
}

/* ═══════════════ SERVICE AREA ═══════════════ */
.area {
  padding: 64px 32px;
  background: #fff;
}

.area-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.area-text {
  text-align: center;
  margin-bottom: 32px;
}

.area-h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.area-text p {
  font-size: 14px;
  color: #1d1d1f;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

.area-seo-note {
  margin-top: 12px !important;
  color: #6e6e73 !important;
  font-style: italic;
}

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

.area-region {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 24px;
}

.area-region-h {
  font-size: 14px;
  font-weight: 600;
  color: #0071e3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-region-h::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0071e3;
  border-radius: 50%;
}

.area-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.area-city {
  font-size: 12px;
  color: #1d1d1f;
  padding: 7px 10px;
  background: #fff;
  border-radius: 8px;
  border: 0.5px solid #d2d2d7;
}

/* ═══════════════ FAQ ═══════════════ */
.faq {
  padding: 64px 32px;
  background: #f5f5f7;
}

.faq-wrap {
  max-width: 720px;
  margin: 32px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 0.5px solid #d2d2d7;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: #0071e3;
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14px;
  color: #1d1d1f;
  line-height: 1.65;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.open .faq-a {
  padding: 0 24px 20px;
  max-height: 400px;
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
  padding: 64px 32px;
  background: #fff;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 880px;
  margin: 0 auto;
}

.about-photo-wrap {
  flex-shrink: 0;
}

.headshot-ph {
  width: 160px;
  min-height: 200px;
  border-radius: 18px;
  background: #f5f5f7;
  border: 2px dashed #d2d2d7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #6e6e73;
  padding: 16px;
  line-height: 1.5;
}

.about-text {
  flex: 1;
}

.ab-name {
  font-size: 30px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.4px;
}

.ab-role {
  font-size: 16px;
  color: #0071e3;
  font-weight: 500;
  margin-bottom: 14px;
}

.ab-bio {
  font-size: 15px;
  color: #1d1d1f;
  line-height: 1.7;
  margin-bottom: 12px;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.bdg {
  font-size: 12px;
  background: #f5f5f7;
  border: 0.5px solid #d2d2d7;
  border-radius: 8px;
  padding: 5px 12px;
  color: #1d1d1f;
  font-weight: 500;
}

/* ═══════════════ CTA / CONTACT ═══════════════ */
.cta {
  background: #1d1d1f;
  padding: 72px 32px;
  text-align: center;
}

.cta-h {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-p {
  font-size: 16px;
  color: #a1a1a6;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-block {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px 32px;
  margin-bottom: 28px;
  text-align: left;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.contact-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-link {
  color: #60b0ff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: #1d1d1f;
  border-top: 0.5px solid #424245;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ft-h {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ft-l {
  font-size: 12px;
  color: #a1a1a6;
  margin-bottom: 6px;
  cursor: pointer;
}

.ft-l a {
  color: #a1a1a6;
  text-decoration: none;
}

.ft-l a:hover {
  color: #fff;
}

.ft-bot {
  grid-column: span 4;
  border-top: 0.5px solid #424245;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6e6e73;
}

.ft-disclaimer {
  display: block;
  line-height: 1.65;
}

/* ═══════════════ MOBILE FLOATING CTA BAR ═══════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #fff;
  border-top: 1px solid #d2d2d7;
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.mobile-cta-call,
.mobile-cta-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.mobile-cta-call {
  background: #f5f5f7;
  color: #1d1d1f;
  border: 1.5px solid #d2d2d7;
}

.mobile-cta-book {
  background: #0071e3;
  color: #fff;
  border: none;
}

/* ═══════════════ RESPONSIVE — 768px ═══════════════ */
@media (max-width: 768px) {
  body {
    padding: 0;
    padding-bottom: 78px;
  }

  .site {
    border-radius: 0;
  }

  .hero {
    padding: 50px 20px 40px;
  }

  .hero-h1 {
    font-size: 36px;
  }

  .hero-p {
    font-size: 17px;
  }

  .page-title {
    font-size: 34px;
  }

  .page-lead {
    font-size: 17px;
  }

  .nav {
    padding: 0 16px;
    height: 64px;
  }

  .logo img,
  .brand-logo img,
  .logo-img {
    width: clamp(155px, 46vw, 190px);
    max-height: 46px;
  }

  .logo,
  .brand-logo {
    margin-left: -4px;
  }

  .nav-r {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .creds-bar {
    gap: 16px;
    padding: 16px 20px;
  }

  .cred-item {
    font-size: 12px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .urgency-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .eq-grid,
  .price-grid,
  .samples-grid,
  .addons-row,
  .detail-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .sample-note {
    text-align: center;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .ft-bot {
    grid-column: span 2;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 20px;
  }

  .about-text {
    text-align: center;
  }

  .badges {
    justify-content: center;
  }

  .contact-block {
    text-align: left;
    padding: 20px 22px;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .cta {
    padding: 56px 20px;
  }

  .cta-h {
    font-size: 28px;
  }
}

/* ═══════════════ RESPONSIVE — 640px ═══════════════ */
@media (max-width: 640px) {
  .nodes-wrap {
    max-width: 100%;
    padding: 18px 16px;
    margin-top: 24px;
  }

  .nd-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .n-track {
    display: none;
  }

  .node {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 13px;
    grid-template-rows: 40px auto auto;
  }

  .n-c {
    width: 40px;
    height: 40px;
  }

  .n-l {
    font-size: 13px;
  }

  .n-sl {
    font-size: 12px;
  }

  .reviews-note {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
