/*
Theme Name: WomenFirst HTML Prototype
Author: Prototype build for review
Description: Multi-page responsive HTML/CSS/JS template inspired by clean ride-hailing UI patterns.
*/

/* WF-CSS-TOKENS-START */
:root {
  --wf-purple: #5f18f2;
  --wf-purple-dark: #351079;
  --wf-purple-soft: #f4efff;
  --wf-pink: #ff4fa3;
  --wf-pink-soft: #fff0f7;
  --wf-yellow: #ffd84d;
  --wf-ink: #171321;
  --wf-muted: #5f596b;
  --wf-line: #e8e1f4;
  --wf-white: #ffffff;
  --wf-cloud: #fbf8ff;
  --wf-green: #16a36f;
  --wf-shadow: 0 22px 55px rgba(54, 16, 121, 0.12);
  --wf-shadow-soft: 0 12px 35px rgba(54, 16, 121, 0.08);
  --wf-radius-lg: 34px;
  --wf-radius-md: 24px;
  --wf-radius-sm: 16px;
  --wf-max: 1180px;
  --wf-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
/* WF-CSS-TOKENS-END */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wf-font);
  color: var(--wf-ink);
  background: var(--wf-cloud);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--wf-max));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding: 64px 0;
}

.section.alt {
  background: var(--wf-white);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid var(--wf-line);
  border-radius: 999px;
  color: var(--wf-purple-dark);
  background: var(--wf-white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wf-pink);
  box-shadow: 0 0 0 5px rgba(255, 79, 163, 0.12);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.lead {
  color: var(--wf-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
}

.small {
  color: var(--wf-muted);
  font-size: 0.95rem;
}

.text-link {
  color: var(--wf-purple);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--wf-ink);
  color: var(--wf-white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* WF-HEADER-STYLES-START */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 255, 0.88);
  backdrop-filter: saturate(1.4) blur(18px);
  border-bottom: 1px solid rgba(232, 225, 244, 0.85);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--wf-brand-name-weight, 950);
  letter-spacing: -0.04em;
  font-size: var(--wf-brand-name-size, 1.22rem);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--wf-purple);
  color: var(--wf-white);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(95, 24, 242, 0.24);
}

/* WF-BRAND-LOGO-CONTROLS-START
   Logo/name controls only. This block does not change hero font sizes, hero images, or section layouts.
   Replace assets/images/womenfirst-logo.gif to change the logo.
   Edit .brand-name text inside each HTML file to change the visible website name.
*/
.brand-logo {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: var(--wf-white);
  box-shadow: 0 10px 24px rgba(95, 24, 242, 0.16);
}

.brand-name {
  display: inline-block;
  font-weight: inherit;
  font-size: inherit;
}
/* WF-BRAND-LOGO-CONTROLS-END */

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links > [data-nav-links] {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--wf-muted);
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--wf-purple-soft);
  color: var(--wf-purple-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--wf-white);
  box-shadow: var(--wf-shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--wf-ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* WF-HEADER-STYLES-END */

/* WF-BUTTONS-START */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--wf-purple);
  color: var(--wf-white);
  box-shadow: 0 18px 35px rgba(95, 24, 242, 0.22);
}

.btn-primary:hover {
  background: #4d10d3;
}

.btn-light {
  background: var(--wf-white);
  color: var(--wf-purple-dark);
  border-color: var(--wf-line);
  box-shadow: var(--wf-shadow-soft);
}

.btn-dark {
  background: var(--wf-ink);
  color: var(--wf-white);
}

.btn-pink {
  background: var(--wf-pink);
  color: var(--wf-white);
  box-shadow: 0 18px 35px rgba(255, 79, 163, 0.22);
}

.btn-block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* WF-BUTTONS-END */

/* WF-HERO-START */
.hero {
  position: relative;
  overflow: clip;
  padding: 78px 0 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -180px -20% auto auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255,79,163,.23), rgba(95,24,242,.08) 56%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero h1 span {
  color: var(--wf-purple);
}

.hero-card {
  position: relative;
  --wf-hero-card-x: 0px;
  --wf-hero-card-y: 0px;
  min-height: 590px;
  border-radius: 44px;
  background: linear-gradient(145deg, var(--wf-purple), #7c3cff 48%, #f566b3);
  box-shadow: var(--wf-shadow);
  overflow: hidden;
  isolation: isolate;
  transform: translate(var(--wf-hero-card-x), var(--wf-hero-card-y));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 34px;
  z-index: 0;
}

.hero-visual-map {
  position: absolute;
  --wf-hero-map-x: 0px;
  --wf-hero-map-y: 0px;
  inset: 34px 28px auto 28px;
  height: 280px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.76);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.46);
  overflow: hidden;
  z-index: 1;
  transform: translate(var(--wf-hero-map-x), var(--wf-hero-map-y));
}

.hero-map-image {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-phone {
  position: absolute;
  --wf-hero-phone-x: 0px;
  --wf-hero-phone-y: 0px;
  right: 28px;
  bottom: -8px;
  width: min(58%, 285px);
  filter: drop-shadow(0 28px 34px rgba(23,19,33,.36));
  z-index: 2;
  transform: translate(var(--wf-hero-phone-x), var(--wf-hero-phone-y));
}

.hero-ride {
  position: absolute;
  --wf-hero-ride-x: 0px;
  --wf-hero-ride-y: 0px;
  left: 18px;
  bottom: 24px;
  width: min(58%, 320px);
  z-index: 3;
  border-radius: 26px;
  padding: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--wf-shadow-soft);
  transform: translate(var(--wf-hero-ride-x), var(--wf-hero-ride-y));
}

.hero-ride strong {
  display: block;
  font-size: 1.1rem;
}

.hero-ride span {
  color: var(--wf-muted);
  font-weight: 700;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--wf-white);
  color: var(--wf-purple-dark);
  font-weight: 900;
  box-shadow: var(--wf-shadow-soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--wf-line);
  border-radius: 22px;
  background: var(--wf-white);
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.stat-card span {
  color: var(--wf-muted);
  font-size: 0.92rem;
  font-weight: 750;
}
/* WF-HERO-END */

/* WF-CARDS-GRIDS-START */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius-md);
  background: var(--wf-white);
  box-shadow: var(--wf-shadow-soft);
  overflow: hidden;
}

.card.soft {
  background: var(--wf-purple-soft);
}

.card.pink {
  background: var(--wf-pink-soft);
}

.card.dark {
  background: var(--wf-ink);
  color: var(--wf-white);
  border-color: rgba(255,255,255,.1);
}

.card.dark p,
.card.dark .small {
  color: rgba(255,255,255,.72);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--wf-muted);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--wf-purple-soft);
  color: var(--wf-purple);
  font-size: 1.5rem;
}

.icon-badge.pink {
  background: var(--wf-pink-soft);
  color: var(--wf-pink);
}

.kicker-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kicker-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  margin: 18px auto 0;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.step-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wf-purple);
  color: var(--wf-white);
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(95, 24, 242, 0.2);
}

.service-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.media-card.inner-page-hero-media {
  width: 100%;
  max-width: 100%;
  height: 320px;
  display: grid;
  place-items: center;
  justify-self: center;
  padding: 16px;
}

.media-card.inner-page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.card.media-card.inner-page-content-media {
  height: 360px;
  display: grid;
  place-items: center;
  padding: 16px;
}

.card.media-card.inner-page-content-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
/* WF-CARDS-GRIDS-END */

/* WF-SPLIT-START */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split-copy {
  display: grid;
  gap: 22px;
}

.app-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 44px;
  background: linear-gradient(145deg, #f1e8ff, #fff 55%, #ffeaf5);
  border: 1px solid var(--wf-line);
  box-shadow: var(--wf-shadow-soft);
  overflow: hidden;
}

.app-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--wf-purple);
  opacity: 0.1;
}

.app-panel img {
  position: relative;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(54,16,121,.22));
}

/* WF-ABOUT-STORY-JOURNEY-START */
.wf-about-story-section {
  padding-top: 74px;
  padding-bottom: 42px;
}

.wf-about-story-card {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.08), transparent 34%),
    var(--wf-white);
}

.wf-about-story-card h2 {
  max-width: 720px;
  margin: 0;
}

.wf-about-story-text {
  display: grid;
  gap: 16px;
  color: var(--wf-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.wf-about-story-text p {
  margin: 0;
}

.wf-about-journey-section {
  padding-top: 54px;
}

.wf-about-journey-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.wf-about-journey-head h2 {
  margin: 0;
  color: var(--wf-purple-dark);
}

.wf-journey-timeline {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 38px;
}

.wf-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.wf-journey-layout-no-image {
  grid-template-columns: 1fr;
}

.wf-journey-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 27px;
  width: 2px;
  border-radius: 999px;
  background: #d9ccff;
}

.wf-journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.wf-journey-marker {
  position: relative;
  z-index: 1;
}

.wf-journey-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--wf-purple-soft);
  border: 2px solid #d9ccff;
  color: var(--wf-purple);
  box-shadow: 0 12px 30px rgba(95, 24, 242, 0.1);
}

.wf-journey-icon svg {
  width: 21px;
  height: 21px;
}

.wf-journey-copy {
  padding-top: 2px;
  max-width: 760px;
}

.wf-journey-label {
  margin: 0 0 2px;
  color: #938aa8;
  font-size: 0.86rem;
  font-weight: 800;
}

.wf-journey-copy h3 {
  margin: 0 0 4px;
  color: var(--wf-purple-dark);
  font-size: 1.15rem;
}

.wf-journey-copy p:last-child {
  margin: 0;
  color: #2f4664;
}

.wf-journey-media {
  height: 420px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 79, 163, 0.08), transparent 30%),
    var(--wf-white);
}

.card.media-card.wf-journey-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
/* WF-ABOUT-STORY-JOURNEY-END */

.app-screens-panel {
  position: relative;
  border-radius: 44px;
  background: var(--wf-white);
  border: 1px solid var(--wf-line);
  box-shadow: var(--wf-shadow-soft);
  padding: 24px;
}

.app-screens-panel img {
  width: 100%;
  object-fit: contain;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.store-badge img {
  height: 46px;
  width: auto;
}

.note-box {
  padding: 18px;
  border: 1px dashed rgba(95, 24, 242, .35);
  border-radius: 18px;
  background: rgba(95, 24, 242, .06);
  color: var(--wf-purple-dark);
  font-weight: 750;
}
/* WF-SPLIT-END */

/* WF-CTA-BANDS-START */
.cta-band {
  padding: 44px;
  border-radius: 42px;
  background: var(--wf-ink);
  color: var(--wf-white);
  box-shadow: var(--wf-shadow);
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,79,163,.48), transparent 70%);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  z-index: 1;
}

.cta-band p {
  color: rgba(255,255,255,.72);
}

.purple-band {
  background: linear-gradient(135deg, var(--wf-purple), #7a3cf3 54%, var(--wf-pink));
}
/* WF-CTA-BANDS-END */

/* WF-FAQ-START */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--wf-line);
  border-radius: 22px;
  background: var(--wf-white);
  overflow: hidden;
  box-shadow: var(--wf-shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--wf-ink);
  text-align: left;
  font-weight: 950;
  font-size: 1.05rem;
}

.faq-question::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wf-purple-soft);
  color: var(--wf-purple);
  font-size: 1.3rem;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--wf-muted);
}
/* WF-FAQ-END */

/* WF-PAGE-HERO-START */
.page-hero {
  padding: 88px 0 56px;
  background: linear-gradient(180deg, var(--wf-purple-soft), var(--wf-cloud));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: center;
}

.page-hero .lead {
  margin-top: 22px;
}

.page-hero-card {
  padding: 28px;
  border-radius: 34px;
  background: var(--wf-white);
  border: 1px solid var(--wf-line);
  box-shadow: var(--wf-shadow-soft);
}

.page-hero-card img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
}
/* WF-PAGE-HERO-END */

/* WF-FORMS-START */
.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 900;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--wf-line);
  border-radius: 16px;
  background: var(--wf-white);
  padding: 14px 16px;
  color: var(--wf-ink);
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--wf-purple);
  box-shadow: 0 0 0 4px rgba(95, 24, 242, 0.12);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--wf-purple-soft);
  color: var(--wf-purple-dark);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}
/* WF-FORMS-END */

/* WF-FOOTER-START */
.site-footer {
  background: var(--wf-ink);
  color: var(--wf-white);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 240px) repeat(var(--wf-footer-link-column-count, 4), max-content);
  justify-content: space-between;
  align-items: start;
  gap: 32px 24px;
}

.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.footer-brand p {
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.65;
}

.footer-links-grid {
  display: contents;
}

.footer-col {
  min-width: 0;
}

.footer-brand p,
.footer-col a,
.footer-bottom {
  color: rgba(255,255,255,.68);
}

.footer-col h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a:hover {
  color: var(--wf-white);
}

.footer-downloads .badge-row {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.footer-downloads .store-badge img {
  width: 100%;
  height: auto;
  max-width: 150px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.92rem;
}

.footer-bottom .wf-footer-bottom-left {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
}

.footer-bottom .wf-footer-bottom-center {
  grid-column: 2;
  justify-self: center;
}

.footer-bottom .wf-footer-bottom-right {
  grid-column: 3;
  justify-self: end;
  min-width: 0;
}

.wf-footer-bottom-left,
.wf-footer-bottom-center,
.wf-footer-bottom-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.wf-footer-bottom-left {
  justify-content: flex-start;
  text-align: left;
}

.wf-footer-bottom-center {
  justify-content: center;
  text-align: center;
}

.wf-footer-bottom-right {
  justify-content: flex-end;
  text-align: right;
}

.wf-footer-bottom-left:empty,
.wf-footer-bottom-center:empty,
.wf-footer-bottom-right:empty {
  display: none;
}

.wf-footer-bottom-left a,
.wf-footer-bottom-center a,
.wf-footer-bottom-right a {
  color: inherit;
  text-decoration: none;
}

.wf-footer-bottom-left a:hover,
.wf-footer-bottom-center a:hover,
.wf-footer-bottom-right a:hover {
  color: inherit;
  text-decoration: none;
}

.wf-footer-bottom-text p {
  display: inline;
  margin: 0;
}

.wf-footer-bottom-image,
.wf-footer-bottom-image-link {
  display: inline-block;
  max-width: 170px;
  max-height: 60px;
  flex: 0 0 auto;
}

.wf-footer-bottom-image {
  object-fit: contain;
  vertical-align: middle;
}

.wf-footer-bottom-image-link {
  line-height: 0;
}

/* WF-FOOTER-END */

/* WF-LEGAL-PAGES-START */
.wf-legal-hero {
  padding: 72px 0 56px;
  color: var(--wf-white);
  background: linear-gradient(135deg, var(--wf-ink) 0%, #35106f 58%, var(--wf-purple) 140%);
}

.wf-legal-hero h1 { max-width: 850px; margin: 12px 0 14px; color: inherit; }
.wf-legal-hero p { margin: 0; color: rgba(255,255,255,.78); }

.wf-legal-page {
  padding: 72px 0 96px;
  background: var(--wf-cloud);
}

.wf-legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.wf-legal-toc,
.wf-legal-document {
  border: 1px solid var(--wf-line);
  border-radius: 24px;
  background: var(--wf-white);
  box-shadow: 0 16px 44px rgba(31, 20, 51, .07);
}

.wf-legal-toc { position: sticky; top: 104px; padding: 24px; }
.wf-legal-toc h2 { margin: 0 0 14px; font-size: 1rem; }
.wf-legal-toc ol { max-height: 62vh; margin: 0; padding-left: 22px; overflow: auto; }
.wf-legal-toc li { margin: 0 0 9px; color: var(--wf-muted); font-size: .9rem; }
.wf-legal-toc a { color: inherit; }
.wf-legal-toc a:hover { color: var(--wf-purple); }
.wf-legal-document { padding: clamp(26px, 5vw, 64px); }
.wf-legal-document > :first-child { margin-top: 0; }
.wf-legal-document h2 { margin: 48px 0 16px; font-size: clamp(1.35rem, 2.2vw, 1.75rem); scroll-margin-top: 110px; }
.wf-legal-document h3 { margin: 28px 0 10px; font-size: 1.1rem; }
.wf-legal-document p,
.wf-legal-document li { color: var(--wf-muted); line-height: 1.8; }
.wf-legal-document a { color: var(--wf-purple); text-decoration: underline; text-underline-offset: 3px; }
.wf-legal-document ul,
.wf-legal-document ol { padding-left: 24px; }
/* WF-LEGAL-PAGES-END */

/* WF-TEAM-PAGE-START */
.wf-team-hero {
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,79,163,.18), transparent 26%),
    linear-gradient(135deg, var(--wf-cloud), var(--wf-purple-soft));
}

.wf-team-hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); gap: 54px; align-items: center; }
.wf-team-hero h1 { margin: 18px 0; max-width: 760px; }
.wf-team-hero p { max-width: 680px; margin: 0; color: var(--wf-muted); font-size: 1.12rem; line-height: 1.75; }
.wf-team-hero-visual { display: grid; min-height: 430px; place-items: center; padding: 24px; border: 1px solid rgba(95,24,242,.14); border-radius: var(--wf-radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(244,239,255,.92)); box-shadow: var(--wf-shadow); overflow: hidden; }
.wf-team-hero-visual img { display: block; width: 100%; height: 100%; max-height: 440px; object-fit: contain; object-position: center; }
.wf-team-section { padding: 82px 0 100px; }
.wf-team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 42px; }
.wf-team-card { overflow: hidden; border: 1px solid var(--wf-line); border-radius: var(--wf-radius-md); background: var(--wf-white); box-shadow: var(--wf-shadow-soft); }
.wf-team-photo-button { position: relative; display: block; width: 100%; aspect-ratio: 4 / 3; padding: 0; overflow: hidden; border: 0; background: var(--wf-purple-soft); color: inherit; cursor: pointer; }
.wf-team-photo-button img { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; }
.wf-team-photo-button:focus-visible { outline: 3px solid var(--wf-purple); outline-offset: -3px; }
.wf-team-photo-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: var(--wf-purple); }
.wf-team-photo-placeholder svg { width: 72px; height: 72px; }
.wf-team-photo-action { position: absolute; right: 16px; bottom: 16px; padding: 9px 13px; border-radius: 999px; background: rgba(23,19,33,.86); color: var(--wf-white); font-size: .82rem; font-weight: 800; }
.wf-team-card-copy { padding: 24px; }
.wf-team-card-copy h3 { margin: 0 0 7px; font-size: 1.35rem; }
.wf-team-card-copy p { margin: 12px 0 0; color: var(--wf-muted); line-height: 1.65; }
.wf-team-role { margin: 0 !important; color: var(--wf-purple-dark) !important; font-weight: 800; }
.wf-team-empty { margin-top: 36px; padding: 34px; border: 1px dashed var(--wf-line); border-radius: var(--wf-radius-md); background: var(--wf-cloud); color: var(--wf-muted); text-align: center; }
.wf-team-empty p { margin: 0; }
.wf-team-modal[hidden] { display: none; }
.wf-team-modal { position: fixed; inset: 0; z-index: 100000; display: grid; place-items: center; padding: 24px; }
.wf-team-modal-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(23,19,33,.72); cursor: pointer; }
.wf-team-modal-panel { position: relative; width: min(880px, 100%); max-height: min(760px, calc(100vh - 48px)); overflow: auto; padding: clamp(24px, 5vw, 52px); border-radius: 30px; background: var(--wf-white); box-shadow: 0 30px 90px rgba(23,19,33,.3); }
.wf-team-modal-close { position: absolute; top: 18px; right: 18px; z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--wf-line); border-radius: 50%; background: var(--wf-white); color: var(--wf-ink); font-size: 1.65rem; line-height: 1; cursor: pointer; }
.wf-team-modal-layout { display: grid; grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr); gap: 38px; align-items: start; }
.wf-team-modal-photo { width: 100%; max-height: 520px; object-fit: contain; object-position: center; border-radius: var(--wf-radius-md); background: var(--wf-purple-soft); }
.wf-team-modal-layout h2 { margin: 18px 0 8px; }
.wf-team-long-description { margin-top: 24px; color: var(--wf-muted); line-height: 1.8; }
.wf-team-long-description p { margin: 0 0 1.1em; }
.wf-team-long-description ul,
.wf-team-long-description ol { margin: 1.1em 0; padding-left: 1.4em; }
.wf-team-long-description > :first-child { margin-top: 0; }
.wf-team-long-description > :last-child { margin-bottom: 0; }
body.wf-team-modal-open { overflow: hidden; }

@media (max-width: 880px) {
  .wf-team-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .wf-team-hero-visual { min-height: 340px; }
  .wf-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wf-team-modal-layout { grid-template-columns: 1fr; }
  .wf-team-modal-photo { max-width: 320px; }
}

@media (max-width: 620px) {
  .wf-team-hero { padding: 58px 0 52px; }
  .wf-team-hero-visual { min-height: 280px; padding: 16px; }
  .wf-team-section { padding: 58px 0 72px; }
  .wf-team-grid { grid-template-columns: 1fr; }
  .wf-team-modal { padding: 12px; }
  .wf-team-modal-panel { max-height: calc(100vh - 24px); border-radius: 22px; }
}
/* WF-TEAM-PAGE-END */

/* WF-UTILITIES-START */
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--wf-muted);
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wf-purple-soft);
  color: var(--wf-purple);
  font-weight: 950;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--wf-white);
  border: 1px solid var(--wf-line);
  color: var(--wf-purple-dark);
  font-weight: 850;
  font-size: 0.92rem;
}

.availability-list {
  display: grid;
  gap: 12px;
}

.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--wf-line);
  border-radius: 18px;
  background: var(--wf-white);
}

.city-card strong {
  display: block;
}

.status-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eafaf3;
  color: var(--wf-green);
  font-weight: 950;
  font-size: 0.8rem;
}

.status-pill.pending {
  background: var(--wf-purple-soft);
  color: var(--wf-purple-dark);
}


/* WF-AVAILABILITY-BLOCKS-START
   Availability section controls.
   Edit this block when you want to adjust the city cards, breathing icons, grid columns, or section spacing.
*/
.availability-section {
  background: linear-gradient(180deg, #fbf8ff 0%, #f8f3ff 100%);
  padding: 90px 0 96px;
}

.availability-section .section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.availability-section h2 {
  font-size: clamp(2.35rem, 4.2vw, 3.7rem);
}

.availability-section .lead {
  max-width: 820px;
}

.eyebrow-plain {
  border: 0;
  background: transparent;
  color: var(--wf-purple);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-plain::before {
  display: none;
}

.eyebrow-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-purple);
  flex: 0 0 auto;
}

.eyebrow-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.city-block {
  flex: 0 1 calc((100% - 54px) / 4);
  max-width: calc((100% - 54px) / 4);
  min-height: 154px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  padding: 24px 18px 20px;
  border: 1px solid var(--wf-line);
  border-radius: 16px;
  background: var(--wf-white);
  box-shadow: 0 10px 28px rgba(54, 16, 121, 0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.city-block:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 24, 242, 0.22);
  box-shadow: 0 18px 42px rgba(54, 16, 121, 0.1);
}

.city-pin {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9b74ff;
  line-height: 1;
}

.city-pin svg {
  width: 100%;
  height: 100%;
  display: block;
}

.city-block h3 {
  font-size: 1.03rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.city-block p {
  color: #9a93a7;
  font-size: 0.85rem;
  line-height: 1.15;
}

.city-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.city-status.live {
  background: #e9fbf4;
  color: var(--wf-green);
}

.city-status.soon {
  background: var(--wf-purple-soft);
  color: var(--wf-purple);
}

.breathing-dot,
.soon-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.breathing-dot {
  background: var(--wf-green);
  animation: wf-breathe 1.8s ease-in-out infinite;
}

.soon-dot {
  background: var(--wf-purple);
}

@keyframes wf-breathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 111, 0.34);
  }
  50% {
    transform: scale(1.25);
    box-shadow: 0 0 0 7px rgba(22, 163, 111, 0);
  }
}

@media (max-width: 1040px) {
  .city-block {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 620px) {
  .availability-section {
    padding: 64px 0 70px;
  }

  .availability-section .section-head {
    margin-bottom: 28px;
  }

  .city-grid {
    gap: 12px;
  }

  .city-block {
    flex-basis: 100%;
    max-width: 100%;
    min-height: 132px;
    padding: 20px 16px 18px;
  }
}
/* WF-AVAILABILITY-BLOCKS-END */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* WF-UTILITIES-END */

/* WF-RESPONSIVE-START */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 0;
  }

  .nav-links > [data-nav-links] {
    gap: 0;
  }

  .nav-links a {
    padding-inline: 9px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 520px;
  }

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

@media (max-width: 880px) {
  .section {
    padding: 70px 0;
  }

  .wf-about-story-section {
    padding-top: 60px;
    padding-bottom: 32px;
  }

  .wf-about-journey-section {
    padding-top: 46px;
  }

  .wf-journey-layout {
    grid-template-columns: 1fr;
  }

  .wf-journey-media {
    height: 320px;
  }

  .header-actions .btn-light {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--wf-line);
    border-radius: 26px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--wf-shadow);
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > [data-nav-links] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    padding-top: 58px;
  }

  .media-card {
    min-height: 0;
    display: grid;
    place-items: center;
  }

  .media-card img {
    width: auto;
    height: auto;
    min-height: 0;
    max-width: 100%;
    max-height: min(70vh, 620px);
    object-fit: contain;
    object-position: center;
  }

  .hero-phone {
    bottom: 0;
    max-height: calc(100% - 24px);
    object-fit: contain;
    object-position: center bottom;
  }

  .media-card.inner-page-hero-media {
    height: 300px;
  }

  .media-card.inner-page-hero-media img {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .card.media-card.inner-page-content-media {
    height: 300px;
  }

  .card.media-card.inner-page-content-media img {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .hero-stats,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wf-legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .wf-legal-toc { position: static; }
  .wf-legal-toc ol { max-height: none; columns: 2; column-gap: 32px; }

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

  .cta-grid .btn-group {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--wf-max));
  }

  .section {
    padding: 56px 0;
  }

  .wf-about-story-card {
    padding: 24px;
  }

  .wf-about-journey-head {
    margin-bottom: 36px;
  }

  .wf-journey-timeline {
    gap: 30px;
  }

  .wf-journey-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
  }

  .wf-journey-timeline::before {
    left: 22px;
  }

  .wf-journey-icon {
    width: 38px;
    height: 38px;
  }

  .wf-journey-media {
    height: 240px;
    padding: 14px;
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-links {
    inset: 68px 12px auto 12px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .btn-group,
  .badge-row {
    width: 100%;
  }

  .btn-group .btn,
  .store-badge {
    width: 100%;
  }

  .store-badge img {
    height: auto;
    width: 100%;
    max-width: 245px;
  }

  .hero-card {
    min-height: 510px;
    border-radius: 32px;
  }

  .hero-visual-map {
    inset: 18px 16px auto;
    height: 230px;
  }

  .hero-phone {
    right: 14px;
    width: 58%;
  }

  .media-card.inner-page-hero-media {
    height: 240px;
    padding: 12px;
  }

  .card.media-card.inner-page-content-media {
    height: 220px;
    padding: 12px;
  }

  .hero-ride {
    left: 14px;
    right: 14px;
    bottom: 16px;
    width: auto;
  }

  .card,
  .cta-band {
    padding: 22px;
    border-radius: 24px;
  }

  .app-panel {
    min-height: 420px;
    border-radius: 28px;
  }

  .app-panel img {
    max-height: 380px;
  }

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

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom .wf-footer-bottom-left,
  .footer-bottom .wf-footer-bottom-center,
  .footer-bottom .wf-footer-bottom-right {
    grid-column: 1;
    justify-self: center;
    justify-content: center;
    text-align: center;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .wf-legal-hero { padding: 54px 0 42px; }
  .wf-legal-page { padding: 42px 0 64px; }
  .wf-legal-toc ol { columns: 1; }
}
/* WF-RESPONSIVE-END */

/* WF-HERO-DESKTOP-CONTROLS-START
   Main homepage hero controls.
   Edit this block when you want to adjust:
   1) hero headline size,
   2) right-side hero app visual size,
   3) space between hero and the For Riders / For Drivers cards.
*/
@media (min-width: 1025px) {
  .hero {
    /* top space | left/right | bottom space */
    padding: 62px 0 78px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
    gap: 34px;
  }

  .hero-copy {
    gap: 15px;
  }

  .hero .eyebrow {
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .hero h1,
  .wf-team-hero h1,
  .wf-legal-hero h1 {
    font-size: clamp(2.75rem, 3.55vw, 3.9rem);
    line-height: 0.99;
    max-width: 600px;
  }

  .hero .lead {
    max-width: 550px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-card {
    width: 100%;
    max-width: 550px;
    min-height: 425px;
    margin-left: auto;
    border-radius: 34px;
  }

  .hero-card::before {
    inset: 18px;
    border-radius: 24px;
  }

  .hero-visual-map {
    inset: 24px 24px auto 24px;
    height: 182px;
    border-radius: 22px;
  }

  .hero-phone {
    right: 28px;
    bottom: -4px;
    width: min(45%, 200px);
  }

  .hero-ride {
    left: 18px;
    bottom: 18px;
    width: min(56%, 280px);
    padding: 13px;
    border-radius: 20px;
  }

  .hero-stats {
    margin-top: 2px;
    gap: 10px;
  }

  .stat-card {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .stat-card strong {
    font-size: 1.16rem;
  }

  .stat-card span {
    font-size: 0.84rem;
  }
}

@media (min-width: 1025px) and (max-width: 1240px) {
  .hero {
    padding-bottom: 70px;
  }

  .hero h1,
  .wf-team-hero h1,
  .wf-legal-hero h1 {
    font-size: clamp(2.55rem, 3.35vw, 3.55rem);
    max-width: 560px;
  }

  .hero-card {
    max-width: 520px;
    min-height: 410px;
  }

  .hero-phone {
    width: min(43%, 190px);
  }
}

@media (max-width: 880px) {
  .hero {
    padding-bottom: 66px;
  }
}
/* WF-HERO-DESKTOP-CONTROLS-END */


/* WF-HERO-STATS-CONTROLS-START
   Hero stat cards controls.
   Edit this block when you want to adjust the 24/7 Operations, 4.9 Community rating, or 20+ Drivers cards.
   This block only affects the small stat cards under the hero buttons.
*/
.stat-card-icon {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-align: left;
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 13px;
  background: var(--wf-purple-soft);
  color: var(--wf-purple);
  flex: 0 0 auto;
}

.stat-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-icon-star {
  color: #ffc107;
  font-size: 1.05rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(89, 61, 0, 0.08);
}

.stat-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  justify-items: start;
}

.stat-copy strong,
.rating-row strong {
  display: block;
  color: var(--wf-ink);
  font-size: 1.26rem;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.stat-label {
  display: block;
  color: var(--wf-muted);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.15;
  white-space: nowrap;
}

.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  max-width: 100%;
}

.rating-stars {
  --rating-fill: 98%;
  display: inline-block;
  width: 57px;
  overflow: hidden;
  color: transparent;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
  background: linear-gradient(90deg, #ffc107 0 var(--rating-fill), #ded7ec var(--rating-fill) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

@media (min-width: 1025px) {
  .stat-card-icon {
    padding: 15px 14px;
    border-radius: 18px;
  }

  .stat-copy strong,
  .rating-row strong {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.82rem;
  }
}

@media (max-width: 680px) {
  .stat-card-icon {
    grid-template-columns: 32px 1fr;
  }

  .stat-label {
    white-space: normal;
  }
}
/* WF-HERO-STATS-CONTROLS-END */


/* WF-PHASE-11.1-INNER-PAGE-PARITY-FIXES-START
   Keeps homepage app download, contact form, and FAQ page aligned with the original HTML template.
   Added after Phase 11 performance work so image width/height attributes cannot change the design.
*/
.wf-section-app-download .cta-grid,
.wf-app-download-section .cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.wf-section-app-download .wf-app-download-phone,
.wf-app-download-section .wf-app-download-phone {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: min(34vw, 260px) !important;
  max-height: var(--wf-app-phone-height, 300px) !important;
  justify-self: end;
}

.wf-contact-form-split {
  align-items: center;
}

.wf-contact-form-card {
  padding: 26px;
}

.wf-contact-form-card .btn {
  width: 100%;
  justify-content: center;
}

.wf-contact-form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.wf-contact-form-card .form-status {
  min-height: 1px;
}

.wf-faq-general-section .grid-2,
.wf-faq-rider-driver-section .grid-2 {
  align-items: start;
}

.wf-faq-column .section-head {
  max-width: none;
  margin-bottom: 28px;
}

.wf-faq-column .section-head h2 {
  margin-top: 20px;
}

@media (max-width: 860px) {
  .wf-section-app-download .cta-grid,
  .wf-app-download-section .cta-grid {
    grid-template-columns: 1fr;
  }

  .wf-section-app-download .wf-app-download-phone,
  .wf-app-download-section .wf-app-download-phone {
    justify-self: center;
    max-width: min(72vw, 220px) !important;
    max-height: 280px !important;
  }

  .wf-contact-form-card {
    padding: 22px;
  }
}
/* WF-PHASE-11.1-INNER-PAGE-PARITY-FIXES-END */

/* WF-PHASE-11.2-ICON-AND-ABOUT-PARITY-CSS-START
   Adds icon-only social links in the footer and restores the About values card on the right side.
   Safe visual patch only: no homepage hero, SEO, or builder behavior is changed here.
*/
.icon-badge svg,
.stat-icon svg,
.wf-footer-social-icon svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}

.icon-badge svg > rect:first-child,
.stat-icon svg > rect:first-child,
.city-pin svg > rect:first-child,
.icon-badge svg > rect:first-child + circle,
.stat-icon svg > rect:first-child + circle,
.city-pin svg > rect:first-child + circle,
.icon-badge svg > circle:first-child[opacity],
.stat-icon svg > circle:first-child[opacity],
.city-pin svg > circle:first-child[opacity] {
  display: none;
}

.icon-badge svg,
.stat-icon svg,
.city-pin svg,
.wf-footer-social-icon svg {
  overflow: visible;
}

.wf-footer-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-inline: auto;
}

.footer-brand .wf-footer-social-links {
  justify-content: flex-start;
  gap: 9px;
  margin-inline: 0;
  margin-top: -4px;
}

.wf-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 9px;
  color: rgba(255,255,255,.86);
  background: rgba(93,23,235,.22);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.footer-brand .wf-footer-social-link {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 8px;
}

.footer-brand .wf-footer-social-icon {
  width: 16px;
  height: 16px;
}

.wf-footer-social-link:hover {
  transform: translateY(-2px);
  background: #5D17EB;
  border-color: #5D17EB;
  color: var(--wf-white);
}

.wf-footer-social-link:has(.wf-footer-social-label) {
  width: auto;
  padding: 0 14px;
}

.wf-footer-social-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.wf-footer-social-label {
  font-weight: 850;
  font-size: .92rem;
}

.wf-values-card {
  padding: 30px;
  align-self: center;
}

.wf-values-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
}

.wf-values-card .check-list {
  gap: 14px;
}

@media (max-width: 1040px) {
  .wf-values-card {
    padding: 26px;
  }
}
/* WF-PHASE-11.2-ICON-AND-ABOUT-PARITY-CSS-END */

/* WF-PHASE-11.2-INLINE-ICON-SHORTCODE-CSS-START */
.wf-inline-icon {
  display: inline-grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.18em;
  color: currentColor;
}

.wf-inline-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}
/* WF-PHASE-11.2-INLINE-ICON-SHORTCODE-CSS-END */

/* Anchor: WF-PHASE-11.3-ELEMENTOR-HEADER-FOOTER-BUILDER-CSS-START */
.wf-elementor-builder-area {
    position: relative;
    z-index: 30;
    width: 100%;
}
.wf-elementor-builder-header {
    background: rgba(251, 248, 255, .92);
    border-bottom: 1px solid var(--line);
}
.wf-elementor-builder-footer {
    background: var(--ink);
    color: #fff;
}
.wf-builder-starter-header {
    background: rgba(251, 248, 255, .92);
    border-bottom: 1px solid var(--line);
}
.wf-builder-starter-inner {
    width: calc(100% - 48px);
    max-width: var(--max-width);
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.wf-builder-starter .brand,
.wf-shortcode-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
}
.wf-builder-starter-footer {
    padding: 62px max(24px, calc((100vw - var(--max-width)) / 2)) 28px;
    background: var(--ink);
    color: #fff;
}
.wf-builder-starter-footer .brand,
.wf-builder-starter-footer .brand-name {
    color: #fff;
}
.wf-builder-starter-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
    gap: 32px;
}
.wf-shortcode-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}
.wf-shortcode-footer-bottom {
    margin-top: 46px;
}
.wf-elementor-builder-area .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.wf-elementor-builder-area .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 800;
    padding: 12px 14px;
    border-radius: 999px;
}
.wf-elementor-builder-area .nav-links a:hover,
.wf-elementor-builder-area .nav-links a.active {
    color: var(--primary-dark);
    background: var(--primary-soft);
}
@media (max-width: 900px) {
    .wf-builder-starter-inner,
    .wf-builder-starter-footer-grid,
    .wf-shortcode-footer-columns {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
    .wf-elementor-builder-area .nav-links,
    .wf-elementor-builder-area .nav-links [data-nav-links] {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
    }
}
/* Anchor: WF-PHASE-11.3-ELEMENTOR-HEADER-FOOTER-BUILDER-CSS-END */
.wf-contact-honeypot {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
