:root {
  --brand: #0b2d5b;
  --brand-deep: #081f3f;
  --ink: #111827;
  --paper: #ffffff;
  --surface: #f3f4f6;
  --line: #d1d5db;
  --accent: #e11d2e;
  --accent-soft: #fff1f2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #e6edf8 0, #ffffff 35%), var(--paper);
  scroll-behavior: smooth;
}

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  width: 122px;
  height: 66px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--brand-deep);
}

.quick-contact {
  display: flex;
  gap: 8px;
}

.quick-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.86rem;
  font-weight: 700;
}

.quick-link:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.1rem;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.hero {
  position: relative;
  padding: 60px 0 36px;
  background-image: url('assets/hero-warehouse.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Dark navy gradient overlay so text stays readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 22, 50, 0.82) 0%,
    rgba(8, 22, 50, 0.70) 55%,
    rgba(8, 22, 50, 0.50) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Keep all hero content above the overlay */
.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.eyebrow {
  color: var(--brand-deep);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.95rem);
  line-height: 1.06;
  margin-bottom: 14px;
}

.hero-copy p {
  max-width: 64ch;
  color: #374151;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.hero-trust-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-badges span {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #f3f4f6;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand);
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 12px 19px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #be123c;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.address-pill {
  margin-top: 14px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  padding: 7px 12px;
  font-size: 0.9rem;
}

.hero-meta {
  margin-top: 14px;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: #4b5563;
  font-size: 0.94rem;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f3f4f6 100%);
  box-shadow: 0 10px 28px rgba(10, 23, 20, 0.08);
}

.proof-bar {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.proof-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 16px 14px 18px;
  display: grid;
  gap: 5px;
  box-shadow: 0 6px 18px rgba(11, 45, 91, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 45, 91, 0.09);
}

.proof-item strong {
  color: var(--brand-deep);
  font-size: 0.96rem;
  font-weight: 800;
}

.proof-item span {
  color: #4b5563;
  line-height: 1.5;
  font-size: 0.85rem;
}

.hero-card-kicker {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-card h2 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hero-card-copy {
  color: #3e4a47;
  line-height: 1.5;
  font-size: 0.91rem;
  margin-bottom: 10px;
}

.hero-points {
  padding-left: 18px;
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
  color: #2f2f2f;
  font-size: 0.91rem;
}

.section {
  padding: 48px 0;
}

.section h2 {
  font-size: clamp(1.55rem, 3.3vw, 2.3rem);
  margin-bottom: 16px;
}

.section-intro {
  max-width: 68ch;
  color: #3f3f3f;
  line-height: 1.55;
  margin-bottom: 20px;
}

.services,
.reviews {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.service-tile {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.service-tile:hover {
  transform: translateY(-2px);
  border-color: #bfd0e4;
  box-shadow: inset 3px 0 0 var(--brand), 0 16px 28px rgba(11, 45, 91, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: #434343;
  line-height: 1.5;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

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

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(11, 45, 91, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(139, 30, 45, 0.08), transparent 28%);
  pointer-events: none;
}

.pricing .container {
  position: relative;
}

.pricing-spotlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
  border: 1px solid #dbe2ea;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(11, 45, 91, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  box-shadow: 0 18px 34px rgba(11, 45, 91, 0.06);
}

.pricing-copy p {
  max-width: 72ch;
  color: #475569;
  line-height: 1.55;
}

.pricing-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef5f3;
  color: var(--brand-deep);
  border: 1px solid #d6e3df;
  padding: 6px 10px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tier-pricing {
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(11, 45, 91, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 36px rgba(11, 45, 91, 0.08);
}

.tier-pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.tier-pricing-head h3,
.tampa-value h3 {
  margin-top: 4px;
  font-size: 1.4rem;
}

.tier-pricing-note {
  max-width: 34ch;
  color: #475569;
  line-height: 1.55;
}

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

.tier-pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.86);
}

.tier-pricing-table th,
.tier-pricing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #d1d5db;
}

.tier-pricing-table th {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #475569;
  background: #eff3f8;
}

.tier-pricing-table tbody tr:nth-child(2n) td {
  background: rgba(248, 250, 252, 0.92);
}

.tier-pricing-table tbody tr:hover td {
  background: #f8fafc;
}

.tier-pricing-table td:nth-child(2) {
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.pricing-helper-line {
  margin: 16px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
}

.pricing-detail-card {
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(11, 45, 91, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-detail-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  opacity: 0.16;
}

/* ── Colored header bands for the 3 pricing cards ── */

.detail-card-top {
  margin: -18px -18px 4px;
  padding: 20px 20px 18px;
  border-radius: 13px 13px 0 0;
  display: grid;
  gap: 6px;
}

.detail-card-top-blue {
  background: linear-gradient(135deg, #0b2d5b 0%, #1a4a8c 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.detail-card-top-green {
  background: linear-gradient(135deg, #065f46 0%, #059669 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.detail-card-top-red {
  background: linear-gradient(135deg, #9f1239 0%, #e11d2e 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.detail-card-top .detail-chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-card-top .package-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.detail-card-sub {
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

/* ── Green highlight box (No-fees card) ── */

.peace-highlight {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1px solid #6ee7b7;
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
}

.peace-highlight strong {
  display: block;
  color: #064e3b;
  font-size: 0.96rem;
}

.peace-highlight span {
  color: #065f46;
  font-size: 0.86rem;
}

.peace-footer {
  text-align: center;
  color: #065f46;
  font-weight: 800;
  font-size: 0.9rem;
  border-top: 1px solid #d1fae5;
  padding-top: 10px;
  margin: 0;
}

.included-groups {
  display: grid;
  gap: 16px;
}

.included-group {
  display: grid;
  gap: 10px;
}

.included-group h4 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #475569;
}

.checklist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.checklist-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.93rem;
  line-height: 1.45;
  color: #374151;
}

.checklist-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #0b2d5b;
  font-size: 0.88rem;
}

.peace-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.peace-list li {
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  color: #065f46;
  font-size: 0.93rem;
  line-height: 1.4;
}

.peace-list li strong {
  color: #064e3b;
}

.addon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.addon-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

.addon-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.addon-list span {
  display: block;
  font-weight: 700;
  color: #1f2937;
}

.addon-list small {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  line-height: 1.45;
}

.addon-list strong {
  white-space: nowrap;
  color: #0b2d5b;
  background: #eff3f8;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.9rem;
}

.peace-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.peace-badges span {
  border: 1px solid #6ee7b7;
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  font-weight: 800;
  color: #064e3b;
  font-size: 0.92rem;
}

.peace-strong-line {
  margin: 0;
  font-weight: 800;
  color: var(--brand-deep);
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.tampa-value {
  margin-top: 16px;
  display: grid;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(11, 45, 91, 0.08) 0%, rgba(255, 255, 255, 0.98) 34%),
    #ffffff;
}

.tampa-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tampa-points article {
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tampa-points h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.tampa-points p {
  color: #4b5563;
  line-height: 1.55;
}

.pricing-disclaimer {
  margin-top: 16px;
}

.package-card {
  border: 1px solid #d7e2de;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(111, 143, 136, 0.9) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(19, 38, 33, 0.08);
}

.package-card.is-active {
  border-color: var(--brand);
  box-shadow: 0 20px 34px rgba(28, 56, 48, 0.12);
  transform: translateY(-4px);
}

.package-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #edf5f2;
  color: var(--brand-deep);
  border: 1px solid #d8e5e0;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.package-state::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7f9f97;
}

.package-card.is-active .package-state {
  opacity: 1;
  transform: translateY(0);
}

.package-card.is-active::after,
.package-card:hover::after {
  opacity: 1;
}

.package-card ul {
  margin-top: 7px;
  margin-bottom: 8px;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.package-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7f5 100%);
}

.package-subtext {
  color: #4d5f59;
  margin-top: 6px;
  margin-bottom: 10px;
  line-height: 1.45;
  min-height: 42px;
}

.package-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #2f3f3c;
  margin-top: 10px;
}

.package-price {
  margin-top: 7px;
  margin-bottom: 2px;
  font-size: 1.45rem;
  font-weight: 800;
}

.popular {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  animation: pulseBadge 2.6s ease-in-out infinite;
}

.calculator {
  margin-top: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(111, 143, 136, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f2f8f6 100%);
  box-shadow: 0 20px 46px rgba(14, 30, 26, 0.09);
  padding: 24px;
  border: 1px solid #dbe7e3;
}

.quote-box-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.quote-box-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 252, 251, 0.96) 100%);
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(16, 30, 26, 0.04);
}

.quote-box-section-full {
  grid-column: 1 / -1;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.section-heading h4 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.section-heading p {
  color: #52635d;
  line-height: 1.45;
  font-size: 0.92rem;
}

.section-index {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9eef7;
  color: var(--brand-deep);
  font-weight: 800;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(11, 45, 91, 0.08);
}

.calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.calc-badge {
  border: 1px solid #cbd5e1;
  background: #eff3f8;
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.calc-active-package {
  margin-bottom: 14px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, #fff1f2 0%, #f8fafc 100%);
  border-radius: 12px;
  padding: 11px 14px;
  color: #334155;
  font-weight: 700;
}

.calc-package-note {
  margin-top: -4px;
  margin-bottom: 16px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.quote-box-section label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.calc-derived {
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  background: #f8fafc;
  padding: 13px 14px;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.45;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.check:hover {
  transform: translateY(-1px);
  border-color: #bfccdd;
  box-shadow: 0 8px 18px rgba(18, 35, 29, 0.05);
}

.check input[type="checkbox"],
.check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin: 0;
  flex: 0 0 auto;
}

.check span {
  flex: 1;
}

.check strong {
  color: var(--brand);
  font-size: 0.96rem;
}

.calc-addon-group.is-hidden {
  display: none;
}

.check-group {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 10px;
  background: #fdfefe;
}

.check-group legend {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0 6px;
  color: #334944;
}

.check-group.is-hidden {
  display: none;
}

.subsection-block,
.check-stack,
.line-item-stack {
  display: grid;
  gap: 10px;
}

.mini-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4b625c;
}

.line-item {
  display: grid;
  grid-template-columns: auto 1fr 90px auto;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.line-item:hover {
  border-color: #bfd1cc;
  box-shadow: 0 8px 18px rgba(18, 35, 29, 0.05);
}

.line-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #84a59e;
  margin: 0;
}

.line-item input[type="number"] {
  padding: 10px 11px;
}

.line-item strong {
  color: #294740;
  font-size: 0.9rem;
  text-align: right;
}

.quote-box-section input,
.quote-box-section select {
  width: 100%;
  border: 1px solid #cfd8d5;
  border-radius: 12px;
  padding: 13px 13px;
  font: inherit;
  background: #fff;
}

#est_per_unit,
#est_monthly {
  color: #8b1e2d;
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.calc-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.calc-total-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  min-height: 116px;
  align-content: center;
}

.calc-total-card-featured {
  background: linear-gradient(135deg, #fff4f6 0%, #ffffff 100%);
  border-color: #e5c6cd;
  box-shadow: 0 10px 24px rgba(139, 30, 45, 0.08);
}

.calc-total-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #44534f;
}

.est-breakdown-wrap {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 10px;
}

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

.breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.breakdown-table th,
.breakdown-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #e2ebe8;
  text-align: left;
  vertical-align: top;
}

.breakdown-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #546661;
  background: #f5faf8;
}

.breakdown-table tbody tr:last-child td {
  border-bottom: 0;
}

.breakdown-table tbody tr:hover td {
  background: #fbfdfc;
}

.table-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #4f4f4f;
}

.quote-helper {
  color: #52615d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.estimate-disclaimer {
  margin: 0;
  border: 1px solid #dbe2ea;
  background: linear-gradient(180deg, #f8fafc 0%, #f3f4f6 100%);
  border-radius: 14px;
  padding: 14px 16px;
  color: #8b1e2d;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(11, 45, 91, 0.18);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 8px rgba(11, 45, 91, 0);
  }
}

.accordion-wrap {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.price-group {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.price-group[open] {
  border-color: #bfd0e4;
  box-shadow: 0 8px 24px rgba(11, 45, 91, 0.07);
}

.price-group summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: #1e293b;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  gap: 12px;
}

.price-group summary::-webkit-details-marker {
  display: none;
}

.price-group summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  flex: 0 0 auto;
  transition: background 160ms ease, color 160ms ease;
}

.price-group[open] summary::after {
  content: "−";
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.price-group ul,
.price-group p {
  margin-top: 0;
  padding: 0 18px 16px;
  color: #3f3f3f;
  line-height: 1.60;
}

.process .steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.process .steps-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  padding: 20px 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, #1a4a9c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(11, 45, 91, 0.22);
}

.step h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.step p {
  color: #4b5563;
  font-size: 0.91rem;
  line-height: 1.55;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(11, 45, 91, 0.10);
  border-color: #bfd0e4;
  border-left-color: var(--brand);
}

.split {
  background: linear-gradient(180deg, #081f3f 0%, #0b2d5b 100%);
  color: #f7f7f7;
}

.split .eyebrow {
  color: #bfdbfe;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.clean-list {
  list-style: none;
  margin-top: 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.clean-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 0.94rem;
  font-weight: 500;
  transition: background 180ms ease;
}

.clean-list li::before {
  content: "→";
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  flex: 0 0 auto;
}

.clean-list li:hover {
  background: rgba(255, 255, 255, 0.10);
}

.gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  border-radius: 14px;
  overflow: hidden;
}

.photo-slot {
  min-height: 0;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.photo-slot img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.photo-slot figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 100%);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

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

.review-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 24px 20px 18px;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 16px;
  font-size: 4rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.10;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  opacity: 0.18;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 45, 91, 0.09);
}

.review-card p {
  line-height: 1.6;
  margin-bottom: 14px;
  color: #2d3748;
  font-size: 0.95rem;
  position: relative;
}

.review-card strong {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* ═══════════════════════════════════════════════════════════
   Quote Form — qf-* components
═══════════════════════════════════════════════════════════ */

/* Top intro bar */
.qf-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.qf-contact-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.qf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.qf-pill:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(11,45,91,0.08);
}

.qf-pill-green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.qf-pill-muted {
  background: #f8fafc;
  color: #64748b;
  pointer-events: none;
}

/* Main form wrapper */
.qf-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(11,45,91,0.07);
  overflow: hidden;
}

/* Each step block */
.qf-step-block {
  padding: 24px 28px;
  border-bottom: 1px solid #f1f5f9;
  display: grid;
  gap: 14px;
}

.qf-step-block:last-of-type {
  border-bottom: none;
}

/* Step label row */
.qf-step-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qf-step-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #1a4a9c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qf-step-label strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-deep);
  margin-bottom: 2px;
}

.qf-step-label span {
  font-size: 0.85rem;
  color: #64748b;
}

/* Labels */
.qf-label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
}

.qf-req {
  color: var(--accent);
  font-weight: 800;
}

.qf-opt {
  font-size: 0.78rem;
  font-weight: 500;
  color: #94a3b8;
  margin-left: 4px;
}

/* Inputs / selects / textarea */
.qf-form input[type="text"],
.qf-form input[type="email"],
.qf-form select,
.qf-form textarea,
.qf-form input[type="file"] {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.qf-form input[type="text"]:focus,
.qf-form input[type="email"]:focus,
.qf-form select:focus,
.qf-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11,45,91,0.08);
}

.qf-form input.input-invalid,
.qf-form select.input-invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(225,29,46,0.08);
}

.qf-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.qf-form input[type="file"] {
  padding: 9px 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #64748b;
  background: #f8fafc;
}

/* Two-column grid */
.qf-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Service selection cards */
.qf-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.qf-service-card {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  user-select: none;
}

.qf-service-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.qf-service-card:hover {
  border-color: #bfd0e4;
  background: #f8fafc;
}

.qf-service-card:has(input:checked) {
  border-color: var(--brand);
  background: #eff4fb;
  box-shadow: 0 0 0 1px var(--brand);
}

.qf-service-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 2px;
}

.qf-service-name {
  font-size: 0.87rem;
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1.2;
}

.qf-service-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

/* Submit row */
.qf-submit-row {
  padding: 20px 28px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.qf-submit-btn {
  padding: 14px 32px;
  font-size: 1rem;
}

.qf-submit-note {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.5;
  max-width: 44ch;
  margin: 0;
}

/* Satellite map embed */
.qf-map-embed {
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(11, 45, 91, 0.08);
}

.qf-map-embed iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
}

/* Info strip below form */
.qf-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 14px;
  background: #fff;
}

.qf-info-item {
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 3px;
}

.qf-info-item:last-child {
  border-right: none;
}

.qf-info-item strong {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.qf-info-item span {
  font-size: 0.9rem;
  color: #1e293b;
  font-weight: 500;
}

.qf-info-item a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Error message */
.field-error {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  margin: 0;
}

/* Pricing section CTA row */
.pricing-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc 0%, #eff4fb 100%);
}

.pricing-cta-row p {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

/* Form step progress bar */
.qf-progress {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  gap: 0;
}

.qf-prog-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
}

.qf-prog-step span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.qf-prog-1       { color: #1d4ed8; }
.qf-prog-1 span  { background: #1d4ed8; color: #fff; }
.qf-prog-2       { color: #0f766e; }
.qf-prog-2 span  { background: #0f766e; color: #fff; }
.qf-prog-3       { color: #7c3aed; }
.qf-prog-3 span  { background: #7c3aed; color: #fff; }
.qf-prog-4       { color: #b45309; }
.qf-prog-4 span  { background: #b45309; color: #fff; }

.qf-prog-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  border-radius: 999px;
  margin: 0 6px;
}

/* Step block color accents */
.qf-step-block-1 { border-left: 4px solid #1d4ed8; }
.qf-step-block-2 { border-left: 4px solid #0f766e; }
.qf-step-block-3 { border-left: 4px solid #7c3aed; }
.qf-step-block-4 { border-left: 4px solid #b45309; }

.qf-step-block-1 .qf-step-num { background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%); }
.qf-step-block-2 .qf-step-num { background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%); }
.qf-step-block-3 .qf-step-num { background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); }
.qf-step-block-4 .qf-step-num { background: linear-gradient(135deg, #b45309 0%, #d97706 100%); }

/* ── Responsive: qf-form ── */
@media (max-width: 900px) {
  .qf-top {
    flex-direction: column;
    gap: 14px;
  }
  .qf-grid-two {
    grid-template-columns: 1fr;
  }
  .qf-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .qf-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .qf-info-item:nth-child(2) {
    border-right: none;
  }
  .qf-info-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }
  .qf-info-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 600px) {
  .qf-step-block {
    padding: 18px 16px;
  }
  .qf-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .qf-submit-row {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .qf-submit-btn {
    text-align: center;
  }
  .qf-info-strip {
    grid-template-columns: 1fr;
  }
  .qf-info-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .qf-info-item:last-child {
    border-bottom: none;
  }
}

.contact-note {
  margin-top: 8px;
  color: #343434;
}

.contact-checklist {
  margin-top: 14px;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  background: #f8fafc;
  padding: 14px 16px;
}

.contact-checklist-title {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.contact-checklist ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #475569;
}

.service-checkboxes {
  margin: 0;
  padding: 14px;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  background: #f8fafc;
  display: grid;
  gap: 10px;
}

.service-checkboxes legend {
  padding: 0 6px;
  font-weight: 700;
}

.contact-form .service-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  grid-template-columns: none;
}

.service-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.service-checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  margin: 0;
  flex: 0 0 auto;
}

.contact-links {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.contact-links a {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, color 160ms ease;
}

.contact-links a:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
  background: #f8fafc;
}

.contact-links a:first-child {
  background: linear-gradient(135deg, var(--brand) 0%, #1a4a9c 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(11, 45, 91, 0.22);
}

.contact-links a:first-child:hover {
  background: linear-gradient(135deg, #09254d 0%, #133d85 100%);
  color: #fff;
  border-color: transparent;
}

.map {
  margin-top: 12px;
  width: 100%;
  height: 230px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 20px;
  display: grid;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(11, 45, 91, 0.05);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.quote-box-section input:focus,
.quote-box-section select:focus {
  border-color: var(--brand);
  outline: 2px solid color-mix(in srgb, var(--brand) 25%, white);
}

.field-error {
  margin: -2px 0 0;
  color: #8b1e2d;
  font-size: 0.84rem;
  font-weight: 700;
}

.input-invalid {
  border-color: #b84d5c !important;
  outline: 2px solid rgba(184, 77, 92, 0.14) !important;
}

.form-note {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-step {
  display: grid;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.form-step-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-step-head h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.form-step-head p {
  color: #64748b;
  line-height: 1.45;
}

.field-optional {
  color: #64748b;
  font-weight: 600;
  font-size: 0.86rem;
}

.form-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 34px;
  border-radius: 999px;
  background: #eff3f8;
  color: var(--brand-deep);
  border: 1px solid #dbe2ea;
  font-size: 0.84rem;
  font-weight: 800;
}

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

.mobile-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 38;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #be123c 100%);
  box-shadow: 0 18px 30px rgba(225, 29, 46, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}

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

.form-disclaimer {
  margin-top: 4px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.footer-logo-image {
  width: 92px;
  height: 52px;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
}

.chat-launcher {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--accent) 0%, #be123c 100%);
  color: #fff;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(225, 29, 46, 0.22);
  cursor: pointer;
}

.chat-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100vh - 120px);
  border: 1px solid #dbe2ea;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 50px rgba(18, 34, 30, 0.16);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Only apply flex layout when panel is actually visible —
   display:flex on the base rule overrides the hidden attribute */
.chat-panel:not([hidden]) {
  display: flex;
  flex-direction: column;
}

.chat-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #f8fafc 0%, #eff3f8 100%);
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.chat-brand strong,
.chat-brand span {
  display: block;
}

.chat-brand strong {
  font-size: 0.98rem;
}

.chat-brand span {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.4;
}

.chat-close {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.chat-body {
  padding: 18px;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow-y: auto;
  max-height: 220px;
  flex-shrink: 1;
}

.chat-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.chat-bubble-bot {
  background: #eff3f8;
  color: #1f2937;
  border-top-left-radius: 8px;
}

.chat-bubble-user {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  border-top-right-radius: 8px;
}

.chat-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 18px 16px;
}

.chat-chip {
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.chat-chip:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
  background: #f8fafc;
}

.chat-footer-links {
  display: flex;
  gap: 8px;
  padding: 0 18px 18px;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 18px 14px;
}

.chat-form input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.chat-form button {
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chat-footer-links a {
  flex: 1;
  text-align: center;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 0.86rem;
  font-weight: 800;
  border: 1px solid #dbe2ea;
}

.chat-footer-links a:first-child {
  background: #fff;
}

.chat-footer-links a:last-child {
  background: #eff3f8;
  color: var(--brand-deep);
}

.coverage-hero {
  padding: 48px 0 24px;
}

.coverage-shell {
  border: 1px solid #dbe2ea;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(11, 45, 91, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 22px 42px rgba(16, 31, 27, 0.08);
  overflow: hidden;
}

.is-disabled {
  opacity: 0.55;
}

.coverage-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid #e5e7eb;
}

.coverage-copy p {
  color: #4b5563;
  line-height: 1.6;
}

.coverage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.coverage-badges span {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid #dbe2ea;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
}

.coverage-map {
  position: relative;
  min-height: 0;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5)),
    linear-gradient(135deg, #eff3f8 0%, #f8fafc 100%);
}

.usa-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 959 / 593;
  border-radius: 16px;
  border: 1px solid #dbe2ea;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 100%);
  overflow: visible;
}

.usa-map-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  border-radius: 16px;
  filter: saturate(0.7) brightness(1.05);
}

.coverage-point {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  transition: transform 180ms ease;
}

.coverage-point:hover {
  transform: translate(-50%, -53%);
}

.coverage-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(225, 29, 46, 0.22);
}

.coverage-point strong,
.coverage-point span {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: 0 8px 20px rgba(18, 33, 29, 0.08);
}

.coverage-point strong {
  font-size: 1rem;
}

.coverage-point span {
  font-size: 0.8rem;
  color: #64748b;
}

.coverage-point.primary strong {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.coverage-point.primary .coverage-dot {
  width: 22px;
  height: 22px;
  background: var(--brand);
  box-shadow: 0 14px 24px rgba(11, 45, 91, 0.24);
}

.coverage-point-reno strong,
.coverage-point-boise strong,
.coverage-point-parsippany strong {
  margin-bottom: 2px;
}

.coverage-point-reno span,
.coverage-point-dallas span,
.coverage-point-kansas span,
.coverage-point-indy span,
.coverage-point-atlanta span,
.coverage-point-miami span {
  white-space: nowrap;
}

.coverage-point-tampa strong {
  font-size: 1.05rem;
}

.coverage-point-tampa span {
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   Pricing Detail Cards  (.pdc) — clean minimal style
═══════════════════════════════════════════════════════════ */

.pdc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 220ms ease;
}

.pdc:hover {
  box-shadow: 0 8px 28px rgba(11, 45, 91, 0.10);
}

.pdc-blue  { border-top: 3px solid #0b2d5b; }
.pdc-green { border-top: 3px solid #059669; }
.pdc-red   { border-top: 3px solid #e11d2e; }

.pdc-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}

.pdc-blue  .pdc-badge { background: #eff3f8; color: #0b2d5b; }
.pdc-green .pdc-badge { background: #f0fdf4; color: #065f46; }
.pdc-red   .pdc-badge { background: #fff1f2; color: #9f1239; }

.pdc-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.pdc-sub {
  font-size: 0.87rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.pdc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.pdc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.91rem;
  color: #374151;
  line-height: 1.45;
}

.pdc-list li::before {
  content: "✓";
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.pdc-blue  .pdc-list li::before { color: #0b2d5b; }
.pdc-green .pdc-list li::before { color: #059669; }

.pdc-list-no li::before {
  content: "✕";
  color: #dc2626;
}

.pdc-addon-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pdc-addon-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.91rem;
  color: #374151;
}

.pdc-addon-rows li:last-child { border-bottom: none; }

.pdc-addon-rows li span:last-child {
  font-weight: 700;
  color: var(--brand);
}

.pdc-note {
  font-size: 0.82rem;
  color: #9ca3af;
  margin: 0;
}

@media (max-width: 1100px) {
  .proof-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-spotlight,
  .service-grid,
  .review-grid,
  .package-grid,
  .pricing-detail-grid,
  .gallery-grid,
  .process .steps,
  .process .steps-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-spotlight {
    display: grid;
  }

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

  .coverage-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .proof-bar,
  .hero-grid,
  .contact-grid,
  .split-grid,
  .pricing-spotlight,
  .tampa-points,
  .form-grid-two,
  .service-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .tier-pricing-head {
    flex-direction: column;
  }

  .tier-pricing-note {
    max-width: none;
  }

  .quote-box-grid,
  .calc-summary {
    grid-template-columns: 1fr;
  }

  .quote-box-section-full {
    grid-column: auto;
  }

  .quote-box-section {
    padding: 16px;
  }

  .calc-total-card {
    min-height: 0;
  }

  .line-item {
    grid-template-columns: auto 1fr;
  }

  .line-item strong,
  .line-item input[type="number"] {
    grid-column: 2;
  }

  .quick-contact {
    display: none;
  }
}

@media (max-width: 720px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .service-grid,
  .review-grid,
  .review-grid.three,
  .package-grid,
  .pricing-detail-grid,
  .gallery-grid,
  .process .steps,
  .process .steps-6,
  .quote-box-grid,
  .proof-bar {
    grid-template-columns: 1fr;
  }

  .calculator {
    padding: 18px;
    border-radius: 18px;
  }

  .calculator-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading {
    gap: 10px;
  }

  .hero {
    padding-top: 44px;
  }

  .section {
    padding: 40px 0;
  }

  .address-pill {
    border-radius: 12px;
  }

  .logo-image {
    width: 98px;
    height: 54px;
  }

  .photo-slot img {
    height: 200px;
  }

  .photo-slot figcaption {
    font-size: 0.78rem;
  }

  .tier-pricing {
    padding: 18px;
  }

  .tier-pricing-table {
    min-width: 540px;
  }

  .chat-widget {
    right: 14px;
    bottom: 78px;
  }

  .chat-panel {
    width: min(340px, calc(100vw - 18px));
    max-height: calc(100vh - 160px);
  }

  .mobile-cta {
    display: block;
  }

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

  .chat-form {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    padding: 12px;
  }

  .coverage-point strong {
    font-size: 0.9rem;
  }

  .coverage-point span {
    font-size: 0.72rem;
  }
}

/* Coverage map: hide address sub-label on narrow viewports to reduce crowding */
@media (max-width: 640px) {
  .coverage-point span { display: none; }
  .coverage-point strong { font-size: 0.75rem; padding: 3px 7px; }
  .coverage-dot { width: 12px; height: 12px; border-width: 2px; }
  .coverage-point.primary .coverage-dot { width: 14px; height: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   Site-wide polish pass
═══════════════════════════════════════════════════════════ */

/* ── Nav: subtle scroll shadow via ring ── */
.site-header {
  box-shadow: 0 1px 0 var(--line);
}

/* ── Section headings: sharper weight ── */
.section h2,
.hero h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── Hero copy: white text on image background ── */
.hero h1 {
  color: #ffffff;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.hero-copy > p:first-of-type {
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-meta {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Hero card: frosted glass on image ── */
.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 24px 56px rgba(4, 12, 30, 0.35);
}

.hero-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
}

/* ── Hero trust badges: semi-transparent on image ── */
.hero-trust-badges span {
  font-size: 0.80rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* ── Address pill: visible on dark background ── */
.address-pill {
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.88);
}

/* ── Ghost button readable on image hero ── */
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ── Section intro text: consistent ── */
.section-intro {
  font-size: 1.02rem;
  color: #4b5563;
}

/* ── Service tiles: slightly more body text contrast ── */
.service-tile h3 {
  font-size: 1.03rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-tile p {
  font-size: 0.91rem;
  color: #4b5563;
}

/* ── Pricing table: cleaner row colours ── */
.tier-pricing-table tbody tr:last-child td {
  color: #64748b;
  font-style: italic;
}

/* ── Process: connector feel between steps ── */
.process .steps {
  gap: 14px;
}

/* ── Process timeline ── */
.process-timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  max-width: 780px;
}

.ptl-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 22px;
}

.ptl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ptl-circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(11, 45, 91, 0.25);
}

.ptl-connector {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: #e2e8f0;
  margin: 8px 0;
}

.ptl-body {
  padding-bottom: 36px;
}

.ptl-step:last-child .ptl-body {
  padding-bottom: 0;
}

.ptl-actor {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 9px;
}

.ptl-actor-you {
  background: #eff3f8;
  color: #0b2d5b;
}

.ptl-actor-us {
  background: #f0fdf4;
  color: #065f46;
}

.ptl-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.ptl-body p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.68;
  margin: 0;
}

@media (max-width: 640px) {
  .ptl-step {
    grid-template-columns: 40px 1fr;
    gap: 0 14px;
  }

  .ptl-circle {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   process.html — alternating timeline  (.ps-tl-*)
═══════════════════════════════════════════════════════════ */

.ps-timeline {
  position: relative;
  margin-top: 48px;
  padding-bottom: 8px;
}

/* Vertical center line */
.ps-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand) 0%, #3b82f6 60%, #059669 100%);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 99px;
  opacity: 0.35;
}

.ps-tl-row {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0 0;
  margin-bottom: 0;
  position: relative;
}

/* Center column */
.ps-tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ps-tl-line-top,
.ps-tl-line-bottom {
  flex: 1;
  width: 3px;
  background: transparent;
  min-height: 24px;
}

.ps-tl-dot {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px rgba(11, 45, 91, 0.15), 0 8px 24px rgba(11, 45, 91, 0.3);
  z-index: 1;
  letter-spacing: -0.02em;
}

.ps-tl-dot-final {
  background: #059669;
  font-size: 1.4rem;
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px rgba(5, 150, 105, 0.2), 0 8px 24px rgba(5, 150, 105, 0.35);
}

/* Side columns */
.ps-tl-blank {
  min-height: 1px;
}

.ps-tl-main {
  padding: 12px 28px 48px;
}

.ps-tl-odd .ps-tl-main  { padding-left: 28px; padding-right: 0; }
.ps-tl-even .ps-tl-main { padding-right: 28px; padding-left: 0; }

.ps-tl-last .ps-tl-main { padding-bottom: 12px; }

/* Card */
.ps-tl-card {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-top: 3px solid var(--brand);
  border-radius: 16px;
  padding: 26px 28px 28px;
  box-shadow: 0 6px 28px rgba(11, 45, 91, 0.10), 0 1px 4px rgba(11, 45, 91, 0.06);
  transition: box-shadow 220ms ease, transform 220ms ease;
  position: relative;
}

.ps-tl-card:hover {
  box-shadow: 0 14px 44px rgba(11, 45, 91, 0.16), 0 2px 6px rgba(11, 45, 91, 0.08);
  transform: translateY(-4px);
}

/* Final step card: green top border */
.ps-tl-last .ps-tl-card {
  border-top-color: #059669;
}

.ps-tl-actor {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.ps-tl-actor-you { background: #eff3f8; color: #0b2d5b; }
.ps-tl-actor-us  { background: #f0fdf4; color: #065f46; }

.ps-tl-card h3 {
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.ps-tl-card p {
  font-size: 0.91rem;
  color: #374151;
  line-height: 1.68;
  margin: 0 0 14px;
}

.ps-tl-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid #e2e8f0;
  padding-top: 12px;
}

.ps-tl-details li {
  font-size: 0.86rem;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ps-tl-details li::before {
  content: '–';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sub-heading within a step card */
.ps-tl-sub {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0b2d5b;
  margin: 16px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Consecutive detail lists after sub-heading: no top border */
.ps-tl-sub + .ps-tl-details {
  border-top: none;
  padding-top: 6px;
}

/* Final closing note inside a step card */
.ps-tl-final-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: #f0f9ff;
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #0b2d5b;
  line-height: 1.5;
}

/* What we accept grid */
.ps-accept-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.ps-accept-card {
  border-radius: 14px;
  padding: 18px 16px;
  border: 1px solid var(--line);
}

.ps-accept-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.ps-accept-yes  { background: #f0fdf4; border-color: #bbf7d0; }
.ps-accept-yes .ps-accept-icon  { background: #059669; color: #fff; }

.ps-accept-approval { background: #fffbeb; border-color: #fde68a; }
.ps-accept-approval .ps-accept-icon { background: #d97706; color: #fff; }

.ps-accept-no   { background: #fff1f2; border-color: #fecdd3; }
.ps-accept-no .ps-accept-icon  { background: #e11d2e; color: #fff; }

.ps-accept-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.ps-accept-yes .ps-accept-badge    { background: #dcfce7; color: #065f46; }
.ps-accept-approval .ps-accept-badge { background: #fef3c7; color: #92400e; }
.ps-accept-no .ps-accept-badge     { background: #ffe4e6; color: #9f1239; }

.ps-accept-card strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.ps-accept-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

/* Exception grid */
.ps-exception-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.ps-exception-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 14px;
  padding: 20px 22px;
}

.ps-exception-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.ps-exception-card p {
  font-size: 0.89rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Tablet: collapse timeline to single column */
@media (max-width: 900px) {
  .ps-timeline::before { left: 28px; }

  .ps-tl-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  .ps-tl-blank { display: none; }

  .ps-tl-center {
    flex-direction: column;
    flex-shrink: 0;
  }

  .ps-tl-dot { width: 40px; height: 40px; font-size: 0.95rem; }

  .ps-tl-main {
    flex: 1;
    padding: 0 0 36px 20px !important;
  }

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

@media (max-width: 600px) {
  .ps-accept-grid,
  .ps-exception-grid { grid-template-columns: 1fr; }
}

/* ── Split section: eyebrow colour fix ── */
.split h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── Gallery: photo hover zoom ── */
.photo-slot img {
  transition: transform 400ms ease;
}

.photo-slot:hover img {
  transform: scale(1.05);
}

/* ── Reviews section: more polished background ── */
.reviews {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ── FAQ section: tighter open state ── */
.price-group[open] summary {
  color: var(--brand-deep);
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0;
}

/* ── Contact section: info layout ── */
.contact-note {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.94rem;
  color: #374151;
}

/* ── Footer: clean minimal feel ── */
.site-footer {
  background: #fafbfc;
}

.footer-wrap p {
  font-size: 0.88rem;
  color: #64748b;
}

/* ── Buttons: consistent focus ring ── */
.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ── Chat launcher: consistent with site ── */
.chat-launcher {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* ── Mobile CTA: slightly more punch ── */
.mobile-cta {
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(225, 29, 46, 0.30);
}

/* ═══════════════════════════════════════════════════════════
   Coverage page additions
═══════════════════════════════════════════════════════════ */

/* Coverage hero: warehouse background, same treatment as home */
.coverage-hero {
  position: relative;
  padding: 72px 0 48px;
  background-image: url('assets/hero-warehouse.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.coverage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 22, 50, 0.86) 0%,
    rgba(8, 22, 50, 0.74) 55%,
    rgba(8, 22, 50, 0.56) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.coverage-hero > .container {
  position: relative;
  z-index: 1;
}

/* Text inside coverage hero: white on dark background */
.coverage-hero .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.coverage-hero h1 {
  color: #ffffff;
}

.coverage-hero .section-intro {
  color: rgba(255, 255, 255, 0.80);
}

/* Ghost button contrast on dark background */
.coverage-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.coverage-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.20);
}

/* Regions grid */
.cov-region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.cov-region-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cov-region-card:hover {
  transform: translateY(-2px);
  box-shadow: inset 3px 0 0 var(--brand), 0 14px 28px rgba(11, 45, 91, 0.08);
  border-color: #bfd0e4;
}

.cov-region-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--brand-deep);
}

.cov-region-card p {
  font-size: 0.90rem;
  color: #4b5563;
  line-height: 1.55;
}

/* Coverage shell improvements */
.coverage-shell {
  border: 1px solid #dbe2ea;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(11, 45, 91, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 16px 40px rgba(16, 31, 27, 0.07);
  overflow: hidden;
}

.coverage-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid #e5e7eb;
  align-items: start;
}

.coverage-copy h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.coverage-copy p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.93rem;
}

.coverage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.coverage-badges span {
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid #dbe2ea;
  background: linear-gradient(135deg, #ffffff 0%, #f3f7fc 100%);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
}

@media (max-width: 1100px) {
  .cov-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .cov-region-grid {
    grid-template-columns: 1fr;
  }

  .coverage-intro {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   Scroll-reveal animations — stagger delays
═══════════════════════════════════════════════════════════ */

/* Improve base reveal: smoother easing + slight scale */
.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Service tiles — stagger by position */
.service-grid .service-tile:nth-child(1) { transition-delay: 0ms; }
.service-grid .service-tile:nth-child(2) { transition-delay: 80ms; }
.service-grid .service-tile:nth-child(3) { transition-delay: 160ms; }
.service-grid .service-tile:nth-child(4) { transition-delay: 240ms; }
.service-grid .service-tile:nth-child(5) { transition-delay: 320ms; }
.service-grid .service-tile:nth-child(6) { transition-delay: 400ms; }

/* Process steps — stagger */
.steps .step:nth-child(1) { transition-delay: 0ms; }
.steps .step:nth-child(2) { transition-delay: 80ms; }
.steps .step:nth-child(3) { transition-delay: 160ms; }
.steps .step:nth-child(4) { transition-delay: 240ms; }
.steps .step:nth-child(5) { transition-delay: 320ms; }
.steps .step:nth-child(6) { transition-delay: 400ms; }

/* Process timeline — stagger */
.process-timeline .ptl-step:nth-child(1) { transition-delay: 0ms; }
.process-timeline .ptl-step:nth-child(2) { transition-delay: 80ms; }
.process-timeline .ptl-step:nth-child(3) { transition-delay: 160ms; }
.process-timeline .ptl-step:nth-child(4) { transition-delay: 240ms; }
.process-timeline .ptl-step:nth-child(5) { transition-delay: 320ms; }
.process-timeline .ptl-step:nth-child(6) { transition-delay: 400ms; }

/* Pricing cards — stagger + extra upward motion */
.pricing-detail-grid .pdc:nth-child(1) { transition-delay: 0ms; }
.pricing-detail-grid .pdc:nth-child(2) { transition-delay: 130ms; }
.pricing-detail-grid .pdc:nth-child(3) { transition-delay: 260ms; }

/* Reviews — stagger */
.review-grid .review-card:nth-child(1) { transition-delay: 0ms; }
.review-grid .review-card:nth-child(2) { transition-delay: 110ms; }
.review-grid .review-card:nth-child(3) { transition-delay: 220ms; }

/* Proof bar items — fade in sequence */
.proof-bar .proof-item:nth-child(1) { transition-delay: 0ms; }
.proof-bar .proof-item:nth-child(2) { transition-delay: 70ms; }
.proof-bar .proof-item:nth-child(3) { transition-delay: 140ms; }
.proof-bar .proof-item:nth-child(4) { transition-delay: 210ms; }
.proof-bar .proof-item:nth-child(5) { transition-delay: 280ms; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   Pricing page — new component styles
═══════════════════════════════════════════════════════════ */

/* Storage cards */
.pkg-storage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.pkg-storage-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.pkg-storage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(11, 45, 91, 0.09);
}

.pkg-storage-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.pkg-storage-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-deep);
  margin: 0;
}

.pkg-storage-rate {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, #1a4a9c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 5px 14px;
  width: fit-content;
}

.pkg-storage-card p {
  font-size: 0.91rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

.pkg-storage-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 6px;
}

.pkg-storage-list li {
  font-size: 0.87rem;
  color: #374151;
  padding-left: 16px;
  position: relative;
}

.pkg-storage-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

/* Service breakdown rows */
.prx-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.prx-service-row {
  display: grid;
  gap: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.prx-service-row:hover {
  border-color: #bfd0e4;
  box-shadow: inset 3px 0 0 var(--brand), 0 12px 24px rgba(11, 45, 91, 0.06);
}

.prx-service-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.prx-service-meta h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-deep);
  margin: 0;
}

.prx-service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  background: #eef3fb;
  border: 1px solid #c4d4ec;
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.prx-service-row p {
  font-size: 0.90rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

.prx-service-price {
  font-weight: 800;
  font-size: 0.90rem;
  color: var(--brand-deep);
  border-top: 1px solid var(--line);
  padding-top: 8px;
  margin-top: 2px;
}

/* Accepted inventory grid */
.prx-accept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.prx-accept-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.prx-accept-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.prx-accept-card ul li {
  font-size: 0.91rem;
  color: #374151;
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}

.prx-accept-yes h3 { color: #166534; }
.prx-accept-yes { border-left: 4px solid #22c55e; }
.prx-accept-yes ul li::before { content: "✓"; position: absolute; left: 0; color: #22c55e; font-weight: 800; }

.prx-accept-review h3 { color: #92400e; }
.prx-accept-review { border-left: 4px solid #f59e0b; }
.prx-accept-review ul li::before { content: "!"; position: absolute; left: 0; color: #f59e0b; font-weight: 800; }

/* Payment terms grid */
.prx-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.prx-terms-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--brand-deep);
  margin: 0 0 8px;
}

.prx-terms-card p {
  font-size: 0.91rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive: pricing page (old) ── */
@media (max-width: 1100px) {
  .pkg-storage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pkg-storage-grid,
  .prx-service-grid,
  .prx-accept-grid,
  .prx-terms-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   Price-sheet page — ps-* components
═══════════════════════════════════════════════════════════ */

.price-sheet-card {
  padding: 28px;
}

/* Header row inside a price-sheet card */
.ps-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.ps-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-deep);
  margin: 0;
}

/* Badges */
.ps-badge {
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}

.ps-badge-blue  { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.ps-badge-navy  { background: #e0e7ff; color: var(--brand-deep); border: 1px solid #c7d2fe; }
.ps-badge-green { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.ps-badge-red   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* Included features grid */
.ps-includes-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin: 0 0 10px;
}

.ps-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.ps-includes-grid span {
  font-size: 0.86rem;
  color: #374151;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  font-weight: 500;
}

/* Table */
.ps-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.ps-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.ps-table thead th {
  background: #f1f5f9;
  padding: 11px 16px;
  text-align: left;
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  border-bottom: 1px solid var(--line);
}

.ps-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
  vertical-align: middle;
}

.ps-table tbody tr:last-child td {
  border-bottom: none;
}

.ps-table tbody tr:hover td {
  background: #f8fafc;
}

.ps-row-highlight td {
  background: #eff6ff;
}

.ps-row-muted td {
  color: #6b7280;
  font-style: italic;
}

/* Price cell */
.ps-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-deep);
  white-space: nowrap;
}

.ps-price span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  margin-left: 1px;
}

/* Single rate display */
.ps-single-rate {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

.ps-single-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1;
}

.ps-single-unit {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

/* Footer note */
.ps-note {
  font-size: 0.84rem;
  color: #6b7280;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  line-height: 1.5;
}

/* Two-column layout inside a card */
.ps-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

/* List inside price card */
.ps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.ps-list li {
  font-size: 0.89rem;
  color: #374151;
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}

.ps-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.ps-list-muted li { color: #6b7280; }
.ps-list-muted li::before { color: #9ca3af; }

/* Side-by-side service cards */
.ps-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

/* No-fee grid */
.ps-nofee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.ps-nofee-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  transition: box-shadow 180ms ease;
}

.ps-nofee-item:hover {
  box-shadow: 0 8px 20px rgba(11,45,91,0.07);
}

.ps-nofee-x {
  font-size: 1.35rem;
  font-weight: 800;
  color: #16a34a;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 6px 10px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.ps-nofee-item strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--brand-deep);
  margin-bottom: 3px;
}

.ps-nofee-item p {
  font-size: 0.84rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.45;
}

/* ── Responsive: ps-* ── */
@media (max-width: 1100px) {
  .ps-includes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ps-nofee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ps-includes-grid,
  .ps-two-col,
  .ps-service-row,
  .ps-nofee-grid {
    grid-template-columns: 1fr;
  }
  .price-sheet-card {
    padding: 18px;
  }
}
