/* ═══════════════════════════════════════════
   CLIENTS PAGE
═══════════════════════════════════════════ */
:root {
  --accent: #6FBEF0;
  --ink: #0E0E0E;
  --muted: #5b5b62;
  --line: rgba(14, 14, 14, .08);
  --shadow: 0 30px 80px -30px rgba(14, 14, 14, .25);
}

.clients-page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.clients-page section {
  padding: 120px 0;
  position: relative;
}

.clients-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.clients-page h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ── HERO ─────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 170px 0 110px;
  background: #0E0E0E;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 190, 240, .22), transparent 70%);
  filter: blur(50px);
  animation: cliFloat 14s ease-in-out infinite;
}

@keyframes cliFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(40px); }
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 14px 0 18px;
  position: relative;
  z-index: 2;
}

.page-hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.page-hero p {
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  border-radius: 40px;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: cliPulse 2s infinite;
}

@keyframes cliPulse {
  50% { opacity: .4; }
}

/* ── RATING BAR ───────────────────────────── */
.rating-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 50px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: 780px;
  flex-wrap: wrap;
}

.rb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rb .n {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--accent);
}

.rb .l {
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

/* ── CLIENT CARDS ─────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.client {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s, border-color .5s;
  display: flex;
  flex-direction: column;
}

.client:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.client-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.client:hover .client-photo img {
  transform: scale(1.08);
}

.country-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: rgba(14, 14, 14, .78);
  backdrop-filter: blur(12px);
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.country-tag svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.car-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  color: #0E0E0E;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.client-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cb-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0E0E0E);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.cb-name {
  font-weight: 700;
  font-size: 15px;
}

.cb-loc {
  font-size: 12.5px;
  color: var(--muted);
}

.stars {
  display: flex;
  gap: 2px;
  color: #f5b500;
  font-size: 15px;
}

.client-quote {
  font-size: 14.5px;
  color: #333;
  line-height: 1.65;
  flex: 1;
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin: 6px 0 16px;
}

.client-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
}

.client-meta .verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.client-meta svg {
  width: 14px;
  height: 14px;
}

/* ── MAP ──────────────────────────────────── */
.map-section {
  background: #fafafa;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  background: linear-gradient(160deg, #0E0E0E, #1a1a1a);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: #fff;
  padding: 40px;
}

.map-visual svg.map {
  width: 100%;
  height: auto;
  opacity: .55;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(111, 190, 240, .25);
  animation: cliPing 2.5s infinite;
}

@keyframes cliPing {
  0%, 100% { box-shadow: 0 0 0 4px rgba(111, 190, 240, .25); }
  50%      { box-shadow: 0 0 0 10px rgba(111, 190, 240, .05); }
}

.map-text h2 {
  text-align: left;
}

.map-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.cc {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  transition: all .3s;
}

.cc:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.cc svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* ── CTA ──────────────────────────────────── */
.cta {
  background: #0E0E0E;
  color: #fff;
  text-align: center;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ── REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1000px) {
  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .map-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .clients-page section {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}