/* ============================================================
   Slate Studio — Warm Light Brand System
   ============================================================ */

/* ── Brand Color Tokens ── */
:root {
  /* Primary palette */
  --navy:          #023047;
  --yellow:        #ffba2f;
  --light-yellow:  #fdc74c;
  --banana:        #fff8ea;

  /* Purple accent family — reserved for UI accents only, NOT headlines */
  --purple:        #637af5;
  --light-purple:  #bbc8ff;
  --bright-blue:   #6b88ef;
  --soft-purple-bg:#f1f5ff;

  /* Neutrals */
  --accessible-grey: #9b9b9b;
  --white:          #ffffff;
  --black:          #000000;

  /* Portfolio overlay */
  --portfolio-overlay: rgba(27,40,107,0.63);

  /* Typography */
  --font: 'Poppins', 'Arial', sans-serif;

  /* Spacing & shape */
  --radius:    8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* Yellow right-edge ribbon */
body::after {
  content: "";
  position: fixed;
  right: 0;
  top: 0;
  width: 6px;
  height: 100vh;
  background: var(--yellow);
  z-index: 9999;
}

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

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

body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, em { font-style: normal; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-style: normal;
}

/* H1: large statement headline — light yellow on dark, navy on light */
h1 { font-size: clamp(3rem, 7vw, 4.5rem); line-height: 1.05; letter-spacing: -1.5px; color: var(--navy); }

.section-navy h1,
#process h1,
.cta-banner h1 { color: var(--light-yellow); }

/* H2/H3: ALWAYS navy — purple is reserved for accents/UI only */
h2 { font-size: clamp(2.5rem, 4.5vw, 3.5rem); line-height: 1.15; letter-spacing: -1px; }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.75rem); line-height: 1.2; }
h4 { font-size: 18px; font-weight: 700; }

/* Body text — navy (grey only for disabled/secondary) */
p  { font-size: 16px; line-height: 1.6; color: var(--navy); font-weight: 400; }

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--bright-blue); }

/* Kickers / eyebrow labels — yellow, NOT purple or pink */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

/* Gold accent underline */
.accent-line {
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: var(--light-yellow);
  margin: 1.5rem 0;
}

.section-title { margin-bottom: 0.75rem; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--navy);
  max-width: 540px;
  line-height: 1.75;
}

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--light-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,186,47,0.35);
  color: var(--navy);
}

.btn-secondary {
  background: var(--purple);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--bright-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99,122,245,0.3);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.78rem; }
.btn-lg { padding: 1.05rem 2.6rem; font-size: 0.92rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(2,48,71,0.08);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(2,48,71,0.08); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo-mark {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Yellow accent dot on logo */
.nav-logo::before {
  content: '';
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--purple); }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.6rem;
  /* Yellow filled pill — not outlined */
  background: var(--light-yellow);
  color: var(--navy);
  border: none;
}
.nav-cta:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(253,199,76,0.35);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; }
  .nav-mobile-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(2,48,71,0.08);
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    font-size: 1.05rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
  }
  .nav-mobile-cta { margin-top: 0.5rem; width: 100%; justify-content: center; }
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Decorative top ribbon */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: var(--soft-purple-bg);
  border: 1px solid var(--light-purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--purple);
}

/* Hero 2-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-top: 6rem;
}

.hero-left {
  padding-top: 0.5rem;
}

.hero-brand-statement {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 5rem;
  }
  .hero-brand-statement { font-size: 3rem; }
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  /* H1: 800 weight / 58.5px / light-yellow */
}

.hero-title em {
  font-style: normal;
  display: block;
  color: var(--navy);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--accessible-grey);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-right-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.9rem;
}

.hero-right-body {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 380px;
}

.hero-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 2px solid var(--light-yellow);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}
.hero-read-more:hover {
  background: var(--light-yellow);
  color: var(--navy);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(2,48,71,0.1);
}

.hero-stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--accessible-grey);
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(2,48,71,0.1);
}

/* ── Showreel Video ── */
.showreel-wrap {
  margin-top: 4rem;
}

.showreel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accessible-grey);
  margin-bottom: 1rem;
}

.showreel-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--soft-purple-bg);
  box-shadow: 0 8px 40px rgba(99,122,245,0.15);
  max-width: 800px;
}

.showreel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lottie container */
.lottie-hero {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 120px;
  height: 120px;
  pointer-events: none;
}

/* ── Sections ── */
.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

/* Alternating backgrounds */
.section-soft-purple { background: var(--soft-purple-bg); }
.section-cream       { background: var(--banana); }
.section-white       { background: var(--white); }
.section-navy        { background: var(--navy); }

/* ── Portfolio ── */
.portfolio-section { background: var(--white); }

.portfolio-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.portfolio-tag-pink {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.portfolio-section-title {
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}

.portfolio-subtitle {
  font-size: 1rem;
  color: var(--accessible-grey);
  /* No italic */
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--soft-purple-bg);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(99,122,245,0.18);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Purple overlay on hover */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(99,122,245,0.88);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-overlay-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-purple);
  margin-bottom: 0.5rem;
}

.portfolio-overlay-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.portfolio-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ── Clients ── */
.clients {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: var(--white);
  border-top: 1px solid rgba(2,48,71,0.08);
  border-bottom: 1px solid rgba(2,48,71,0.08);
}

.clients-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.clients-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accessible-grey);
  white-space: nowrap;
}

.clients-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.client-logo {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.45;
  letter-spacing: -0.01em;
  transition: opacity var(--transition);
  user-select: none;
}
.client-logo:hover { opacity: 1; }

.client-logo img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) opacity(0.45);
  transition: filter var(--transition);
}
.client-logo img:hover { filter: brightness(0) opacity(0.8); }

/* ── Pricing ── */
.pricing { background: var(--white); }

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-tag-pink {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.pricing-section-title {
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.pricing-card {
  padding: 2.75rem;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(2,48,71,0.08);
  background: var(--white);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  border-color: var(--light-purple);
  box-shadow: 0 8px 40px rgba(99,122,245,0.12);
}

.pricing-card.featured {
  background: var(--banana);
  border: 2px solid var(--yellow);
  box-shadow: 0 8px 40px rgba(253,199,76,0.2);
}

.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.1rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accessible-grey);
  margin-bottom: 1rem;
}

.pricing-tier-popular {
  color: var(--light-yellow);
  font-size: 0.65rem;
  font-weight: 800;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accessible-grey);
  margin-top: 0.15rem;
}

.pricing-duration {
  font-size: 0.82rem;
  color: var(--accessible-grey);
  margin-bottom: 1.75rem;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: rgba(2,48,71,0.08);
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.5;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--soft-purple-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.pricing-feature-icon svg {
  width: 12px; height: 12px;
  color: var(--purple);
}

.pricing-cta { width: 100%; justify-content: center; }

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

/* ── Process / Steps ── */
.process {
  background: var(--purple);
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.process .eyebrow { color: var(--light-yellow); }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,0.65); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.process-step {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition);
}
.process-step:hover {
  background: rgba(255,255,255,0.14);
}

.process-step-lottie {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--light-yellow);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Testimonials ── */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(2,48,71,0.08);
  background: var(--white);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: var(--light-purple);
  box-shadow: 0 8px 40px rgba(99,122,245,0.1);
}

.testimonial-quote-mark {
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-size: 5rem;
  color: var(--light-yellow);
  line-height: 1;
  pointer-events: none;
  font-weight: 800;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 16px; height: 16px;
  color: var(--yellow);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--soft-purple-bg);
  border: 2px solid var(--light-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--purple);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--accessible-grey);
  margin-top: 0.15rem;
}

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

/* ── About ── */
.about { background: var(--banana); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-no-juniors {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(255,186,47,0.12);
  border-left: 3px solid var(--yellow);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.75rem !important;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-value {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(2,48,71,0.08);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.about-value:hover {
  border-color: var(--light-purple);
  box-shadow: 0 4px 24px rgba(99,122,245,0.1);
}

.about-value-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* 100% stat gets yellow treatment */
.about-value-number.stat-highlight { color: var(--yellow); }

.about-value-label {
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 500px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ── CTA Banner ── */
.cta-banner {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner .eyebrow { color: var(--light-purple); margin-bottom: 1rem; }

.cta-banner h2 { color: var(--white); }
.cta-banner h2 em { color: var(--light-yellow); }

.cta-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
}

/* Yellow dot on footer logo */
.footer-logo::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-email {
  font-size: 0.82rem;
}
.footer-email a {
  color: rgba(255,186,47,0.8);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-email a:hover {
  color: var(--yellow);
}
.footer-copy a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-copy a:hover {
  color: rgba(255,255,255,0.8);
}

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.floating-cta-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,186,47,0.4);
  transition: all var(--transition);
  position: relative;
}

.floating-cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(255,186,47,0.5);
  background: var(--yellow);
}

.floating-cta-btn svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

/* Label INSIDE the circle — use ::after pseudo-element */
.floating-cta-label {
  display: none;
}

/* Lottie inside floating CTA */
.floating-cta-lottie {
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
}

/* ── Decorative SVG illustrations ── */
.svg-deco {
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
}

/* ── Animations ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fade-up 0.65s cubic-bezier(.4,0,.2,1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--light-purple); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ── Text selection ── */
::selection {
  background: var(--light-purple);
  color: var(--navy);
}