/* ===========================
   B2C ORIGIN — STYLES.CSS
   Font: Montserrat | Bold Editorial
   =========================== */

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  background: #fff;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

address {
  font-style: normal;
}

/* ROOT */
:root {
  --black: #0a0a0a;
  --off-black: #1a1a1a;
  --mid: #555;
  --muted: #999;
  --border: #e4e4e4;
  --bg-light: #f7f7f5;
  --bg-dark: #0a0a0a;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-muted: rgba(34, 197, 94, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 12px 48px rgba(0, 0, 0, 0.12);
  --transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

/* UTILITIES */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-intro.center {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 64px;
}

.section-intro.left-align {
  max-width: 820px;
}

.section-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-h2 em {
  font-style: italic;
  color: var(--green-dark);
  font-weight: 900;
}

.section-p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 500;
}

.mt-btn {
  margin-top: 32px;
  display: inline-block;
}

/* [data-reveal] */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid var(--black);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: transparent;
  color: var(--black);
}

/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.logo-box {
  background: var(--black);
  color: #fff;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.logo-text {
  color: var(--black);
}

.nav-logo-img {
  height: 92px;
  width: auto;
  display: block;
  background: none;
  border-radius: 0;
  padding: 0;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
}

.f-logo {
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links li a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links li a:hover {
  color: var(--black);
  background: #f4f4f4;
}

.nav-btn {
  background: var(--black) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 9px 18px !important;
  font-weight: 800 !important;
}

.nav-btn:hover {
  background: #333 !important;
  color: #fff !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--black);
  line-height: 1;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.mobile-menu .mm-link {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  padding: 10px 32px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.mobile-menu .mm-link:hover {
  color: var(--green-dark);
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.90) 40%,
      rgba(255, 255, 255, 0.60) 60%,
      rgba(255, 255, 255, 0.08) 100%);
  z-index: 1;
}

.hero-inner-row {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 32px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 820px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: blink 2.2s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--black);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-h1 em {
  font-style: italic;
  color: var(--green-dark);
}

.hero-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-link {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.hero-link:hover {
  color: var(--black);
}

/* Hero Visual */
.hero-visual {
  flex: 0 0 380px;
}

.metric-card {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  color: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.mc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mc-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.mc-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -2px;
}

.mc-chart {
  margin-bottom: 18px;
}

.mc-chart svg {
  width: 100%;
  height: 80px;
}

.mc-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mc-metric-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 9px 12px;
  flex: 1;
  min-width: 80px;
}

.mci-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mci-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
}

.mci-val.up {
  color: var(--green);
}

.mci-val.down {
  color: #f87171;
}

/* ========================
   TICKER
   ======================== */
.ticker-wrap {
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.ticker-sep {
  color: var(--green) !important;
  font-size: 0.7rem !important;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========================
   PARTNERS CAROUSEL
   ======================== */
.partners-section {
  background: #fff;
  padding: 48px 0 52px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-header-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.partners-header {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.partners-divider {
  width: 48px;
  height: 1.5px;
  background: var(--border);
  margin: 0 auto;
}

/* Carousel track */
.partners-carousel-wrap {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.partners-carousel-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: partnerScroll 30s linear infinite;
}

.partners-carousel-wrap:hover .partners-carousel-track {
  animation-play-state: paused;
}

@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 36px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: #fafafa;
  transition: var(--transition);
  min-width: 180px;
  flex-shrink: 0;
}

.partner-logo-wrap:hover {
  border-color: #bbb;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.partner-logo {
  height: 72px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  filter: grayscale(40%) opacity(0.75);
  transition: filter 0.22s ease;
}

.partner-logo-wrap:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
}

/* ========================
   STATS BAND
   ======================== */
.stats-band {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.stat-num span {
  font-size: 0.6em;
  color: var(--green-dark);
  font-weight: 900;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ========================
   HOW WE HELP
   ======================== */
.hwh {
  background: var(--bg-light);
}

.hwh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hwh-card {
  padding: 36px 30px;
  background: #fff;
  transition: background-color 0.12s ease;
  position: relative;
}

.hwh-card:hover {
  background: #f0f0ee;
}

.hwh-num {
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hwh-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 18px;
  transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.hwh-card:hover .hwh-icon {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.hwh-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.hwh-card p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 500;
}

/* ========================
   RESULTS
   ======================== */
.results-section {
  background: #fff;
}

.results-section .section-intro.left-align .section-h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  max-width: 820px;
  text-transform: none;
  letter-spacing: -0.5px;
}

.result-showcase {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.rs-top {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
}

.rs-growth {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -3px;
}

.rs-growth-label {
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rs-chart {
  margin-bottom: 32px;
}

.rs-chart svg {
  width: 100%;
  height: 110px;
  display: block;
}

.rs-chart-labels {
  display: flex;
  justify-content: space-around;
  padding-top: 8px;
}

.rs-chart-labels span {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rs-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rs-metric.highlighted {
  background: var(--black);
  border-color: var(--black);
}

.rsm-label {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rs-metric.highlighted .rsm-label {
  color: rgba(255, 255, 255, 0.4);
}

.rsm-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1px;
}

.rs-metric.highlighted .rsm-val {
  color: var(--green);
}

.rsm-change {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rsm-change.pos {
  color: var(--green-dark);
}

.rsm-change.neg {
  color: #ef4444;
}

.rs-metric.highlighted .rsm-change {
  color: rgba(255, 255, 255, 0.45);
}

/* ========================
   APPROACH SECTION
   ======================== */
.approach-section {
  background: var(--bg-light);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.approach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}

.approach-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.approach-card--dark {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.approach-card--dark h3 {
  color: #fff !important;
}

.approach-card--dark p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.approach-card--accent {
  background: var(--green-muted);
  border-color: rgba(34, 197, 94, 0.3);
}

.approach-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.approach-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 500;
}

/* ========================
   RESULTS EDITORIAL
   ======================== */
.results-editorial {
  background: #fff;
}

.re-header {
  margin-bottom: 56px;
}

.re-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Featured block */
.re-featured {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: #fff;
  position: sticky;
  top: 100px;
}

.re-feat-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.re-feat-brand {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.re-feat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.re-feat-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 28px;
}

.re-feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.re-feat-pills span {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 50px;
  padding: 5px 14px;
}

/* Results list rows */
.re-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.re-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.re-row:first-child {
  border-top: 1px solid var(--border);
}

.re-row:hover {
  background: var(--bg-light);
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
  border-radius: 8px;
}

.re-row-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -1px;
  min-width: 90px;
  flex-shrink: 0;
}

.re-row-info {
  flex: 1;
}

.re-row-name {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.re-row-detail {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 500;
}

.re-row-tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials-section {
  background: #fff;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
}

.testi-stars {
  font-size: 1.1rem;
  color: #f59e0b;
  letter-spacing: 2px;
}

.testi-card blockquote {
  font-size: 0.92rem;
  color: var(--off-black);
  line-height: 1.75;
  font-style: normal;
  font-weight: 500;
  flex: 1;
}

.testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: var(--black);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author-row strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.testi-author-row span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

/* ========================
   WHY US
   ======================== */
.why-section {
  background: var(--bg-light);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.why-left {
  position: sticky;
  top: 100px;
}

.why-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.why-row:first-child {
  border-top: 1px solid var(--border);
}

.why-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--muted);
  flex-shrink: 0;
  width: 28px;
  letter-spacing: 1px;
  padding-top: 3px;
}

.why-content h4 {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.why-content p {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.72;
  font-weight: 500;
}

/* ========================
   PROCESS
   ======================== */
.process-section {
  background: #fff;
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.process-step {
  flex: 1;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.process-step p {
  flex: 1;
}

.process-step:hover {
  box-shadow: var(--shadow);
  background: #fff;
  transform: translateY(-3px);
}

.ps-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.process-step h4 {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.process-step p {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.72;
  font-weight: 500;
}

.process-arrow {
  font-size: 1.6rem;
  color: var(--border);
  align-self: center;
  flex-shrink: 0;
}

/* ========================
   FAQ
   ======================== */
.faq-section {
  background: var(--bg-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--black);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--green-dark);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--muted);
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--green-dark);
}

.faq-a {
  display: none;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  padding-bottom: 24px;
  font-weight: 500;
}

.faq-a.open {
  display: block;
}

/* ========================
   OFFICES
   ======================== */
.offices-section {
  background: #fff;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.office-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
}

.office-card:hover {
  box-shadow: var(--shadow);
}

.oc-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.oc-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.office-card address {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 500;
}

.oc-phone {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--black);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.oc-phone:hover {
  color: var(--green-dark);
}

/* ========================
   CTA / CONTACT
   ======================== */
.cta-section {
  background: var(--black);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
}

.cta-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.cta-sub {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 500;
}

.cta-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.check {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--off-black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-btn {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--black);
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 15px 24px;
  border-radius: 8px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.form-note {
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
  font-weight: 500;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: #080808;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: flex;
  gap: 56px;
  padding: 64px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  flex: 0 0 240px;
}

.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.8;
  font-weight: 500;
}

.footer-brand .logo-box {
  background: #fff;
  color: var(--black);
}

.footer-cols {
  display: flex;
  gap: 48px;
  flex: 1;
  justify-content: flex-end;
}

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li,
.footer-col a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-weight: 500;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  font-weight: 600;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ========================
   TOAST
   ======================== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 50px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.wa-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  flex-shrink: 0;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.wa-label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .wa-float {
    padding: 13px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }

  .wa-label {
    display: none;
  }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 960px) {
  .hero-inner-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 100px 24px 64px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
  }

  .metric-card {
    max-width: 480px;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: calc(50% - 12px);
  }

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

  .rs-metrics {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .re-featured {
    position: static;
  }

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

  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-left {
    position: static;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-left {
    position: static;
  }

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

  .cta-box {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    flex: none;
  }

  .footer-cols {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 32px;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .section-h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

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

  .rs-metrics {
    grid-template-columns: 1fr;
  }

  .mc-metrics {
    flex-direction: column;
  }

  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }

  .stat-item {
    min-width: unset;
  }

  .footer-cols {
    flex-direction: column;
    gap: 24px;
  }

  .footer-top {
    padding: 48px 0 36px;
  }
}