/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, #1e4a22 0%, #2d6635 40%, #398141 100%);
  color: #fff;
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #c8e6c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}
.page-hero h1 em {
  font-style: normal;
  color: #9ed9a0;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--green-dark) !important;
  border-radius: 50px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  display: inline-block;
}
.btn-white:hover {
  background: #f0faf0;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ─── STAT BAR ─── */
.stat-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.stat-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── SHARED UTILITIES ─── */
.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
}
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green-mid);
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.btn-ghost:hover {
  background: var(--green-light);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* ─── OUR STORY ─── */
.story-section {
  padding: 88px 24px;
  background: var(--cream);
}
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.story-text p:last-of-type {
  margin-bottom: 28px;
}
.story-visual {
  position: relative;
}
.story-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: var(--green-mid);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.story-badge-number {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.story-badge-text {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 3px;
}

/* ─── AWARDS STRIP ─── */
.awards-strip {
  background: var(--white);
  padding: 52px 24px 44px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.awards-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.awards-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.award-item {
  text-align: center;
  opacity: 0.75;
  transition: opacity 0.22s, transform 0.22s;
}
.award-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.award-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.award-badge-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 12px;
}
.award-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
  max-width: 120px;
}
.awards-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green-mid);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.awards-cta:hover {
  background: var(--green-light);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* ─── SERVICES OVERVIEW ─── */
.services-section {
  padding: 88px 24px;
  background: var(--cream);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-sub {
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card-top {
  padding: 32px 32px 0;
}
.service-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-icon.green {
  background: var(--green-light);
  color: var(--green);
}
.service-icon.white {
  background: #ffffff;
  color: #9ed9a0;
}
.service-card-top h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.service-card-top .service-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.service-card-body {
  padding: 20px 32px 28px;
}
.service-card-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-diff-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.service-diff-item {
  flex: 1;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.service-diff-item .diff-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.service-diff-item .diff-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.service-includes {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.service-includes h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.include-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.include-list li .check {
  width: 18px;
  height: 18px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
}
.include-list li .check svg {
  width: 10px;
  height: 10px;
}

/* ─── TIER COMPARISON ─── */
.comparison-section {
  padding: 88px 24px;
  background: var(--white);
}
.comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.comparison-header {
  text-align: center;
  margin-bottom: 56px;
}
.comparison-header .section-sub {
  margin: 0 auto;
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.plan-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plan-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.plan-card-header {
  padding: 28px 28px 22px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.plan-card.featured .plan-card-header {
  background: linear-gradient(135deg, #1e4a22 0%, #398141 100%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #9ed9a0;
  color: #1e4a22;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.plan-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.plan-card.featured .plan-name {
  color: #fff;
}
.plan-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.plan-card.featured .plan-tagline {
  color: rgba(255, 255, 255, 0.75);
}
.plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.plan-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.plan-card.featured .plan-price-label {
  color: rgba(255, 255, 255, 0.55);
}
.plan-price {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.plan-card.featured .plan-price {
  color: #9ed9a0;
}
.plan-price-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.plan-card.featured .plan-price-note {
  color: rgba(255, 255, 255, 0.5);
}
.plan-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.plan-card.featured .plan-divider {
  background: rgba(255, 255, 255, 0.2);
}
.plan-card-body {
  padding: 24px 28px 28px;
}
.plan-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.plan-feature-list li .feat-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
}
.feat-check {
  background: var(--green-light);
  color: var(--green);
}
.feat-dash {
  background: #f3f3f3;
  color: var(--text-light);
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  padding: 14px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid var(--border);
  background: var(--cream);
  color: var(--text-muted);
}
.compare-table th.col-feature {
  width: 35%;
}
.compare-table th.col-hsc {
  color: var(--green-dark);
}
.compare-table th.col-hsp {
  color: #1e4a22;
  background: #eef5ee;
}
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.compare-table td.col-hsp {
  background: #f7fbf7;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:hover td {
  background: #f9fdf9;
}
.compare-table tr:hover td.col-hsp {
  background: #eef5ee;
}
.check-yes {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}
.check-no {
  color: var(--text-light);
  font-size: 18px;
}
.td-feature {
  font-weight: 500;
  color: var(--text);
}
.comparison-note {
  margin-top: 20px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--green-dark);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.howit-section {
  padding: 88px 24px;
  background: var(--cream);
}
.howit-inner {
  max-width: 900px;
  margin: 0 auto;
}
.howit-header {
  text-align: center;
  margin-bottom: 52px;
}
.howit-header .section-sub {
  margin: 0 auto;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.step-item:last-child {
  padding-bottom: 0;
}
.step-item:last-child .step-line {
  display: none;
}
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(57, 129, 65, 0.25);
}
.step-line {
  width: 2px;
  flex: 1;
  background: var(--green-mid);
  margin-top: 10px;
  min-height: 32px;
}
.step-content {
  padding-top: 10px;
}
.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CASE STUDIES ─── */
.stories-section {
  padding: 88px 24px;
  background: var(--white);
}
.stories-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}
.stories-grid {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.story-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.story-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.story-photo {
  aspect-ratio: 4/3;
  background: var(--green-mid);
  position: relative;
  overflow: hidden;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.story-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.story-names {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.story-preview {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.story-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.story-read-btn:hover {
  gap: 10px;
}

/* ─── CASES GRID / SAFEGUARDING (matches home page) ─── */
.cases-grid {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ─── CASE CARDS (matches home page) ─── */
.case-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 260px;
  max-width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.case-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--green-mid);
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.case-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-title {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.case-preview {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.case-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background 0.18s;
  margin-top: 14px;
  align-self: flex-start;
}

/* ─── WHAT HOMESHARE IS NOT ─── */
.not-section {
  padding: 72px 24px;
  background: #0d1f0e;
  color: #fff;
}
.not-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.not-inner .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: #9ed9a0;
}
.not-inner h2 {
  color: #fff;
  margin-bottom: 14px;
}
.not-inner .section-sub {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 40px;
}
.not-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.not-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
}
.not-x {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
}
.not-cta {
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, transform 0.15s;
}
.not-cta:hover {
  background: #2d6635;
  transform: translateY(-2px);
}

/* ─── CASE STUDY MODAL BODY ─── */
.modal-body-text p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.modal-body-text p:last-child {
  margin-bottom: 28px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-visual {
    margin-bottom: 24px;
  }
  .story-badge {
    left: 16px;
    bottom: -14px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .not-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .stories-grid .case-card,
  .cases-grid .case-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: center;
  }
  .stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stories-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
