:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f3f5f8;
  --text: #10233c;
  --muted: #556579;
  --line: #dce5ee;
  --green: #108981;
  --shadow-soft: 0 10px 24px rgba(16, 35, 60, 0.06);
  --radius: 20px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 251, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 35, 60, 0.06);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  height: 100px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: #2a394c;
}

.main-nav a:not(.btn):hover {
  color: #111f34;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.2s ease;
  cursor: pointer;
  border: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, #149c75 100%);
  color: white;
  padding: 13px 22px;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(16, 137, 129, 0.16);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-large {
  min-height: 56px;
  padding: 15px 28px;
  font-size: 1.02rem;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 0;
  background: #f5f7fb;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.94) 23%,
      rgba(255,255,255,0.74) 38%,
      rgba(255,255,255,0.28) 54%,
      rgba(255,255,255,0.05) 72%,
      rgba(255,255,255,0) 100%
    ),
    url("images/hero-bg-final.png");
  background-repeat: no-repeat;
  background-size: cover, 92% auto;
  background-position:
    center center,
    right -80px top -245px;
  opacity: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(430px, 620px) 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 220px;
}

.hero-copy {
  max-width: 620px;
  padding: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(16,35,60,0.10);
  color: #10233c;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  box-shadow: 0 14px 32px rgba(16,35,60,0.08);
  backdrop-filter: blur(8px);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(4rem, 5.8vw, 6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: #0d2340;
}

.hero h1 span,
.hero h1 strong {
  color: var(--green);
}

.hero-subtext {
  margin: 0 0 24px;
  max-width: 620px;
  font-size: 1.28rem;
  line-height: 1.5;
  color: #172b44;
  font-weight: 500;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}

.hero-points li {
  position: relative;
  padding-left: 42px;
  font-size: 1.12rem;
  color: #10233c;
  line-height: 1.4;
  font-weight: 700;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
}

.hero-actions {
  margin-bottom: 14px;
}

.hero-micro,
.hero-trust-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.35;
  color: #5f7084;
}

.hero-visual {
  display: none !important;
}

/* HERO VEHICLE STRIP */
.conversion-strip {
  position: relative;
  z-index: 5;
  margin-top: -180px;
  background: transparent;
  border: 0;
  padding: 0 0 18px;
}

.conversion-strip-inner {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 4px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(216,226,236,0.95);
  box-shadow: 0 18px 42px rgba(16,35,60,0.13);
  backdrop-filter: blur(10px);
}

.conversion-pill {
  min-height: 48px;
  padding: 4px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #10233c;
  font-size: 1.15rem;
  font-weight: 900;
  border-right: 1px solid #d8e2ec;
  background: transparent;
  border-radius: 0;
  line-height: 1.05;
}

.conversion-pill:last-child {
  border-right: 0;
}

.conversion-pill img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 1;
}

/* SECTIONS */
.section {
  padding: 44px 0;
}

.section-soft {
  background: #f0f3f7;
  border-top: 1px solid #e3ebf2;
  border-bottom: 1px solid #e3ebf2;
}

.section-white {
  background: #f7f9fb;
}

.section-heading {
  text-align: center;
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6b7c90;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #10253e;
}

.section-heading p {
  margin: 0;
  color: #3f5064;
  font-size: 1.06rem;
}

/* COMPARISON */
.comparison-section {
  background: #ffffff;
  padding: 64px 0;
  border-bottom: 1px solid #d9e7ee;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.comparison-card {
  border: 1px solid #d9e7ee;
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 35, 60, 0.06);
}

.comparison-card.bad {
  background: #fff8f8;
}

.comparison-card.good {
  background: #f4fffb;
  border-color: rgba(16, 137, 129, 0.28);
}

.comparison-card h3 {
  margin: 0 0 16px;
  font-size: 1.45rem;
  color: #10233f;
}

.comparison-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: #30445f;
  font-weight: 700;
  line-height: 1.4;
}

/* HOME GUIDE SECTION */
.bill-need-home {
  padding-top: 40px;
  padding-bottom: 34px;
}

.bill-need-home-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.bill-need-home-copy {
  max-width: 640px;
}

.bill-need-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(16, 137, 129, 0.09);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bill-need-home-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #10253e;
}

.bill-need-home-copy p {
  margin: 0 0 18px;
  color: #31465e;
  font-size: 1.06rem;
  line-height: 1.65;
}

.bill-need-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 11px;
}

.bill-need-list li {
  position: relative;
  padding-left: 30px;
  color: #1f344a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.bill-need-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 900;
}

.bill-need-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bill-need-text-link {
  color: #0f6f78;
  font-size: 0.98rem;
  font-weight: 800;
}

.bill-need-text-link:hover {
  color: var(--green);
}

.bill-need-home-visual {
  display: flex;
  justify-content: center;
}

.bill-need-image-link {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #dce5ee;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 35, 60, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bill-need-image-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(16, 35, 60, 0.12);
}

.bill-need-image {
  width: 100%;
  max-width: 560px;
  height: auto;
}

/* HOW IT WORKS */
.how-section {
  background: #f3f6fa;
  padding: 52px 0 56px;
  margin-top: 0;
}

.how-container {
  max-width: 1140px;
}

.how-heading {
  margin-bottom: 22px;
  padding-top: 42px;
  text-align: center;
}

.how-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #10253e;
}

.how-heading p {
  margin: 0;
  font-size: 1.06rem;
  color: #3f5064;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 0;
  min-height: 146px;
}

.step-card-inner {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  min-height: 146px;
}

.step-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f4f7fa 0%, #edf2f6 100%);
  border: 1px solid #e2e9ef;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap-phone {
  width: 92px;
  height: 92px;
}

.step-asset {
  max-width: 100%;
  max-height: 100%;
}

.step-asset-enter {
  width: 78px;
  object-fit: contain;
}

.step-asset-phone {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center;
}

.step-asset-complete {
  width: 78px;
  object-fit: contain;
}

.step-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
  flex: 0 0 auto;
}

.step-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #11263d;
}

.step-copy p {
  margin: 0;
  color: #48586d;
  line-height: 1.45;
  font-size: 0.95rem;
}

.how-reassurance {
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1100px;
  color: #42556c;
  font-size: 0.95rem;
  font-weight: 700;
}

.how-reassurance-item {
  white-space: nowrap;
}

.how-reassurance-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9eb1c4;
  flex: 0 0 auto;
  transform: translateY(1px);
}

/* WORKS */
.works-section {
  padding-top: 40px;
  padding-bottom: 32px;
}

.works-heading {
  margin-bottom: 16px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.category-card {
  background: #ffffff;
  border: 1px solid #e3ebf2;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(16, 35, 60, 0.05);
  padding: 12px 12px 14px;
  text-align: center;
  min-height: 132px;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(16, 137, 129, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(16, 35, 60, 0.10);
  border-color: rgba(16, 137, 129, 0.25);
}

.category-card:hover::before {
  opacity: 1;
}

.category-image-wrap {
  width: 100%;
  height: 80px;
  border-radius: 14px;
  margin-bottom: 10px;
  background: #ffffff;
  border: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.category-card:hover .category-image-wrap {
  transform: scale(1.03);
}

.category-photo {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.category-card:hover .category-photo {
  transform: scale(1.05);
}

.other-photo {
  width: 88%;
  height: 88%;
  object-fit: cover;
}

.category-card span {
  font-size: 0.98rem;
  font-weight: 700;
  color: #142941;
  transition: color 0.2s ease;
}

.category-card:hover span {
  color: var(--green);
}

.category-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* PRICING */
.pricing-section {
  padding-top: 26px;
}

.pricing-wrap {
  max-width: 980px;
}

.pricing-heading {
  margin-bottom: 18px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #dce5ee;
  border-radius: 24px;
  padding: 28px 28px 30px;
  box-shadow: 0 14px 36px rgba(16, 35, 60, 0.05);
  text-align: center;
}

.pricing-card-main {
  margin: 0 auto 18px;
  max-width: 320px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #21384d;
  font-weight: 600;
}

.pricing-card-sub {
  margin: 0 0 20px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #627389;
}

.pricing-card-actions {
  display: flex;
  justify-content: center;
}

/* URGENCY */
.urgency-section {
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid #d9e7ee;
  border-bottom: 1px solid #d9e7ee;
}

.urgency-box {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d9e7ee;
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 14px 34px rgba(16, 35, 60, 0.08);
}

.urgency-box h2 {
  margin: 0 0 12px;
  color: #10233f;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.urgency-box p {
  color: #465b74;
  font-size: 1.12rem;
  line-height: 1.65;
  margin: 0 0 22px;
}

/* TAGLINE BAND */
.tagline-band {
  background: #eef3f7;
  border-top: 1px solid #e0e8ef;
  border-bottom: 1px solid #e0e8ef;
  padding: 18px 0;
  text-align: center;
}

.tagline-band p {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #10253e;
}

/* FAQ */
.faq-section {
  padding-top: 38px;
  padding-bottom: 36px;
}

.faq-wrap {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #10263e;
}

.faq-list p {
  margin: 10px 0 0;
  color: #4a5c70;
  line-height: 1.55;
}

.faq-list p a {
  color: var(--green);
  font-weight: 800;
}

/* FOOTER */
.site-footer {
  background: #f5f7fb;
  border-top: 1px solid #e2e8ef;
  padding-top: 26px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 54px;
  width: auto;
}

.footer-tag {
  margin: 0;
  color: #59697d;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef3f7;
  border: 1px solid #dce5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.footer-socials a:hover {
  background: #108981;
  border-color: #108981;
  transform: translateY(-1px);
}

.footer-socials img {
  width: 16px;
  height: 16px;
  opacity: 0.82;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #59697d;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #10233c;
}

.footer-bottom {
  border-top: 1px solid #e2e8ef;
  padding: 16px 0 22px;
  text-align: center;
  margin-bottom: 0;
}

.footer-bottom p {
  margin: 0;
  color: #6a7a8d;
  font-size: 0.9rem;
}

/* TEMPLATE LINKS HOME */
.template-links-home {
  padding: 46px 0 70px;
  background: #f8fbfc;
}

.template-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.template-links-grid a {
  background: #ffffff;
  border: 1px solid #d9e7ea;
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: #10233c;
  font-weight: 700;
  transition: 0.2s ease;
}

.template-links-grid a:hover {
  border-color: #108981;
  color: #108981;
  transform: translateY(-2px);
}

.template-links-cta {
  margin-top: 26px;
  text-align: center;
}

/* MOBILE */
@media (max-width: 980px) {
  .hero-micro {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
  }

  .hero-micro span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #5b6b7e;
    line-height: 1.3;
  }

  .hero-micro,
  .hero-trust-line {
    display: none !important;
  }

  .conversion-strip,
  .conversion-strip-inner,
  .conversion-points,
  .hero-categories {
    display: none !important;
  }

  .sticky-cta,
  .mobile-sticky-cta,
  .bottom-cta,
  .sticky-mobile-cta {
    display: none !important;
  }

  .container {
    width: min(var(--container), calc(100% - 44px));
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 24px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.98);
    border: 1px solid #dce5ee;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(16,35,60,0.12);
    padding: 10px;
    z-index: 200;
  }

  .main-nav.is-open a {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .main-nav.is-open .btn {
    margin-top: 8px;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .brand-logo {
    height: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(245,247,251,0.98) 0%,
        rgba(245,247,251,0.88) 34%,
        rgba(245,247,251,0.30) 58%,
        rgba(245,247,251,0) 100%
      ),
      url("images/hero-mobile-v3.png") center top / cover no-repeat;
  }

  .hero-grid {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 34px;
    padding-bottom: 300px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.02rem;
    line-height: 1.45;
    max-width: 620px;
  }

  .hero-points {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .comparison-grid,
  .bill-need-home-inner,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner,
  .footer-left,
  .footer-links {
    justify-content: center;
    text-align: center;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    height: 52px;
  }

  .menu-toggle {
    font-size: 28px;
    padding: 6px;
  }

  .hero-grid {
    min-height: 720px;
    padding-top: 24px;
    padding-bottom: 280px;
  }

  .hero-badge {
    display: none;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin-bottom: 12px;
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-points {
    gap: 8px;
    margin-bottom: 14px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-points li {
    font-size: 0.94rem;
    line-height: 1.32;
    padding-left: 32px;
  }

  .hero-points li::before {
    width: 22px;
    height: 22px;
    font-size: 12px;
    top: 0;
  }

  .btn-large,
  .hero-actions .btn,
  .bill-need-actions .btn {
    min-height: 50px;
    padding: 14px 20px;
    font-size: 0.98rem;
    width: min(100%, 320px);
  }

  .hero-actions,
  .bill-need-actions,
  .pricing-card-actions {
    display: flex;
    justify-content: center;
  }

  .section {
    padding: 26px 0;
  }

  .section-heading,
  .bill-need-home-copy,
  .pricing-wrap,
  .how-heading {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading .section-kicker {
    margin-bottom: 8px;
  }

  .section-heading h2,
  .bill-need-home-copy h2,
  .how-heading h2 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.05;
  }

  .section-heading p,
  .bill-need-home-copy p,
  .how-heading p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }

  .section-heading h2 {
    font-size: 2.05rem;
  }

  .bill-need-home-copy {
    text-align: left;
  }

  .bill-need-home-copy h2 {
    font-size: 1.85rem;
    text-align: left;
  }

  .bill-need-list {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .how-reassurance {
    display: none;
  }

  .template-links-home {
    padding: 40px 0 56px;
  }

  .template-links-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    min-height: 122px;
  }

  .pricing-card {
    padding: 22px 18px 24px;
    border-radius: 18px;
  }

  .pricing-card-main {
    max-width: 320px;
    margin: 0 auto 18px;
  }

  .footer-logo {
    height: 48px;
  }

  .footer-links {
    gap: 14px;
    font-size: 0.9rem;
  }
}