/* ============================================================================
   home.css — Homepage-specific section styles
   Liberty Roof Group
   ============================================================================ */

/* ─── HERO FORM SLIDE-FROM-RIGHT ANIMATION (removed) ────── */

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: visible;
  background-color: var(--secondary-900, #111827);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://connect.mediaserve.io/storage/v1/object/public/media/78dba5ff-e514-44fd-bc2d-1f49dd7a0a6f/f4523b1a-7fe7-4198-b28d-08d172eb2245/media/images/Roofing.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,40,0.92) 55%, rgba(10,20,40,0.72) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: var(--space-10);
  padding-top: calc(var(--header-height, 140px) + var(--space-4));
  padding-bottom: var(--space-16);
  width: 100%;
}

.hero-content {
  margin-top: 0;
  padding-top: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #002868;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  align-self: flex-start;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
  margin-bottom: var(--space-3);
}

.hero-title span {
  color: #eb1414;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.88);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  max-width: 520px;
}

.hero-trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero-trust-item svg {
  color: #eb1414;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* Hero Form Side — right column in hero two-column layout */
.hero-form-side {
  margin-top: var(--space-10);
  align-self: center;
}

.hero-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.hero-form-header {
  margin-bottom: var(--space-5);
  text-align: center;
}

.hero-form-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--secondary-900, #111827);
  margin: 0 0 var(--space-2) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
}

.hero-form-title svg {
  color: var(--accent-500, #ef4444);
}

.hero-form-subtitle {
  font-size: var(--text-sm);
  color: var(--secondary-600, #4b5563);
  margin: 0;
}



.hero-form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--heading-light);
  margin-bottom: 4px;
}

.hero-form-fields .form-input {
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-3);
}

.hero-form-fields textarea.form-input {
  min-height: 80px;
  resize: none;
}

.hero-form-submit {
  margin-top: var(--space-1);
}

.hero-form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-6);
}

.hero-form-disclaimer {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--secondary-400, #9ca3af);
  text-align: center;
}

/* ─── TRUST STRIP (below hero) ───────────────────────────── */
.trust-section {
  background: var(--secondary-900, #111827);
  /* Section starts 360px early (form overlap via negative margin).
     min-height ensures section is tall enough for the form + trust row.
     padding-bottom gives breathing room at the bottom. */
  min-height: calc(360px + var(--space-20));
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

/* On desktop the form card overlaps the right side, so left-align trust items */
.trust-section .container {
  flex-direction: row;
  align-items: center;
  padding-bottom: var(--space-4);
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: var(--space-6);
  flex: 1 1 auto;
  max-width: 60%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.trust-item svg {
  color: var(--primary-400, #3361a8);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .trust-divider { display: none; }
}

/* ─── SERVICES OVERVIEW ──────────────────────────────────── */
.services-overview {
  background: var(--secondary-50, #f9fafb);
}

.services-overview .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.services-overview .section-header .section-label {
  align-self: center;
  margin-bottom: var(--space-3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  width: 100%;
}

/* Override overlay-only service-card for homepage card-with-body layout */
.services-grid .service-card {
  position: relative;
  aspect-ratio: unset;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: box-shadow var(--duration-200) var(--ease-default), transform var(--duration-200) var(--ease-default);
}

.services-grid .service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 6px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform var(--duration-500) var(--ease-default);
}

.services-grid .service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  gap: var(--space-2);
  flex: 1;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-100, #ccd6f0);
  color: var(--primary-600, #002868);
  flex-shrink: 0;
  margin-bottom: var(--space-1);
}

.service-card-icon svg {
  display: block;
}

/* Override components.css .service-card-title which expects overlay layout */
.services-grid .service-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--heading-light, #111827);
  margin: 0;
  display: block;
  line-height: var(--leading-snug);
  text-align: left;
}

.service-card-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-light, #374151);
  line-height: var(--leading-relaxed);
  margin: 0;
  flex: 1;
  text-align: left;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--primary-600, #002868);
  margin-top: var(--space-2);
  transition: color var(--duration-150) var(--ease-default);
  text-align: left;
  align-self: flex-start;
}

.services-grid .service-card:hover .service-card-link {
  color: var(--primary-700, #002868);
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .service-card-body { padding: var(--space-4); }
}

@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
}

.services-cta-row {
  text-align: center;
  margin-top: var(--space-10);
}

/* ─── WHY CHOOSE US ──────────────────────────────────────── */
.why-choose {
  background: #fff;
}

.why-choose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: stretch;
}

.why-choose-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
}

.why-choose-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  flex: 1;
}

.why-choose-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: #002868;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-8);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  text-align: center;
}

.why-choose-badge .badge-number {
  font-size: var(--text-6xl);
  line-height: 1;
}

.why-choose-badge .badge-text {
  font-size: var(--text-base);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.why-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

@media (max-width: 768px) {
  .why-features-list {
    grid-template-columns: 1fr;
  }
}

.why-feature-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.why-feature-body h3 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--secondary-900, #111827);
  margin-bottom: var(--space-1);
}

.why-feature-body p {
  font-size: var(--text-sm);
  color: var(--secondary-600, #4b5563);
  line-height: var(--leading-relaxed);
}

.why-choose-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--secondary-100, #f3f4f6);
}

.why-stat {
  text-align: center;
}

.why-stat .stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--primary-600, #002868);
  line-height: 1;
}

.why-stat .stat-label {
  font-size: var(--text-xs);
  color: var(--secondary-500, #6b7280);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

@media (max-width: 1024px) {
  .why-choose-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .why-choose-content {
    order: -1;
  }
  .why-choose-image-wrap {
    position: static;
    order: 1;
  }
  .why-choose-image-wrap img {
    height: 320px;
    min-height: 320px;
    flex: none;
  }
}

/* ─── SERVICE AREAS STRIP ────────────────────────────────── */
.areas-section {
  background: linear-gradient(135deg, #002868 0%, #001540 100%);
  position: relative;
  overflow: hidden;
}

.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://connect.mediaserve.io/storage/v1/object/public/media/78dba5ff-e514-44fd-bc2d-1f49dd7a0a6f/f4523b1a-7fe7-4198-b28d-08d172eb2245/media/images/full-roof2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.areas-section .container {
  position: relative;
  z-index: 1;
}

.areas-section .section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.areas-section .section-label {
  color: rgba(255,255,255,0.7);
  align-self: center;
}

.areas-section .section-label-center {
  color: rgba(255,255,255,0.7);
}

.areas-section h2 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.areas-section p {
  color: rgba(255,255,255,0.8);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  width: 100%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}

.area-card-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  color: #fff;
  text-decoration: none;
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  transition: background var(--duration-200) var(--ease-default), transform var(--duration-200) var(--ease-default);
  backdrop-filter: blur(4px);
}

.area-card-link svg {
  color: var(--primary-300, #7799cc);
  flex-shrink: 0;
}

.area-card-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.areas-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ─── PROCESS / HOW IT WORKS ─────────────────────────────── */
.process-section {
  background: var(--secondary-50, #f9fafb);
}

.process-section .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.process-section .section-label {
  align-self: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  width: 100%;
  position: relative;
}

/* connector line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--primary-200), var(--primary-400));
  z-index: 0;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #002868;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin: 0 auto var(--space-4);
  box-shadow: 0 0 0 6px rgba(0, 40, 104, 0.15);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--secondary-900, #111827);
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--secondary-500, #6b7280);
  line-height: var(--leading-relaxed);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  background: var(--secondary-900, #111827);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://connect.mediaserve.io/storage/v1/object/public/media/78dba5ff-e514-44fd-bc2d-1f49dd7a0a6f/f4523b1a-7fe7-4198-b28d-08d172eb2245/media/images/asphalt-shingle-roof-on-residential-roof.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.testimonials-section .section-label {
  color: var(--primary-300, #7799cc);
  align-self: center;
}

.testimonials-section h2 {
  color: #fff;
}

.testimonials-section .section-sub {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  margin-top: var(--space-3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  width: 100%;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  backdrop-filter: blur(4px);
  }

.review-card-dark .review-stars {
  color: #f59e0b;
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  display: flex;
  gap: 2px;
}

.review-card-dark .review-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.review-card-dark .reviewer-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #002868;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.reviewer-name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: #fff;
}

.reviewer-location {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.reviews-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ─── FAQ SECTION ────────────────────────────────────────── */
.faq-section {
  background: #fff;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: calc(var(--header-height, 110px) + 2rem);
  align-self: start;
}

.faq-sidebar h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--secondary-900, #111827);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.faq-sidebar p {
  font-size: var(--text-base);
  color: var(--secondary-600, #4b5563);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

@media (max-width: 1024px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .faq-sidebar {
    position: static;
  }
}

/* ─── REALWORK MAP SECTION ───────────────────────────────── */
.realwork-map-section {
  background: var(--color-bg);
  padding: var(--space-16) 0;
}

.realwork-map-section #rwl-map {
  min-height: 400px;
  width: 100%;
  border-radius: var(--radius-lg, 8px);
  overflow: hidden;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #001d50 0%, #002868 40%, #002868 70%, #003580 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 0;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(0,40,104,0.6) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(0,53,128,0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
  align-items: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: var(--weight-black);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: var(--space-3);
}

.cta-banner p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  line-height: var(--leading-relaxed);
}

.cta-phone-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.cta-phone-display a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--weight-black);
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: opacity var(--duration-200) var(--ease-default);
}

.cta-phone-display a:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #fff;
}

.cta-banner-btns {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE HERO ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    padding-top: calc(160px + var(--space-2));
    padding-bottom: var(--space-10);
  }

  .hero-form-side {
    margin-top: 0;
    width: 100%;
    max-width: 560px;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-form-card {
    max-width: 100%;
  }

  .trust-section {
    padding-bottom: var(--space-5);
    min-height: auto;
    display: block;
    align-items: unset;
  }

  .trust-section .container {
    flex-direction: column;
    padding-bottom: 0;
  }

  .trust-strip {
    justify-content: center;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* top-bar is hidden on mobile; only navbar (~100px) is shown */
  .hero .container {
    padding-top: calc(100px + var(--space-10));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

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

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
