
:root {
  --pink:       #e6007e;
  --blue:       #009fe3;
  --teal:       #27cfc3;
  --grad:       linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark:       #0d0d0d;
  --dark-600:   #1a1a1a;
  --dark-400:   #2e2e2e;
  --grey-500:   #676767;
  --grey-400:   #888888;
  --grey-100:   #e0e0e0;
  --white:      #ffffff;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --grid-max:    2000px;
  --grid-margin: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--grey-100);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   NEON BLUR ORBS
   ═══════════════════════════════════════════════════════════ */

.neon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.neon-orb--1 {
  width: clamp(350px, 45vw, 800px);
  height: clamp(350px, 45vw, 800px);
  background: radial-gradient(circle, rgba(230,0,126,0.3) 0%, rgba(230,0,126,0.1) 40%, transparent 70%);
  animation: orbDrift1 14s ease-in-out infinite;
}

.neon-orb--2 {
  width: clamp(250px, 30vw, 500px);
  height: clamp(250px, 30vw, 500px);
  background: radial-gradient(circle, rgba(0,159,227,0.25) 0%, rgba(0,159,227,0.08) 40%, transparent 70%);
  animation: orbDrift2 18s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(60px, -80px) scale(1.15); }
  50%  { transform: translate(-40px, 40px) scale(0.9); }
  75%  { transform: translate(80px, 20px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-50px, 60px) scale(1.1); }
  50%  { transform: translate(70px, -30px) scale(0.95); }
  75%  { transform: translate(-30px, -50px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */

.testimonials {
  position: relative;
  width: 100%;
  overflow: clip;
  padding: clamp(80px, 10vw, 140px) 0;
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-margin);
}

/* ─── SECTION HEADER ──────────────────────────────────── */

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

.tm-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--grad);
  flex-shrink: 0;
}

.tm-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 16px;
}

.tm-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--grey-400);
  line-height: 1.5;
}

/* ─── CARD GRID ──────────────────────────────────────── */

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

/* ─── CARD ───────────────────────────────────────────── */

.tm-card {
  position: relative;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: clamp(28px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s ease;
}

.tm-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.tm-card:hover::before {
  opacity: 1;
}

.tm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(230,0,126,0.08);
  border-color: transparent;
}

/* ─── DECORATIVE QUOTE MARK ─────────────────────────── */

.tm-card-deco {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

/* ─── STARS ──────────────────────────────────────────── */

.tm-stars {
  display: flex;
  gap: 3px;
}

.tm-star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tm-star svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── QUOTE ─────────────────────────────────────────── */

.tm-quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--grey-100);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ─── AUTHOR ────────────────────────────────────────── */

.tm-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.tm-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--grad);
  padding: 2px;
}

.tm-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.tm-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tm-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.tm-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-500);
  line-height: 1.4;
}

/* ─── FOOTER LINK ───────────────────────────────────── */

.tm-footer {
  margin-top: 48px;
  text-align: center;
}

.tm-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--pink);
  padding: 16px 36px;
  border-radius: 4px;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), outline-color 0.25s ease;
}

.tm-more-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,159,227,0.35), 0 0 20px rgba(0,159,227,0.25);
  outline-color: rgba(0,159,227,0.8);
}

.tm-more-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}

.tm-more-link:hover .tm-more-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.25s; }

/* ═══════════════════════════════════════════════════════════
   MOBILE SCROLL LAYOUT
   ═══════════════════════════════════════════════════════════ */

.tm-scroll-track {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1800px) {
  :root { --grid-margin: clamp(24px, 4.5vw, 72px); }
}

@media (max-width: 1600px) {
  .tm-grid { gap: 20px; }
}

@media (max-width: 1400px) {
  .tm-headline { font-size: clamp(2.2rem, 4.5vw, 4rem); }
  .tm-card { padding: clamp(24px, 2.2vw, 36px); }
}

@media (max-width: 1200px) {
  :root { --grid-margin: clamp(20px, 4vw, 56px); }
  .tm-grid { gap: 18px; }
  .tm-quote { font-size: 14px; }
}

@media (max-width: 1000px) {
  :root { --grid-margin: clamp(20px, 3.5vw, 40px); }

  .tm-grid { display: none; }

  .tm-scroll-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    cursor: grab;
  }

  .tm-scroll-track:active { cursor: grabbing; }
  .tm-scroll-track::-webkit-scrollbar { display: none; }

  .tm-scroll-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}

@media (max-width: 800px) {
  :root { --grid-margin: 24px; }
  .tm-headline { font-size: clamp(2rem, 7vw, 3rem); }
  .tm-scroll-card { flex: 0 0 85%; }
  .tm-header { margin-bottom: 40px; }
}

@media (max-width: 600px) {
  :root { --grid-margin: 20px; }
  .tm-scroll-card { flex: 0 0 calc(100% - 8px); }
  .tm-card { padding: 24px; gap: 16px; }
  .tm-card-deco { font-size: 48px; top: 12px; right: 16px; }
  .tm-quote { font-size: 14px; }
  .tm-name { font-size: 14px; }
  .tm-title { font-size: 12px; }
  .tm-avatar { width: 42px; height: 42px; }
  .tm-avatar-inner { font-size: 12px; }
  .tm-footer { margin-top: 32px; }
  .tm-more-link { font-size: 14px; }
}

@media (max-width: 400px) {
  :root { --grid-margin: 16px; }
  .tm-scroll-card { flex: 0 0 100%; }
  .tm-card { padding: 20px; }
  .tm-headline { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .tm-sub { font-size: 15px; }
}

