/* ==========================================================================
   Speakhouse.id — Design Tokens
   ========================================================================== */
:root {
  /* Brand core: blue + orange, warmed up with yellow */
  --blue-900: #0c2461;
  --blue-800: #12357d;
  --blue-700: #1a3fa0;
  --blue-600: #1e50c2;
  --blue-500: #2b64e0;
  --blue-100: #e3ecff;
  --blue-50:  #f2f6ff;

  --red-800: #8a3a05;
  --red-700: #b84f08;
  --red-600: #e2680f;
  --red-500: #ff8a3d;
  --red-100: #ffe4cc;
  --red-50:  #fff6ed;

  /* Playful accents — tints & shades of yellow and blue for variety */
  --yellow-400: #ffc531;
  --yellow-100: #fff3d6;
  --teal-400: #3d7ddb;
  --teal-100: #dbeafe;
  --purple-400: #d99a06;
  --orange-400: #ff9a3d;

  /* Neutrals */
  --ink-900: #16192b;
  --ink-700: #454a5f;
  --ink-500: #6b7086;
  --ink-300: #b6bad0;
  --ink-100: #eef0f8;
  --white: #ffffff;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(12, 36, 97, 0.08);
  --shadow-md: 0 12px 30px rgba(12, 36, 97, 0.12);
  --shadow-lg: 0 24px 60px rgba(12, 36, 97, 0.16);

  --container: 1180px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.25;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

/* ==========================================================================
   Utility
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-600);
  background: var(--red-50);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.eyebrow::before { content: "●"; color: var(--yellow-400); font-size: 10px; }

.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--ink-500);
  font-size: 17px;
  max-width: 640px;
}
.section-head {
  margin-bottom: 48px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

.text-gradient {
  background: linear-gradient(100deg, var(--blue-700), var(--red-600) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #1e50c2;
  color: var(--white);
  box-shadow: 0 10px 24px #1e50c2;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(226, 104, 15, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-100);
}
.btn-outline:hover { border-color: var(--blue-600); background: var(--blue-50); transform: translateY(-3px); }
.btn-light {
  background: var(--white);
  color: var(--blue-800);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blue-700);
  font-size: 15px;
}
.pill-link svg { transition: transform .25s ease; }
.pill-link:hover svg { transform: translateX(4px); }

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

.dot-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
/* .site-header--alt { background: lightyellow; } */
.site-header--alt { background: rgb(255 255 255 / 58%); }

.site-header--alt.is-scrolled { background: rgba(255,255,255,0.92) }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--ink-900);
}
.brand .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(26,63,160,0.3);
}
.brand .brand-mark svg { width: 22px; height: 22px; }
.brand span { color: var(--red-600); }
.brand-logo { height: 58px; width: auto; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red-600);
  transition: width .25s ease;
}
.nav-menu a:hover { color: var(--blue-700); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--red-600); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-50);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--blue-800);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 168px 0 100px;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 78%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 20px;
}
.hero-copy p {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
}
.avatar-stack span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 14px; color: var(--ink-500); }
.hero-trust-text strong { color: var(--ink-900); }

.hero-visual { position: relative; }
.hero-photo-card {
  position: relative;
  width: 100%;
  /* background: linear-gradient(155deg, var(--blue-800), var(--blue-600) 60%, var(--red-600)); */
  background:#1e50c2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 480px;
}
.hero-photo-card::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}
.hero-photo-card img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 18px 26px rgba(12, 36, 97, 0.35));
}
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
  z-index: 3;
  animation: floatY 4.5s ease-in-out infinite;
}
.hero-float.a { top: 8%; left: -8%; }
.hero-float.b { bottom: 10%; right: -6%; animation-delay: 1.4s; }
.hero-float .ic {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.hero-float.a .ic { background: var(--yellow-100); }
.hero-float.b .ic { background: var(--teal-100); }
.hero-float small { display: block; font-weight: 500; color: var(--ink-500); font-size: 11px; }

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

/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats-bar {
  /* background: linear-gradient(95deg, var(--blue-800), var(--blue-600) 55%, var(--red-600)); */
  background:#1e50c2;
  padding: 44px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; color: var(--white); }
.stat-item .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-item .num .accent { color: var(--yellow-400); }
.stat-item .label { font-size: 14px; opacity: 0.85; margin-top: 4px; }

/* ==========================================================================
   About brief (home)
   ========================================================================== */
.about-brief { padding: 110px 0; }
.about-brief .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual .blob {
  background: linear-gradient(155deg, var(--blue-100), var(--teal-100));
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
}
.about-visual .blob svg { width: 100%; }
.about-visual .badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-visual .badge .circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red-600);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
}
.about-visual .badge div strong { display: block; font-family: var(--font-head); color: var(--ink-900); }
.about-visual .badge div span { font-size: 13px; color: var(--ink-500); }

.about-copy ul { margin: 26px 0 32px; display: grid; gap: 14px; }
.about-copy ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--ink-900);
  font-size: 15px;
}
.about-copy ul li .check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-100);
  color: #1a3fa0;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   Programs
   ========================================================================== */
.programs { padding: 110px 0; background: var(--ink-100); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card-photo { width: 100%; height: auto; display: block; }
.program-card-body { padding: 26px 30px 30px; }
.program-card h3 { font-size: 20px; margin-bottom: 10px; }
.program-card p { color: var(--ink-500); font-size: 15px; margin-bottom: 20px; }
.program-card .tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.icon-blue { background: var(--blue-100); color: var(--blue-700); }
.icon-red { background: var(--red-100); color: var(--red-600); }
.icon-yellow { background: var(--yellow-100); color: #b8860b; }
.icon-teal { background: var(--teal-100); color: #2f66b8; }
.icon-purple { background: #fff2cf; color: var(--purple-400); }
.icon-orange { background: #ffe9d6; color: var(--orange-400); }

.tag-blue { background: var(--blue-100); color: var(--blue-700); }
.tag-red { background: var(--red-100); color: var(--red-600); }

.programs-more { text-align: center; margin-top: 46px; }

/* ==========================================================================
   Why us
   ========================================================================== */
.why-us { padding: 110px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 28px;
}
.why-item { display: flex; gap: 18px; }
.why-item .icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-item h4 { font-size: 17px; margin-bottom: 6px; }
.why-item p { font-size: 14.5px; color: var(--ink-500); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--blue-900), var(--blue-800));
  position: relative;
  overflow: hidden;
}
.testimonials .section-head h2,
.testimonials .section-head .section-sub { color: var(--white); }
.testimonials .section-head .section-sub { color: #c6d2f2; }

.testimonial-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
}
.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.testimonial-marquee::before { left: 0; background: linear-gradient(90deg, var(--blue-900), transparent); }
.testimonial-marquee::after { right: 0; background: linear-gradient(270deg, var(--blue-800), transparent); }

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 6px 0;
  animation: testimonial-scroll 52s linear infinite;
}
.testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }

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

.testimonial-card {
  flex: 0 0 380px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.testimonial-card .testi-photo {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 19px;
  box-shadow: 0 6px 14px rgba(12, 36, 97, 0.25);
  border: 3px solid var(--blue-50);
}
.testimonial-card .testi-body { min-width: 0; }
.testimonial-card .stars { color: var(--yellow-400); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p { color: var(--ink-700); font-size: 14.5px; margin-bottom: 16px; }
.testimonial-person strong { display: block; font-family: var(--font-head); color: var(--ink-900); font-size: 14.5px; }
.testimonial-person span { font-size: 12.5px; color: var(--ink-500); }

@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; overflow-x: auto; }
}

@media (max-width: 620px) {
  .testimonial-card { flex: 0 0 300px; padding: 22px; }
  .testimonial-marquee::before, .testimonial-marquee::after { width: 40px; }
}

/* ==========================================================================
   Client / partner logos
   ========================================================================== */
.clients-section { padding: 110px 0; }
.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: var(--ink-100);
  border-radius: var(--radius-md);
  padding: 30px 18px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.client-logo:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.client-logo .mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
}
.client-logo span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink-700);
}

@media (max-width: 992px) {
  .client-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { padding: 90px 0; }
.cta-banner .inner {
  /* background: linear-gradient(115deg, var(--red-600), var(--red-700) 55%, var(--blue-800)); */
  background:#1e50c2;  
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 2vw, 34px); max-width: 95%; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 10px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink-900);
  color: #b7bcd6;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand {
  display: inline-flex;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.footer-brand .brand-logo { height: 46px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease;
}
.social-row a:hover { background: var(--red-600); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul li a { font-size: 14.5px; transition: color .2s ease; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col .contact-line { display: flex; gap: 10px; font-size: 14.5px; margin-bottom: 14px; }
.footer-col .contact-line svg { flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
}
.footer-bottom a { color: #8890b0; }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  padding: 417px 0 90px;
  background-color: var(--blue-800);
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: clamp(32px, 4.2vw, 48px); margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25); }
.page-header p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25); }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-head);
  background: rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

/* ==========================================================================
   About page
   ========================================================================== */
.story-section { padding: 110px 0; }
.story-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-grid-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.story-grid-img .cell {
  border-radius: var(--radius-md);
  min-height: 150px;
  display: flex; align-items: center; justify-content: center;
}
.story-grid-img .cell:nth-child(1) { background: linear-gradient(155deg, var(--blue-700), #e3ecff); grid-row: span 2; min-height: 320px; }
.story-grid-img .cell:nth-child(2) { background: linear-gradient(155deg, var(--red-600), #ffc531); }
.story-grid-img .cell:nth-child(3) { background: linear-gradient(155deg, var(--yellow-400), var(--orange-400)); }
.story-grid-img svg { width: 46%; opacity: 0.9; }

.vm-section { padding: 0 0 110px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.vm-card.vision { background: linear-gradient(155deg, var(--blue-800), var(--blue-600)); }
.vm-card.mission { background: linear-gradient(155deg, var(--red-700), var(--red-500)); }
.vm-card .icon-box { background: rgba(255,255,255,0.16); width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.vm-card h3 { color: var(--white); margin-bottom: 12px; }
.vm-card p, .vm-card li { color: rgba(255,255,255,0.85); }
.vm-card ul { margin-top: 16px; display: grid; gap: 10px; }
.vm-card ul li { display: flex; gap: 10px; font-size: 14.5px; }

.values-section { padding: 0 0 110px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: var(--radius-md);
  background: var(--ink-100);
  transition: transform .3s ease, background .3s ease;
}
.value-card:hover { transform: translateY(-6px); background: var(--blue-50); }
.value-card .icon-box {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.value-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--ink-500); }

.team-section { padding: 0 0 110px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-photo {
  border-radius: var(--radius-md);
  height: 440px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.team-photo .initials {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.team-card h4 { font-size: 16.5px; margin-bottom: 4px; }
.team-card span { font-size: 13.5px; color: var(--red-600); font-weight: 700; font-family: var(--font-head); }

/* ==========================================================================
   Programs page — program explanation
   ========================================================================== */
.program-explain-list { display: flex; flex-direction: column; gap: 26px; }
.program-explain {
  background: var(--white);
  border: 2px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 38px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.program-explain:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); }
.pe-head { display: flex; align-items: center; gap: 20px; }
.pe-head .icon-box { width: 62px; height: 62px; border-radius: 16px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pe-head .pe-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.pe-head h3 { font-size: 23px; }
.pe-intro { color: var(--ink-500); font-size: 15px; margin: 18px 0 0; max-width: 760px; }
.pe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-100);
}
.pe-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue-700);
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-weight: 700;
}
.pe-col ul { display: grid; gap: 11px; }
.pe-col li { display: flex; gap: 9px; font-size: 14px; color: var(--ink-700); line-height: 1.5; }
.pe-col li .check { color: #1a3fa0; flex-shrink: 0; }

/* ==========================================================================
   Programs page — pricelist
   ========================================================================== */
.pricelist-section { padding: 110px 0; background: var(--ink-100); }
.price-group { margin-bottom: 54px; }
.price-group:last-child { margin-bottom: 0; }
.price-group-head { margin-bottom: 22px; }
.price-group-head h3 { font-size: 22px; margin-bottom: 4px; }
.price-group-head p { color: var(--ink-500); font-size: 14.5px; }
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-level-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue-100);
  color: var(--blue-700);
}
.price-card h4 { font-size: 16.5px; }
.price-card p { font-size: 13.5px; color: var(--ink-500); flex-grow: 1; }
.price-amount { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--ink-900); }
.price-amount span { font-size: 13px; font-weight: 600; color: var(--ink-500); }
.price-duration {
  font-size: 12.5px;
  color: var(--red-600);
  font-weight: 700;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-section { padding: 110px 0; background: var(--ink-100); }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
  text-align: left;
}
.faq-q .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item.open .faq-q .plus { background: var(--red-600); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 26px 22px; color: var(--ink-500); font-size: 14.5px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -70px;
  position: relative;
  z-index: 3;
  margin-bottom: 90px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.contact-info-card .icon-box {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--ink-500); }

.contact-main { padding: 0 0 110px; }
.contact-main .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form-wrap h2 { font-size: 28px; margin-bottom: 12px; }
.contact-form-wrap > p { color: var(--ink-500); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink-900); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--ink-100);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-900);
  background: var(--white);
  transition: border-color .25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue-500); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--ink-500); margin-top: 14px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--teal-100);
  color: #12357d;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  font-size: 14.5px;
  margin-top: 18px;
}
.form-success.show { display: flex; }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; }
.map-placeholder {
  background: linear-gradient(155deg, var(--blue-800), var(--blue-600) 55%, var(--red-600));
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 40px;
  gap: 14px;
  margin-bottom: 26px;
}
.map-placeholder .pin {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.contact-hours { background: var(--ink-100); border-radius: var(--radius-md); padding: 28px 30px; }
.contact-hours h4 { margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 700; color: var(--ink-900); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .hero .container,
  .about-brief .container,
  .story-section .container,
  .contact-main .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; width: 100%; max-width: 420px; margin: 0 auto; }
  .program-grid,
  .why-grid,
  .team-grid,
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { margin-top: -40px; }
  .pe-grid { grid-template-columns: 1fr; gap: 22px; }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open .nav-menu {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .cta-banner .inner { flex-direction: column; text-align: center; padding: 44px 30px; }
  .cta-banner .container, .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .program-grid,
  .why-grid,
  .team-grid,
  .contact-info-grid,
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .page-header { padding-top: 172px; }
  .hero-photo-card { min-height: 380px; }
  .hero-photo-card img { max-width: 260px; }
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  padding: 12px 22px 12px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; flex-shrink: 0; }
.whatsapp-label {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 9px rgba(37, 211, 102, 0.18); }
}

@media (max-width: 620px) {
  .whatsapp-float { bottom: 18px; right: 18px; padding: 10px 18px 10px 12px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-label { font-size: 13.5px; }
  .price-cards { grid-template-columns: 1fr; }
  .pe-head { align-items: flex-start; }
  .program-explain { padding: 28px 22px; }
}
