/* =============================================================
   SwiftReview — Landing Page
   ============================================================= */

/* ── Reset & variables ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Primary colours */
  --green: #68be57; /* staff CTA buttons */
  --green-dark: #5aa94a; /* hover / accent span */
  --green-light: rgba(104, 190, 87, 0.1);
  --teal: #516f6e; /* Register Now button, See More */
  --blue: #33c6f4; /* business accent */
  --step-blue: #32a7dd;
  --step-green1: #1eaa24;
  --step-green2: #50ebb3;
  --yellow: #f0bc10;

  /* Text */
  --text-dark: #252525;
  --text-body: #3f4a5d;
  --text-muted: #6e778b;
  --text-sub: #293443;

  /* Surfaces */
  --white: #ffffff;
  --bg-light: #f3f5f8;

  /* Borders */
  --border: #d3d7df;
  --border-light: #eaeaea;
  --border-gold: #f0af4b;

  /* Type */
  --font: "Figtree", sans-serif;

  /* Shadows */
  --shadow-nav: 0 2px 5px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 15px -5px rgba(0, 0, 0, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ══════════════════════════════════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-green:active {
  transform: scale(0.98);
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-teal:hover {
  background: #3e5857;
  transform: translateY(-1px);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-nav);
  padding: 0;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: auto;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-btn-register {
  display: inline-flex;
  padding: 10px 24px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-btn-register:hover {
  background: #3e5857;
}

.nav-btn-signin {
  display: inline-flex;
  padding: 8px 20px;
  background: transparent;
  color: var(--text-body);
  border: 1.5px solid var(--border);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.nav-btn-signin:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.nav-lang-pill {
  padding: 8px 16px;
  background: transparent;
  color: var(--text-body);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
}
.nav-lang-pill:hover {
  border-color: var(--green);
  color: var(--green);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-body);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--bg-light);
  padding: 16px 24px 20px;
  gap: 8px;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-light);
}
.nav-mobile-link:hover {
  color: var(--green);
}
.nav-mobile-cta {
  margin-top: 8px;
  padding: 12px 20px;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
}
.nav-mobile-cta:hover {
  background: #3e5857;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--white);
  min-height: 662px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  place-items: center;
}

/* Hero left */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  place-self: center start;
}

.hero-h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-h1 .accent {
  color: var(--green-dark);
  font-weight: 700;
}

.hero-body {
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  font-weight: 300;
  color: var(--text-body);
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 32px;
}

.par-bold {
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Hero right — phone image with BG pattern */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150%;
  width: 150%;
  place-self: center;
  margin-top: -10%;
  margin-bottom: -30%;
}
.hero-phone-img {
  position: relative;
  z-index: 1;
  max-height: 90%;
  width: auto;
  margin-left: 50%;
  margin-top: -05%;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  height: 90%;
  width: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  margin-left: 20%;
  margin-top: -20%;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════════════════════ */
.process {
  background: var(--bg-light);
  padding: clamp(60px, 8vw, 100px) 0;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* 2-col header */
.process-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 64px;
}
.process-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.4px;
}
.process-h2 strong {
  color: var(--teal);
}
.process-header-text {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.5;
  padding-top: 8px;
}

/* --- TIMELINE CONTAINER --- */
.process-timeline {
  display: flex;
  flex-direction: column;
  position: relative; /* Keeps the dashed line contained within this section */
}

/* Continuous dashed line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: -20px; /* Extends slightly above the first step */
  bottom: -20px; /* Extends slightly below the last step */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0px,
    var(--border) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0; /* Puts the DASHED line in the background */
}

/* Each step: left content | center track | right content */
.step-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0 24px;
  align-items: start;
  min-height: 180px;
  padding-bottom: 0;
}
.step-row + .step-row {
  margin-top: 0;
}

.step-side-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px 24px 0;
}
.step-side-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 24px 32px;
}
.step-side-left.has-img,
.step-side-right.has-img {
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.step-phone-img {
  max-height: 220px;
  width: auto;
}

/* --- CENTER TRACK DASHED LINE & NUMBERS --- */
.step-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Centers the number vertically in the row */
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 2; /* Forces the number to sit ON TOP of the dashed line */
}

.step-number--blue {
  background: var(--step-blue);
}
.step-number--green {
  background: var(--step-green1);
}
.step-number--yellow {
  background: var(--yellow);
  color: var(--text-dark);
}

/* Step content */
.step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-tag--blue {
  background: var(--blue);
  color: var(--white);
}
.step-tag--green {
  background: var(--step-green2);
  color: var(--text-dark);
}
.step-tag--yellow {
  background: var(--yellow);
  color: var(--text-dark);
}

.step-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 10px;
}
.step-link-one {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: opacity 0.2s;
}
.step-link-two {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: opacity 0.2s;
}

.step-link-one:hover {
  opacity: 0.75;
}

.step-link-two:hover {
  opacity: 0.75;
}

/* ══════════════════════════════════════════════════════════════
   METRICS
══════════════════════════════════════════════════════════════ */
.metrics {
  background: var(--white);
  padding: 80px 0;
}
.metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.metrics-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.metrics-date-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.metrics-date-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.stat-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.stat-icon-img {
  width: 32px;
  height: 32px;
}
.stat-number {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.stat-label-pill {
  display: inline-flex;
  padding: 4px 14px;
  background: var(--bg-light);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  width: fit-content;
}
.stat-delta {
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   PERFORMERS / LEADERBOARD
══════════════════════════════════════════════════════════════ */
.performers {
  background: var(--white);
  padding: 60px 0 80px;
}
.performers-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.performers-trophy {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}
.performers-h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 6px;
}
.performers-sub {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

/* Column header row */
.profile-header-row {
  width: 100%;
  max-width: 1100px;
  background: var(--bg-light);
  border-radius: 32px;
  height: 60px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr 160px 120px;
  align-items: center;
  padding: 0 28px;
  margin-bottom: 12px;
}
.profile-header-row span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Profile card rows */
.profile-rows {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.profile-card {
  border-radius: 32px;
  padding: 0 28px;
  height: 72px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr 160px 120px;
  align-items: center;
  transition: box-shadow 0.2s;
}
.profile-card:hover {
  box-shadow: var(--shadow-card);
}
.profile-card--gold {
  border: 1px solid var(--border-gold);
}
.profile-card--silver {
  border: 1px solid var(--border);
}

.profile-medal-img {
  width: 32px;
  height: 32px;
}
.profile-rank-num {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-body);
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.profile-avatar--placeholder {
  background: #E5E7EB;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.profile-name--private {
  color: var(--text-muted);
  font-style: italic;
}
.profile-role-badge {
  display: inline-flex;
  font-size: 12px;
  color: var(--text-muted);
}

.profile-city,
.profile-reviews {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--text-body);
}
.profile-city-icon,
.profile-star-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.profile-view-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.profile-view-btn:hover {
  opacity: 0.7;
}
.profile-view-btn--disabled {
  color: var(--text-muted);
  text-decoration: none;
  cursor: not-allowed;
  font-style: italic;
}

.performers-footer {
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
/* --- DESKTOP --- */
.cta-section {
  min-height: 380px;
  background-image: url("https://cdn.prod.website-files.com/69a584a0335b643e58b9af2a/69a957a6403d33b58213ab44_background-image-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch; /* Allows inner container to fill height */
  overflow: hidden; /* Crops the image perfectly at the bottom line */
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center; /* Vertically centers the text block */
  width: 100%;
}

.cta-img-wrap {
  align-self: end; /* Pushes the image wrap to the bottom of the grid */
  display: flex;
}

.cta-img {
  width: 589px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: -60px; /* Offsets the cta-inner bottom padding to align nicely */
  display: block;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left-aligns button and text for desktop */
  text-align: left;
}

.cta-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid #e4ebf3;
  padding: 50px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 32px;
  width: auto;
}
.footer-tagline {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-body);
  max-width: 220px;
  margin-top: 12px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.footer-link {
  font-size: 14px;
  color: var(--text-body);
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--green);
}

.footer-divider {
  border: none;
  border-top: 1px solid #ebedf0;
  margin: 0 0 0;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 14px;
  color: var(--text-body);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-body);
  transition:
    background 0.2s,
    color 0.2s;
}
.social-icon:hover {
  background: var(--green);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — tablet ≤ 1025px
══════════════════════════════════════════════════════════════ */
@media (max-width: 1025px) {
  .nav-inner {
    padding: 16px 32px;
  }
  .hero-inner {
    padding: 60px 32px;
  }
  .process-inner {
    padding: 0 32px;
  }
  .metrics-inner {
    padding: 0 32px;
  }
  .performers-inner {
    padding: 0 32px;
  }

  /* CTA */
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 0 24px; /* Removed bottom padding so image touches the bottom */
    gap: 40px;
  }

  .cta-text {
    order: -1; /* -1 Moves the text block ABOVE the image in the grid */
    align-items: center; /* Centers the button */
    text-align: center; /* Centers the text */
  }

  .cta-img {
    margin-bottom: 0; /* Reset desktop negative margin */
    width: 100%; /* Ensures it scales correctly on smaller devices */
  }

  .cta-h2 {
    font-size: 32px;
  }

  .cta-body {
    font-size: 16px;
    max-width: 100%;
  }

  .footer-inner {
    padding: 0 32px;
  }
  .footer-bottom {
    padding: 20px 32px;
  }
  .footer-links {
    gap: 36px;
  }
  .profile-header-row,
  .profile-card {
    grid-template-columns: 60px 1fr 1fr 1fr 140px 100px;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — mobile < 768px
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-inner {
    padding: 14px 20px;
  }
  .nav-btn-signin {
    display: none;
  }
  .nav-btn-register {
    display: none;
  }
  .nav-lang-pill {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 60px;
    gap: 0;
    place-items: start;
  }

  /* Hero right — phone image with BG pattern */
  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190%;
    width: 190%;
    place-self: center;
    margin-top: 20%;
    margin-bottom: -50%;
  }
  .hero-phone-img {
    position: relative;
    z-index: 1;
    max-height: 70%;
    width: auto;
    margin-left: 45%;
    margin-top: 0;
  }
  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    height: 50%;
    width: auto;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    margin-left: 10%;
    margin-top: 25%;
    margin-bottom: -20%;
  }

  .hero-h1 {
    font-size: 32px;
  }
  .hero-body {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Process */
  .process {
    padding: 60px 0;
  }
  .process-inner {
    padding: 0 24px;
  }
  .process-header-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  .process-header-text {
    font-size: 17px;
  }
  .step-row {
    grid-template-columns: 48px 1fr;
    grid-template-areas: "track content";
    gap: 0 16px;
  }
  .step-side-left.has-img,
  .step-side-right.has-img {
    display: none;
  }
  .step-side-right.step-content-mobile {
    grid-area: content;
    padding: 16px 0;
  }
  .step-side-left.step-content-mobile {
    grid-area: content;
    padding: 16px 0;
  }
  .step-track {
    grid-area: track;
  }

  .step-track-line {
    display: none;
  }

  .process-timeline::before {
    display: none;
  }

  /* Metrics */
  .metrics {
    padding: 60px 0;
  }
  .metrics-inner {
    padding: 0 24px;
  }
  .stat-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Performers */
  .performers {
    padding: 40px 0 60px;
  }
  .performers-inner {
    padding: 0 24px;
  }
  .profile-header-row {
    display: none;
  }
  .profile-card {
    grid-template-columns: 48px 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 16px 20px;
    gap: 8px;
  }
  .profile-role-badge,
  .profile-city,
  .profile-reviews {
    font-size: 12px;
  }

  /* CTA */
  @media screen and (max-width: 768px) {
    .cta-section {
      background-image: none; /* Hides patterned bg image */
      background-color: #2096bc; /* Applies solid blue background color */
    }

    .cta-inner {
      grid-template-columns: 1fr;
      padding: 48px 24px 0 24px; /* Removed bottom padding so image touches the bottom */
      gap: 40px;
    }

    .cta-text {
      order: -1;
      align-items: center;
      text-align: center;
    }

    .cta-img {
      margin-bottom: 0; /* Reset desktop negative margin */
      width: 100%; /* Ensures it scales correctly on smaller devices */
    }

    .cta-h2 {
      font-size: 32px;
    }

    .cta-body {
      font-size: 16px;
      max-width: 100%;
    }
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }
  .footer-inner {
    padding: 0 24px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 28px;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    text-align: center;
  }
}
