/* =========================================================
   Student InfoX Hub — Global Stylesheet
   Sora (display) + DM Sans (body)
   Near-monochrome with Royal Blue as single accent
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --blue: #1E5EF3;
  --blue-light: #EEF3FF;
  --black: #0E0E0E;
  --ink: #111111;
  --body: #3D3D3D;
  --muted: #6B6B6B;
  --surface: #FAFAFA;
  --surface-alt: #F3F3F3;
  --white: #FFFFFF;
  --border: #E4E4E4;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-layout: 1120px;
  --max-text: 680px;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--ink); }

button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { color: var(--body); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: var(--body);
  max-width: var(--max-text);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-layout);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 104px 0;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.bg-surface     { background: var(--surface); }
.bg-surface-alt { background: var(--surface-alt); }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p  { color: var(--muted); font-size: 18px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out),
              backdrop-filter 0.35s var(--ease-out);
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-layout);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo img {
  height: 56px;
  width: auto;
  transition: opacity 0.35s var(--ease-out);
}

@media (max-width: 768px) {
  .nav-logo img { height: 48px; }
}

/* Two logos stacked: colored original for dark hero, darker version
   for the scrolled white nav. Toggle visibility on nav scroll state. */
.nav-logo { position: relative; }
.nav-logo .logo-dark  { position: absolute; top: 0; left: 0; opacity: 0; }

.nav-scrolled .nav-logo .logo-light { opacity: 0; }
.nav-scrolled .nav-logo .logo-dark  { opacity: 1; position: static; }
.nav-scrolled .nav-logo .logo-light { position: absolute; top: 0; left: 0; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav-scrolled .nav-links a { color: var(--ink); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-scrolled .nav-links a.active { color: var(--blue); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 22px;
  padding: 10px;
  line-height: 1;
  transition: color 0.25s ease;
}

.nav-scrolled .nav-toggle { color: var(--ink); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s var(--ease-out);
    border-bottom: 1px solid var(--border);
  }

  .nav-open .nav-links {
    max-height: 520px;
  }

  .nav-links li {
    width: 100%;
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 28px;
    color: var(--ink);
    width: 100%;
  }

  .nav-links a::after { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 28px 100px;
  text-align: center;
}

.hero.mini {
  min-height: 420px;
  padding: 180px 28px 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .line { display: block; }

.hero .sub {
  font-size: 19px;
  color: #B9B9BD;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero .sub.on-mini { margin-bottom: 0; }

.hero .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  font-size: 14px;
  color: var(--muted);
}

.hero-stats .dot { margin: 0 10px; opacity: 0.5; }

/* Pill label at top of hero */
.pill-label {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 26px;
}

/* =========================================================
   FLAG MARQUEE (hero, replaces pill-label)
   ========================================================= */
.flag-marquee {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 30px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

.flag-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: flag-scroll 40s linear infinite;
  will-change: transform;
}

.flag-marquee:hover .flag-track { animation-play-state: paused; }

.flag {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

@keyframes flag-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .flag-track { animation: none; }
}

@media (max-width: 560px) {
  .flag { font-size: 26px; }
  .flag-track { gap: 18px; }
}

/* =========================================================
   SOCIAL FEED STRIP (homepage)
   ========================================================= */
.social-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  margin-top: 36px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.social-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: social-scroll 45s linear infinite;
  will-change: transform;
}

.social-strip:hover .social-track { animation-play-state: paused; }

.social-card {
  flex-shrink: 0;
  width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
  color: var(--ink);
  text-decoration: none;
}

.social-card .sc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.social-card .sc-head i {
  font-size: 22px;
  color: var(--blue);
}

.social-card .sc-body {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
  min-height: 66px;
}

.social-card .sc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
}

@keyframes social-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .social-track { animation: none; }
}

@media (max-width: 560px) {
  .social-card { width: 230px; padding: 18px; }
}

/* Decorative floating circles in hero */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.055;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.hero-circle.c1 {
  width: 520px;
  height: 520px;
  top: -200px;
  right: -180px;
}

.hero-circle.c2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: -140px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-circle.c1 { animation: float 8s ease-in-out infinite; }
  .hero-circle.c2 { animation: float 11s ease-in-out infinite; animation-delay: -5s; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}

@media (max-width: 768px) {
  .hero { min-height: 88vh; padding: 140px 24px 72px; }
  .hero.mini { min-height: 360px; padding: 140px 24px 60px; }
  .hero .sub { font-size: 17px; }
  .hero-circle.c1 { width: 340px; height: 340px; top: -120px; right: -120px; }
  .hero-circle.c2 { width: 260px; height: 260px; bottom: -100px; left: -100px; }
}

/* =========================================================
   HERO LOAD ANIMATION (staggered)
   ========================================================= */
.hero .pill-label,
.hero h1 .line,
.hero .sub,
.hero .cta-row,
.hero-stats {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.hero-stats { transform: none; transition: opacity 0.5s var(--ease-out); }

body.loaded .hero .pill-label    { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
body.loaded .hero h1 .line-1     { opacity: 1; transform: translateY(0); transition-delay: 150ms; }
body.loaded .hero h1 .line-2     { opacity: 1; transform: translateY(0); transition-delay: 280ms; }
body.loaded .hero .sub           { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
body.loaded .hero .cta-row       { opacity: 1; transform: translateY(0); transition-delay: 520ms; }
body.loaded .hero .hero-stats    { opacity: 1; transition-delay: 650ms; }

@media (prefers-reduced-motion: reduce) {
  .hero .pill-label,
  .hero h1 .line,
  .hero .sub,
  .hero .cta-row,
  .hero-stats { opacity: 1; transform: none; transition: none; }
  .hero-circle { animation: none; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

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

/* Grid stagger via nth-child of children */
.reveal.stagger > *:nth-child(1) { transition-delay: 0ms; }
.reveal.stagger > *:nth-child(2) { transition-delay: 90ms; }
.reveal.stagger > *:nth-child(3) { transition-delay: 180ms; }
.reveal.stagger > *:nth-child(4) { transition-delay: 270ms; }
.reveal.stagger > *:nth-child(5) { transition-delay: 360ms; }
.reveal.stagger > *:nth-child(6) { transition-delay: 450ms; }

.reveal.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.stagger > * {
    opacity: 1; transform: none; transition: none;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  border-radius: 10px;
  border: 1.5px solid transparent;
  text-decoration: none;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease,
              filter 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { filter: brightness(1.07); color: var(--white); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost-white:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-lg { height: 56px; padding: 0 30px; font-size: 16px; }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.09);
}

.card .icon {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 16px;
}

.card .icon.lg { font-size: 32px; }

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

.card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.card .more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}
.card .more:hover { color: var(--ink); }

.card-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.price-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
}

/* =========================================================
   STEPPER (vertical, on homepage)
   ========================================================= */
.stepper { list-style: none; position: relative; }

.stepper::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 0;
  border-left: 2px dashed #D6DEF2;
}

.stepper li {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 14px 0;
}

.stepper .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease-bounce), opacity 0.4s var(--ease-bounce);
}

.stepper .body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.stepper .body p { color: var(--muted); font-size: 15px; margin: 0; }

/* Bounce-in on reveal */
.reveal .stepper .num { transform: scale(0.5); opacity: 0; }
.reveal.is-visible .stepper li:nth-child(1) .num { transform: scale(1); opacity: 1; transition-delay: 0ms; }
.reveal.is-visible .stepper li:nth-child(2) .num { transform: scale(1); opacity: 1; transition-delay: 110ms; }
.reveal.is-visible .stepper li:nth-child(3) .num { transform: scale(1); opacity: 1; transition-delay: 220ms; }
.reveal.is-visible .stepper li:nth-child(4) .num { transform: scale(1); opacity: 1; transition-delay: 330ms; }
.reveal.is-visible .stepper li:nth-child(5) .num { transform: scale(1); opacity: 1; transition-delay: 440ms; }

/* =========================================================
   HORIZONTAL 5-STEP FLOW
   ========================================================= */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: flow;
}

.flow-step { text-align: center; }

.flow-step .num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.4s var(--ease-bounce), opacity 0.4s var(--ease-bounce);
}

.flow-step p {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}

.reveal .flow-step .num { transform: scale(0.5); opacity: 0; }
.reveal.is-visible .flow-step:nth-child(1) .num { transform: scale(1); opacity: 1; transition-delay: 0ms; }
.reveal.is-visible .flow-step:nth-child(2) .num { transform: scale(1); opacity: 1; transition-delay: 110ms; }
.reveal.is-visible .flow-step:nth-child(3) .num { transform: scale(1); opacity: 1; transition-delay: 220ms; }
.reveal.is-visible .flow-step:nth-child(4) .num { transform: scale(1); opacity: 1; transition-delay: 330ms; }
.reveal.is-visible .flow-step:nth-child(5) .num { transform: scale(1); opacity: 1; transition-delay: 440ms; }

@media (max-width: 768px) {
  .flow { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   CHECKLIST
   ========================================================= */
.checklist { list-style: none; margin: 20px 0; }

.checklist li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 16px;
  color: var(--body);
}

.checklist li::before {
  content: "\f00c"; /* Font Awesome check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--blue);
  font-size: 13px;
}

/* =========================================================
   CALLOUT
   ========================================================= */
.callout {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  margin: 28px 0;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.65;
}

.callout strong { color: var(--ink); }

/* =========================================================
   SERVICE SECTION (services.html)
   ========================================================= */
.service-section { padding: 88px 0; }

.service-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.service-section h2 { margin-bottom: 16px; }

.service-section .price {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.service-section .price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

@media (max-width: 880px) {
  .service-section .wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* Package card pair */
.packages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}

.package {
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  text-align: center;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.package:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 94, 243, 0.15);
}

.package .qty {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package .amt {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 2px;
}

.package .note { font-size: 13px; color: var(--muted); }

@media (max-width: 560px) {
  .packages { grid-template-columns: 1fr; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 34px 28px 28px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 2px;
  left: 22px;
  font-family: 'Sora', serif;
  font-size: 72px;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.12;
}

.testimonial p.quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.65;
  position: relative;
}

.testimonial .who {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* =========================================================
   PLATFORM PILLS
   ========================================================= */
.pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--blue);
  background: transparent;
  color: var(--blue);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pill i { font-size: 16px; }

.pill:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.03);
  text-decoration: none;
}

.pill-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 22px;
}

/* =========================================================
   FORM EMBED BLOCK
   ========================================================= */
.form-block { margin-bottom: 56px; }
.form-block h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-block p.desc { color: var(--muted); margin-bottom: 18px; font-size: 15.5px; }

.form-block iframe {
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: #B5B5BB;
  padding: 72px 28px 28px;
}

.footer-grid {
  max-width: var(--max-layout);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}

.footer-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}

.footer .tagline { color: var(--muted); font-size: 15px; max-width: 280px; }

.footer h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 10px; }

.footer a {
  color: var(--white);
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.footer a:hover { color: var(--blue); }

.footer .socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.footer .socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #242428;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer .socials a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.footer .contact-line { margin-bottom: 8px; font-size: 14.5px; color: var(--white); }

.footer-bottom {
  max-width: var(--max-layout);
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid #1E1E1E;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   UTIL
   ========================================================= */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.maxw-640 { max-width: 640px; }
.maxw-720 { max-width: 720px; }
