:root {
  --bg: #0a0e14;
  --card-bg: #121821;
  --text: #e9edf2;
  --text-muted: #c7ced6;
  --accent: #ecc94b;
  --hr: rgba(255, 255, 255, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* Subtle modern dot pattern, fading out towards the bottom */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, rgba(0, 0, 0, 0.6) 45%, transparent 80%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, rgba(0, 0, 0, 0.6) 45%, transparent 80%);
}

/* Warm accent glow behind the heading */
body::after {
  content: "";
  position: fixed;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 620px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(236, 201, 75, 0.10), transparent 70%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 104px 24px 140px;
}

.container {
  max-width: 760px;
  margin: 0 auto;
}

/* ---- Header ---- */
.brand {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  margin-bottom: 40px;
}

.title {
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.title .accent {
  color: var(--accent);
}

/* ---- Intro text ---- */
.intro p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.intro strong {
  color: var(--text);
  font-weight: 600;
}

.cta-line {
  margin-top: 48px !important;
  margin-bottom: 10px !important;
}

.cta-link {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.cta-link:hover {
  color: var(--accent);
}

/* ---- Testimonials ---- */
.testimonials {
  margin-top: 88px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.card--right {
  /* photo sits on the right via DOM order */
}

.card__photo {
  flex: 0 0 auto;
}

.card__photo img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%; /* default: focus on the face, not the chest */
  display: block;
  background: #1c242f;
}

/* Per-person framing so every head sits at the same height in the circle */
.card__photo img.photo--remon { object-position: 50% 14%; }
.card__photo img.photo--teon  { object-position: 50% 6%; }
.card__photo img.photo--kevin { object-position: 50% 8%; }

.card__body {
  flex: 1 1 auto;
}

.card blockquote {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 400;
}

.card hr {
  border: none;
  border-top: 1px solid var(--hr);
  margin: 24px 0 18px;
}

.card__name {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .page {
    padding: 40px 20px 80px;
  }

  .card {
    flex-direction: column;
    text-align: left;
    padding: 28px;
    gap: 24px;
  }

  .card--right {
    flex-direction: column-reverse;
  }

  .card__photo img {
    width: 104px;
    height: 104px;
  }

  .intro p {
    font-size: 1.05rem;
  }
}
