/* ===========================
   Jake's Junk Removal — Design System
   =========================== */

:root {
  --navy: #0f2438;
  --navy-light: #16324a;
  --blue: #1c8ac7;
  --blue-dark: #146a9c;
  --orange: #e8622c;
  --orange-dark: #cc4f1e;
  --bg: #ffffff;
  --bg-alt: #f5f7f9;
  --bg-navy: var(--navy);
  --text: #1a1f27;
  --text-muted: #566072;
  --border: #e3e7ec;
  --star: #ffc107;
  --success: #1c9c5c;

  --font-heading: "Poppins", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(15, 36, 56, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 36, 56, 0.14);
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 98, 44, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p {
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 98, 44, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 98, 44, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.section-navy .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.section-navy .btn-outline:hover {
  border-color: #fff;
}

.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  border-color: var(--blue);
}

/* ===== Nav dropdowns (Services / Locations) ===== */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item .caret {
  font-size: 0.62rem;
  margin-left: 5px;
  color: var(--text-muted);
  transition: transform 0.15s ease;
  display: inline-block;
}

.nav-item:hover .caret {
  transform: rotate(180deg);
  color: var(--blue);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 280px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 50;
}

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

.dropdown-menu a {
  padding: 9px 12px;
  border-radius: 7px;
  border-bottom: none !important;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--blue);
}

.dropdown-menu .dropdown-see-all {
  color: var(--blue);
  font-weight: 700;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
  border-radius: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-heading);
}

.header-phone .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-phone .number {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.header-phone .number:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 24px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: end;
}

.hero-copy {
  padding-bottom: 80px;
  color: #fff;
}

.hero-copy .eyebrow {
  color: var(--orange);
  background: rgba(255,255,255,0.1);
}

.hero-copy h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-copy p {
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.hero-trust-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
  align-self: end;
}

.hero-media img {
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center bottom;
}

.hero-badge {
  position: absolute;
  top: -22px;
  left: -22px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 1;
}

.hero-badge .txt {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 90px;
  line-height: 1.3;
}

/* ===== Service / feature cards ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(28, 138, 199, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }

/* ===== Process steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step .step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--blue);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.92rem; }

/* ===== Testimonials ===== */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.stars {
  color: var(--star);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy) !important;
}

.review-badge .stars-sm {
  color: var(--star);
  letter-spacing: 1px;
}

.review-badge a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 700;
}

.review-badge a:hover {
  color: var(--blue-dark);
}

.testimonial p.quote {
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.testimonial-author .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}

.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band .btn-primary { background: #fff; color: var(--blue-dark); box-shadow: none; }
.cta-band .btn-primary:hover { background: #f2f2f2; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 56px;
  margin-bottom: 14px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}

.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 280px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 11px; font-size: 0.92rem; }
.footer-col ul li a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--orange); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}

/* ===== Forms ===== */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-alt);
  transition: border-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}

.field textarea { resize: vertical; min-height: 110px; }

.field-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; line-height: 1.5; }

.form-card form,
.form-card .form-intro {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-card form.form-fade-out,
.form-card .form-intro.form-fade-out {
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
}

.form-success {
  text-align: center;
  padding: 24px 12px 12px;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-success.form-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.form-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(28, 156, 92, 0.12);
  color: var(--success);
  font-size: 1.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h2 {
  margin-bottom: 10px;
}

.form-success p {
  max-width: 380px;
  margin: 0 auto 24px;
  font-size: 0.96rem;
}

/* ===== Pricing table ===== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th,
.pricing-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-table thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--bg-alt); }
.pricing-table td.price { font-family: var(--font-heading); font-weight: 700; color: var(--blue-dark); white-space: nowrap; }
.pricing-table td.load-visual { width: 90px; }

.load-bar {
  width: 70px;
  height: 10px;
  border-radius: 6px;
  background: var(--border);
  overflow: hidden;
}
.load-bar span {
  display: block;
  height: 100%;
  background: var(--orange);
  border-radius: 6px;
}

.pricing-note {
  display: flex;
  gap: 14px;
  background: rgba(28, 138, 199, 0.07);
  border: 1px solid rgba(28, 138, 199, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  align-items: flex-start;
}
.pricing-note .icon { font-size: 1.3rem; }
.pricing-note p { color: var(--text); font-size: 0.92rem; margin: 0; }
.pricing-note strong { color: var(--navy); }

/* ===== Accepted / not accepted lists ===== */
.accept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.accept-card {
  border-radius: var(--radius);
  padding: 28px;
}

.accept-card.yes { background: rgba(28, 156, 92, 0.06); border: 1px solid rgba(28, 156, 92, 0.25); }
.accept-card.no { background: rgba(232, 98, 44, 0.05); border: 1px solid rgba(232, 98, 44, 0.2); }

.accept-card h3 { margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.accept-card ul li {
  padding: 7px 0;
  font-size: 0.94rem;
  color: var(--text);
  display: flex;
  gap: 10px;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--blue);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: 0.95rem; }

/* ===== About page specifics ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-hero img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.value-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.value-list li:last-child { border-bottom: none; }
.value-list .num {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--blue);
  opacity: 0.4;
  font-size: 1.3rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-row .stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--orange);
}
.stat-row .stat-label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border: none; margin: 0; padding: 0; }
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(28, 138, 199, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.contact-info-item h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.92rem; margin: 0; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 32px;
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.service-area-tags span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy);
}

/* ===== Sticky mobile call bar ===== */
.mobile-call-bar {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .hero-copy { padding-bottom: 56px; }
  .grid-3, .steps, .accept-grid, .about-hero, .contact-grid, .footer-grid, .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 77px);
    overflow-y: auto;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }

  .nav-item { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-item .caret { display: none; }
  .dropdown-menu { display: none; }

  .section { padding: 60px 0; }
  .grid-3, .grid-2, .steps, .accept-grid, .about-hero, .contact-grid, .footer-grid, .stat-row, .form-row {
    grid-template-columns: 1fr;
  }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .about-hero img { height: 280px; }
  .stat-row { gap: 28px; }

  body { padding-bottom: 66px; }
  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--orange);
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  }
}

@media (max-width: 560px) {
  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: 12px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
}
