:root {
  --background: #f9f9ff;
  --foreground: #151b2a;
  --surface: #ffffff;
  --surface-muted: #f1f3ff;
  --surface-low: #f1f3ff;
  --surface-highest: #dce2f6;
  --primary: #021938;
  --primary-2: #1a2e4e;
  --secondary: #a73826;
  --secondary-2: #fe785f;
  --text-muted: #44474e;
  --outline: #75777f;
  --inverse-surface: #2a3040;
  --shadow-ambient: 0 10px 20px rgba(26, 46, 78, 0.08);
  --shadow-deep: 0 24px 55px rgba(2, 25, 56, 0.2);
  --container: 1280px;
  --nav-height: 4rem;
  --radius-xl: 2rem;
  --radius-lg: 1.25rem;
  --radius-md: 0.95rem;
  --radius-sm: 0.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(1100px 420px at 18% 0%, rgba(254, 120, 95, 0.12), transparent 58%),
    linear-gradient(180deg, var(--background) 0 52%, #08192f 52% 100%);
  background-attachment: fixed;
}

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

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

.site-shell {
  min-height: 100dvh;
}

.site-content {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}

.section {
  width: 100%;
}

.section-inner {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section-dark {
  background: var(--primary);
  color: #fff;
  position: relative;
}

.section-light {
  background: var(--surface);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--secondary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.eyebrow-dark,
.eyebrow-light {
  color: var(--secondary-2);
}

.feature-header {
  width: 100%;
  margin-bottom: 2rem;
}

.center-header {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.left-header {
  text-align: left;
  max-width: 44rem;
}

.feature-header h2,
.business-copy h2,
.cta-inner h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.feature-header p:not(.eyebrow),
.hero-copy p,
.business-copy p,
.testimonial-card p,
.cta-inner p,
.footer-brand-block p,
.footer-app-block p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
}

.navbar {
  width: 100%;
  height: var(--nav-height);
  margin: 0;
  padding: 0 max(1rem, calc((100% - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 25, 56, 0.95);
  box-shadow: 0 8px 30px rgba(2, 25, 56, 0.18);
  backdrop-filter: blur(14px);
}

/* add */
.nav-links a {
  position: relative;
  padding-bottom: 0.4rem;
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo-nav {
  width: auto;
  height: 2.35rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.8rem 1.35rem;
  border-radius: 0.9rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 12px 28px rgba(167, 56, 38, 0.3);
}

.btn-primary:hover {
  background: #8f2e1f;
}

.btn-outline-on-dark,
.btn-ghost-on-dark {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost-on-dark {
  border-color: transparent;
  background: transparent;
  padding-inline: 0.25rem;
}

.btn-outline {
  color: var(--primary);
  border: 1px solid rgba(117, 119, 127, 0.28);
  background: #fff;
}

.home-page {
  overflow-x: clip;
}

.hero-section {
  position: relative;
  padding: 3rem 0 2rem;
  min-height: min(840px, calc(100svh - var(--nav-height)));
}

.hero-section::before,
.section-business::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-section::before {
  background:
    radial-gradient(ellipse 80% 60% at 28% 50%, rgba(254, 120, 95, 0.22), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.75) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.75) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.hero-media {
  position: relative;
  min-width: 0;
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.hero-image-frame {
  width: min(100%, 34rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-image {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  object-position: center;
}

.hero-rating-card {
  position: relative;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 35rem);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  box-shadow: var(--shadow-deep);
}

.rating-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: #ffedd5;
  color: #f59e0b;
  font-size: 1.4rem;
  font-weight: 800;
}

.rating-value {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.rating-label {
  margin-top: 0.15rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-copy {
  min-width: 0;
  max-width: 36rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.6rem;
  padding: 0.55rem 1rem 0.55rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(26, 46, 78, 0.6);
  color: #fff;
  backdrop-filter: blur(10px);
}

.trust-pill-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.6rem;
}

.hero-copy h1 {
  margin: 1rem 0 0;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
 font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.hero-copy p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 31rem;
}

.hero-actions,
.cta-actions,
.mobile-center {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 1.5rem;
    flex-direction: column;   /* stack instead of row */
  align-items: stretch;     /* make both buttons full width of hero-copy */
}

.trust-points {
  margin: 2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-points .trust-icon {
  color: var(--secondary-2);
  line-height: 1;
}

/* add */
.hero-actions .btn {
  width: 45%;
  min-height: 4.25rem;
  padding: 1rem 1.75rem;
  gap: 0.5rem;
  /* justify-content: space-between; */
}

.stats-strip {
  padding: 2.5rem 0 3rem;   /* more top/bottom room now that the card box is gone */
  background: linear-gradient(90deg, #021938 0%, #1a2e4e 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  /* removed: border, border-radius, background, box-shadow, overflow:hidden */
}

.stat-card {
  padding: 1.5rem 1rem;
  text-align: center;
  color: #fff;
}

.stat-card + .stat-card {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-value {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.section-light,
.section-business,
.section-cta {
  padding: 5rem 0;
}

.feature-grid {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card,
.testimonial-card {
  padding: 1.5rem;
  border: 1px solid rgba(117, 119, 127, 0.15);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-ambient);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(117, 119, 127, 0.15);
  border-radius: 0.95rem;
  background: rgba(2, 25, 56, 0.04);
}

.feature-card h3 {
  margin: 1rem 0 0;
  color: var(--primary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.icon-shield,
.icon-price,
.icon-pin {
  display: inline-block;
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
}

.icon-shield {
  border: 2px solid var(--primary);
  border-radius: 0.35rem 0.35rem 0.6rem 0.6rem;
  transform: rotate(45deg);
}

.icon-price::before,
.icon-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--secondary);
}

.icon-price::after {
  content: "₹";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 700;
}

.icon-pin::before {
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg) scale(0.85);
}

.services-top {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.no-margin {
  margin-bottom: 0;
}

.view-all-link {
  color: var(--secondary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.service-grid {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-width: 0;
}

.service-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(117, 119, 127, 0.15);
  border-radius: 1rem;
  background: #f7f7fb;
  box-shadow: var(--shadow-ambient);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-card p {
  margin: 0.75rem 0 0;
  color: var(--foreground);
  text-align: center;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.mobile-only {
  display: none;
  justify-content: center;
  margin-top: 1.5rem;
}

.section-business {
  position: relative;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}

.section-business::before {
  background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(254, 120, 95, 0.15), transparent);
}

.business-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 2.5rem;
}

.business-copy {
  min-width: 0;
}

.business-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.business-copy p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 38rem;
}

.highlight-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.highlight-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 1rem;
  line-height: 1.6;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: var(--secondary-2);
  box-shadow: 0 0 0 0.2rem rgba(254, 120, 95, 0.15);
}

.business-actions {
  margin-top: 1.75rem;
}

.dashboard-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: rgba(26, 46, 78, 0.8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.dashboard-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dashboard-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.dashboard-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  background: rgba(2, 25, 56, 0.6);
  color: var(--secondary-2);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dashboard-stat {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(2, 25, 56, 0.5);
}

.dashboard-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.dashboard-stat-value {
  margin-top: 0.4rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.bar-chart {
  height: 8rem;
  margin-top: 1.25rem;
  padding: 0.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 0.9rem;
  background: rgba(2, 25, 56, 0.35);
}

.bar-chart span {
  width: 100%;
  border-radius: 0.35rem 0.35rem 0 0;
  background: rgba(254, 120, 95, 0.9);
}

.testimonial-grid {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card p {
  margin-top: 1rem;
  color: var(--foreground);
}

.stars {
  color: var(--secondary-2);
  letter-spacing: 0.18rem;
  font-size: 1rem;
}

.testimonial-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(117, 119, 127, 0.12);
}

.initials {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
}

.meta-name {
  color: var(--primary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.meta-role {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.section-cta {
  background: var(--surface-low);
}

.cta-card {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(117, 119, 127, 0.15);
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--shadow-ambient);
}

.cta-card::before {
  content: "";
  position: absolute;
  left: -5rem;
  top: 0;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: rgba(254, 120, 95, 0.08);
  filter: blur(36px);
}

.cta-inner {
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 46rem;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.cta-actions {
  margin-top: 1.75rem;
  justify-content: center;
}

.app-site-footer {
  padding: 0 0 max(1.25rem, env(safe-area-inset-bottom, 0px));
  background: var(--inverse-surface);
  color: rgba(255, 255, 255, 0.86);
}

.footer-top {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2rem;
}

.footer-top::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.8rem;
}

.footer-logo {
  height: 2.35rem;
  width: auto;
}

.footer-brand-block p,
.footer-app-block p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 26rem;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a,
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
}

.globe-icon {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-column,
.footer-app-block {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.footer-column h3,
.footer-app-block h3 {
  margin: 0;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 180ms ease;
}

.footer-column a:hover,
.legal-links a:hover {
  color: var(--secondary-2);
}

.footer-app-block .store-link {
  justify-content: flex-start;
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.copyright {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mini-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.4rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 180ms ease;
}

@media (max-width: 1200px) {
  .hero-grid,
  .business-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

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

  .hero-media {
    order: 1;
    max-width: 100%;
  }

  .hero-copy {
    order: 2;
    max-width: 100%;
  }
}

@media (max-width: 880px) {
  .nav-links {
    gap: 1.25rem;
    font-size: 0.95rem;
  }

  .desktop-only {
    display: none;
  }

  .hero-image {
    height: 22rem;
  }

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

  .feature-grid,
  .testimonial-grid,
  .service-grid,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .services-top {
    align-items: start;
  }

  .mobile-only {
    display: flex;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section-inner {
    width: min(calc(100% - 1rem), var(--container));
  }

  .navbar {
    height: auto;
    flex-wrap: wrap;
    padding: 0.85rem 0.9rem;
  }

  .brand-logo-nav {
    height: 2rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-actions {
    margin-left: auto;
  }

  .btn {
    min-height: 2.6rem;
    padding: 0.75rem 1rem;
  }

  .hero-section {
    padding-top: 2.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.4rem);
  }

  .hero-image {
    height: 20rem;
  }

  .hero-rating-card {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card + .stat-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cta-inner {
    padding: 2.25rem 1rem;
  }

  .cta-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn,
  .hero-actions .btn,
  .mobile-center .btn {
    width: 100%;
  }
}