:root {
  --pink: #f472b6;
  --coral: #fb7185;
  --yellow: #fde68a;
  --mint: #6ee7b7;
  --sky: #93c5fd;
  --lavender: #c4b5fd;
  --navy: #1e3a5f;
  --ink: #1a1a2e;
  --cream: #fff8f5;
  --white: #ffffff;
  --font-primary: "Playfair Display", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255, 248, 245, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 114, 182, 0.15);
}

.nav-logo {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a,
.phone-only {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.phone-only:hover {
  color: var(--pink);
}

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--coral) !important;
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .phone-only {
    display: none;
  }
}

@media (max-width: 900px) {
  nav {
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }
  nav.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
}

/* .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 55% at 20% 40%,
      rgba(244, 114, 182, 0.25) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 30%,
      rgba(147, 197, 253, 0.22) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 55% 45% at 55% 80%,
      rgba(196, 181, 253, 0.2) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 85%,
      rgba(110, 231, 183, 0.18) 0%,
      transparent 70%
    ),
    var(--cream);
  animation: heroShift 12s ease-in-out infinite alternate;
} */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: saturate(0.7) brightness(0.45);
  transition: opacity 1.8s ease;
  animation: kenBurns 12s ease-in-out infinite alternate;
}
.hero-bg-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    #6767676b 0%,
    #a1a1a16b 50%,
    #6767676b 100%
  );
}

@keyframes kenBurns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.07) translate(-1%, -1%);
  }
}

@keyframes heroShift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(15deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-tag {
  display: inline-block;
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.35);
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  margin-top: 20px;
  color: var(--pink);
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-sub {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(244, 114, 182, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244, 114, 182, 0.4);
}

.btn-ghost {
  border: 1.5px solid var(--cream);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(244, 114, 182, 0.07);
}

/* floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--pink);
  top: -60px;
  left: -80px;
  animation-delay: 0s;
}
.blob-2 {
  width: 250px;
  height: 250px;
  background: var(--sky);
  top: 10%;
  right: -60px;
  animation-delay: -3s;
}
.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--mint);
  bottom: 5%;
  left: 15%;
  animation-delay: -6s;
}
.blob-4 {
  width: 180px;
  height: 180px;
  background: var(--yellow);
  bottom: 10%;
  right: 10%;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(15px, -20px) scale(1.04);
  }
}

/* logo circle */
.hero-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(244, 114, 182, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation:
    fadeUp 0.6s ease both,
    spinSlow 20s linear infinite;
  border: 2px solid rgba(244, 114, 182, 0.2);
  aspect-ratio: 1/1;
}

@media (max-width: 900px) {
  #hero {
    padding: 4rem 2rem;
  }
  .hero-logo-circle,
  .hero-logo-circle img {
    height: 100px;
    width: auto;
  }
}

@keyframes spinSlow {
  0% {
    box-shadow: 0 8px 40px rgba(244, 114, 182, 0.25);
  }
  50% {
    box-shadow: 0 8px 40px rgba(147, 197, 253, 0.35);
  }
  100% {
    box-shadow: 0 8px 40px rgba(244, 114, 182, 0.25);
  }
}

.logo-inner {
  width: 90px;
  height: 90px;
}

/* ─── SECTION SHARED ─── */
section {
  padding: 6rem 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--pink);
  font-style: italic;
  padding-right: 8px;
}

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

/* ─── WHAT IS ART THERAPY ─── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

/* Slideshow wrapper */
.art-slideshow {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
  animation: morphBlob 10s ease-in-out infinite;
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
  }
  33% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  66% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

.art-slide {
  position: absolute;
  inset: 0;
  max-width: 100vw;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-slide.active {
  opacity: 1;
}
.art-slide svg {
  width: 100%;
  height: 100%;
}

/* Dot indicators */
.slide-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
  flex-wrap: wrap;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}
.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 114, 182, 0.3);
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.slide-dot.active {
  background: var(--pink);
  transform: scale(1.4);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.art-highlight {
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.08),
    rgba(147, 197, 253, 0.08)
  );
  border-left: 3px solid var(--pink);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  margin: 1.5rem 0;
}

/* ─── WHY CORPORATE ─── */
/* #why {
  background: linear-gradient(
    160deg,
    rgba(244, 114, 182, 0.05),
    rgba(147, 197, 253, 0.05)
  );
  position: relative;
  overflow: hidden;
}

#why::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 114, 182, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(244, 114, 182, 0.1);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.08);
}
.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #6b7280;
  font-weight: 300;
} */

#why {
  background: var(--cream);
  overflow: hidden;
}

.why-punch {
  text-align: center;
  margin: 1.25rem 0 4rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-style: italic;
  color: var(--navy);
  min-height: 2rem;
}
.punch-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  margin: 0 0.15em;
}
.punch-word.show {
  opacity: 1;
  transform: translateY(0);
}
.punch-dot {
  color: var(--pink);
  font-style: normal;
  font-weight: 700;
}

.journey {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.journey::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink), var(--sky), var(--mint));
  transform: translateX(-50%);
}
.journey-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.journey-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--pink);
  font-family: "Playfair Display", serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(244, 114, 182, 0.2);
  justify-self: center;
}
.journey-node span {
  font-size: 0.55rem;
  opacity: 0.7;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.journey-step:nth-child(2) .journey-node {
  border-color: var(--coral);
  color: var(--coral);
  box-shadow: 0 4px 16px rgba(251, 113, 133, 0.2);
}
.journey-step:nth-child(3) .journey-node {
  border-color: #818cf8;
  color: #818cf8;
  box-shadow: 0 4px 16px rgba(129, 140, 248, 0.2);
}
.journey-step:nth-child(4) .journey-node {
  border-color: var(--mint);
  color: #0d9488;
  box-shadow: 0 4px 16px rgba(110, 231, 183, 0.25);
}

.journey-content,
.journey-img {
  padding: 0 1.75rem;
}
.journey-step:nth-child(odd) .journey-content {
  order: 1;
  text-align: right;
}
.journey-step:nth-child(odd) .journey-node {
  order: 2;
}
.journey-step:nth-child(odd) .journey-img {
  order: 3;
}
.journey-step:nth-child(even) .journey-img {
  order: 1;
}
.journey-step:nth-child(even) .journey-node {
  order: 2;
}
.journey-step:nth-child(even) .journey-content {
  order: 3;
  text-align: left;
}

.journey-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
  transition: transform 0.4s ease;
}
.journey-img img:hover {
  transform: scale(1.03);
}

.journey-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.35rem;
}
.journey-step:nth-child(2) .journey-label {
  color: var(--coral);
}
.journey-step:nth-child(3) .journey-label {
  color: #818cf8;
}
.journey-step:nth-child(4) .journey-label {
  color: #0d9488;
}
.journey-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.journey-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #6b7280;
  font-weight: 300;
}

@media (max-width: 700px) {
  .journey::before {
    left: 24px;
    transform: none;
  }
  .journey-step {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem 0;
    margin-bottom: 2.5rem;
  }
  .journey-step:nth-child(odd) .journey-content,
  .journey-step:nth-child(even) .journey-content {
    order: 2;
    text-align: left;
    padding: 0 0 0 0.5rem;
  }
  .journey-step:nth-child(odd) .journey-node,
  .journey-step:nth-child(even) .journey-node {
    order: 1;
    width: 42px;
    height: 42px;
    font-size: 0.65rem;
  }
  .journey-step:nth-child(odd) .journey-img,
  .journey-step:nth-child(even) .journey-img {
    order: 3;
    grid-column: 1/-1;
    padding: 0;
  }
}

/* ─── SEGMENTS ─── */
#segments {
  background: var(--white);
}

.seg-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}
.seg-tab {
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid rgba(30, 58, 95, 0.15);
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.seg-tab:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.seg-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.seg-panel {
  display: none;
}
.seg-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.seg-visual {
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.seg-visual.corp {
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.1),
    rgba(147, 197, 253, 0.1)
  );
}
.seg-visual.stud {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(59, 130, 246, 0.1)
  );
}
.seg-visual.fac {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(253, 230, 138, 0.15)
  );
}

.seg-icon {
  font-size: 3rem;
  line-height: 1;
}
.seg-visual h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
}
.seg-visual p {
  font-size: 0.88rem;
  color: #6b7280;
  font-weight: 300;
  line-height: 1.7;
}

.seg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.seg-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.28rem 0.8rem;
  border-radius: 50px;
  background: rgba(30, 58, 95, 0.07);
  color: var(--navy);
}

.seg-list {
  list-style: none;
  display: flex;
  margin-top: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
.seg-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}
.seg-list li span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.seg-list li span.dot.purple {
  background: #8b5cf6;
}
.seg-list li span.dot.green {
  background: #10b981;
}

.seg-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  max-width: fit-content;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.seg-cta:hover {
  transform: translateY(-2px);
}
.seg-cta.pink {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  box-shadow: 0 6px 20px rgba(244, 114, 182, 0.3);
}
.seg-cta.purple {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}
.seg-cta.green {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

@media (max-width: 860px) {
  .seg-panel.active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* seg image grid */
.seg-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.seg-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.seg-imgs img:first-child {
  grid-column: 1/3;
  grid-row: 1/2;
}
.seg-imgs img:hover {
  transform: scale(1.04);
}

/* update seg-visual to stack icon+text below images */
.seg-visual {
  gap: 0.75rem;
}
.seg-icon svg {
  display: block;
}
.seg-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.seg-head h3 {
  margin: 0;
}

/* ─── ORGANISATIONS SECTION (AUTOSCROLL LOGOS) ─── */
#organisations {
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.05) 0%,
    rgba(147, 197, 253, 0.05) 100%
  );
}

.logos-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.logos-carousel {
  display: flex;
  gap: 3rem;
  animation: autoScroll 20s linear infinite;
  width: max-content;
  padding: 0 3rem;
}

.logos-carousel:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 140px;
}

.logo-item img {
  max-height: 70px;
  max-width: 130px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.org-cta {
  margin-top: 2rem;
}

/* ─── MEET INJILA ─── */
#trainer {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#trainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 0% 50%,
      rgba(244, 114, 182, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 100% 30%,
      rgba(147, 197, 253, 0.1) 0%,
      transparent 60%
    );
}

.trainer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.trainer-photo-wrap {
  position: relative;
}

.trainer-photo-bg {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.2),
    rgba(196, 181, 253, 0.2)
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  animation: morphBlob 10s ease-in-out infinite;
}

.trainer-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  background: linear-gradient(
    180deg,
    rgba(244, 114, 182, 0.15),
    rgba(196, 181, 253, 0.2)
  );
}

.trainer-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(244, 114, 182, 0.4);
}

.trainer-badge strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.trainer-badge span {
  font-size: 0.7rem;
  opacity: 0.9;
}

.trainer-content .section-label {
  color: rgba(244, 114, 182, 0.8);
}
.trainer-content .section-title {
  color: var(--white);
}
.trainer-content .section-title em {
  color: var(--pink);
}

.trainer-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.trainer-highlight {
  border-left: 2px solid var(--pink);
  padding-left: 1rem;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400 !important;
  margin: 1.5rem 0 !important;
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─── EFFECTIVENESS ─── */
#effectiveness {
  background: var(--white);
}

.benefits-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 114, 182, 0.12);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  background: linear-gradient(135deg, rgba(255, 248, 245, 0.8), var(--white));
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(244, 114, 182, 0.1);
}

.benefit-num {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.benefit-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.benefit-card p {
  font-size: 0.82rem;
  color: #9ca3af;
  font-weight: 300;
}

/* ─── STATS ─── */
#stats {
  background: linear-gradient(135deg, #1e3a5f, #0f2440);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 70% at 10% 50%,
      rgba(244, 114, 182, 0.1),
      transparent
    ),
    radial-gradient(
      ellipse 40% 60% at 90% 50%,
      rgba(147, 197, 253, 0.08),
      transparent
    );
}

.stats-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.stats-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 3rem;
}
.stats-title em {
  color: var(--pink);
  font-style: italic;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.5;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--cream);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #be185d;
  margin-bottom: 0.6rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  text-align: center;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-wrap {
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ── CAROUSEL ── */
.carousel-outer {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.carousel-strip {
  display: flex;
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── CARD — exact site styles ── */
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(244, 114, 182, 0.1);
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  flex: 0 0 100%;
  width: 100%;
  margin: auto;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.07);
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-primary);
  font-size: 4rem;
  color: rgba(244, 114, 182, 0.15);
  line-height: 1;
}

/* ── PHOTO + TEXT layout inside card ── */
.testi-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: 320px;
}

.testi-photo-col {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(244, 114, 182, 0.12),
    rgba(192, 132, 252, 0.12)
  );
  flex-shrink: 0;
}

.testi-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.testi-text-col {
  padding: 0.25rem 0 0.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body);
  font-style: italic;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── ARROWS ── */
.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.arr-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244, 114, 182, 0.3);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  flex-shrink: 0;
}

.arr-btn:hover {
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(244, 114, 182, 0.35);
  transform: scale(1.08);
}

.arr-btn:hover svg {
  stroke: #fff;
}

.arr-btn svg {
  width: 17px;
  height: 17px;
  stroke: #be185d;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.arr-prev {
  transform: translateX(-22px);
}
.arr-next {
  transform: translateX(22px);
}
.arr-prev:hover {
  transform: translateX(-22px) scale(1.08);
}
.arr-next:hover {
  transform: translateX(22px) scale(1.08);
}

/* ── DOTS ── */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  height: 7px;
  width: 7px;
  border-radius: 4px;
  background: rgba(244, 114, 182, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s;
}

.dot.active {
  width: 24px;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
}
/* ─── CTA ─── */
#cta {
  background: var(--white);
  text-align: center;
  padding: 7rem 2rem;
}

.cta-box {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2440 100%);
  border-radius: 32px;
  padding: 5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 20% 30%,
      rgba(244, 114, 182, 0.15),
      transparent
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 70%,
      rgba(147, 197, 253, 0.1),
      transparent
    );
}

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

.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-title em {
  font-family: var(--font-primary);
  color: var(--pink);
  font-style: italic;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

@media (max-width: 900px) {
  .cta-box {
    padding: 3rem 2rem;
  }
  #cta {
    padding: 3rem 2rem;
  }
  .cta-btns {
    gap: 1.5rem;
  }
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
}

footer strong {
  color: var(--pink);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid,
  .trainer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .benefits-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .modal-overlay.open {
    overflow-y: scroll;
  }
}

@media (max-width: 860px) {
  .testi-inner {
    /* grid-template-columns: 20vw 1fr; */
    align-items: center;
    min-height: 25vw;
    display: block;
  }
  .testi-photo-col {
    display: none;
  }
  .testi-text-col {
    padding: 0.25rem 0;
  }
}

@media (max-width: 600px) {
  .benefits-wrap,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4rem 1.25rem;
  }
}

/* ─── DIALOG / MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 28px;
  padding: 3rem 2.75rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 32px 80px rgba(30, 58, 95, 0.18);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(244, 114, 182, 0.1);
  color: var(--pink);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(244, 114, 182, 0.2);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 1rem;
}
.modal-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.modal-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.modal-title em {
  color: var(--pink);
  font-style: normal;
}
.modal-sub {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: #9ca3af;
  font-weight: 300;
}

#form-error {
  display: none;
  color: red;
  border: 1px solid red;
  background: #ff000033;
  text-align: center;
  margin-bottom: 20px;
  padding: 5px;
}

.form-group {
  margin-bottom: 0.75rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(30, 58, 95, 0.12);
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: rgba(255, 248, 245, 0.5);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.12);
  background: var(--white);
}
.form-group textarea {
  height: 90px;
}
.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-submit {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(244, 114, 182, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(244, 114, 182, 0.4);
}
.modal-submit:active {
  transform: translateY(0);
}

/* Success state */
.modal-success {
  display: none;
  text-align: center;
  padding: 1rem 0 0.5rem;
}
.modal-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.modal-success h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.modal-success p {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}
@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 540px) {
  .modal {
    padding: 2rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
