/* =========================================================
   Vpulse IT — Design System & Styles
   ========================================================= */

:root {
  --navy: #172033;
  --deep-navy: #101828;
  --teal: #12b8a6;
  --teal-dark: #0e9a8b;
  --teal-soft: rgba(18, 184, 166, 0.12);
  --btn: #03594e;
  --btn-hover: #047a6a;
  --yellow: #fbbf24;
  --yellow-soft: rgba(251, 191, 36, 0.18);
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #172033;
  --text-muted: #475467;
  --border: #e4e7ec;
  --border-soft: #f0f2f5;
  --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.04);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 16px 48px rgba(16, 24, 40, 0.12);
  --shadow-float: 0 20px 50px rgba(16, 24, 40, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-btn: 12px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --container: 1180px;
  --nav-h: 76px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.28s var(--ease);
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

/* Keep sticky course sidebar working (overflow-x:hidden can break sticky in some browsers) */
body:has(#course-detail-root),
body:has(#service-detail-root) {
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--space-7) 0;
}

.section--tight {
  padding: var(--space-6) 0;
}

.section--bg {
  background: var(--bg);
}

.section--mist {
  background: #f0f4f5;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-5);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-2);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
  margin-bottom: var(--space-2);
}

/* Yellow brush underline on final heading word */
.heading-mark {
  position: relative;
  display: inline;
  white-space: nowrap;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 14' preserveAspectRatio='none'%3E%3Cpath fill='%23FBBF24' d='M2.2 8.6c12.4-4.8 24.8 1.6 37.5-1.4 13.2-3.2 25.6 3.4 39 0.6 11.8-2.4 24.2 2.8 36.8-1.2 7.2-2.2 14.2 1.4 22.2-0.8l0.8 3.4c-9.2 1.8-17.2-1.4-25.2 0.6-12.8 3.2-25-2.6-37.6 0.2-12.8 2.8-25.4-3.8-38.4-0.4C24.6 11.2 13.4 6.2 2 10.4l0.2-1.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.34em;
  padding-bottom: 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__title .heading-mark,
.page-hero__title .heading-mark {
  background-size: 100% 0.3em;
  padding-bottom: 0.1em;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn--primary,
.btn--teal,
.btn--yellow {
  background: var(--btn);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(3, 89, 78, 0.28);
}

.btn--primary:hover,
.btn--teal:hover,
.btn--yellow:hover {
  background: var(--btn-hover);
  color: var(--white);
  filter: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(3, 89, 78, 0.35);
}

.btn--primary:active,
.btn--teal:active,
.btn--yellow:active {
  transform: translateY(0);
  background: #024a41;
  box-shadow: 0 2px 8px rgba(3, 89, 78, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(23, 32, 51, 0.18);
}

.btn--outline:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--navy);
  padding-inline: 1rem;
}

.btn--ghost:hover {
  color: var(--teal);
}

.btn--sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.btn__arrow {
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-3);
  flex-shrink: 0;
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.card__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--space-3);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
}

.card__link:hover {
  color: var(--teal-dark);
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.card:hover .card__link svg {
  transform: translateX(3px);
}

/* ---------- Top bar + Navigation ---------- */
.topbar {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  padding: 0.55rem 0;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.topbar__contact {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9375rem;
}

.topbar__contact svg,
.topbar__contact .footer-contact__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0;
  color: #fff;
  opacity: 1;
}

.topbar__contact a:hover {
  color: var(--teal);
}

.topbar__contact a:hover svg {
  color: var(--teal);
}

.topbar__social {
  display: flex;
  gap: 0.75rem;
}

.topbar__social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  opacity: 0.85;
}

.topbar__social a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
}

.topbar__social svg {
  width: 25px;
  height: 25px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--space-2);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
  line-height: 0;
}

.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--teal) 0%, #0d9488 100%);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(18, 184, 166, 0.35);
}

.logo__mark span {
  line-height: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--teal);
  background: var(--teal-soft);
}

.nav__link svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform var(--transition);
}

.nav__item:hover > .nav__link svg,
.nav__item.is-open > .nav__link svg {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition),
    visibility var(--transition);
  z-index: 100;
}

.nav__item:hover > .nav__dropdown,
.nav__item:focus-within > .nav__dropdown,
.nav__item.is-open > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav__dropdown a:hover {
  background: var(--bg);
  color: var(--teal);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav__search {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}

.nav__search:hover {
  background: var(--bg);
  color: var(--navy);
}

.nav__search svg {
  width: 18px;
  height: 18px;
}

.nav__auth {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.5rem;
  white-space: nowrap;
}

.nav__auth:hover {
  color: var(--teal);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  place-items: center;
  color: var(--navy);
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

.nav__toggle.is-active span {
  background: transparent;
}

.nav__toggle.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 720px;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--space-5) + 0.25rem) 0 5.5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.12) 42%,
    rgba(255, 255, 255, 0.05) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  padding-top: 0.75rem;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 0.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-sm);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--deep-navy);
  margin-bottom: var(--space-3);
}

.hero__title .accent {
  color: var(--teal);
  position: relative;
  display: inline;
}

.hero__title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.22em;
  background: var(--yellow-soft);
  border-radius: 4px;
  z-index: -1;
}

.hero__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: var(--space-4);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: var(--space-4);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.hero__trust-item .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero__trust-item .check svg {
  width: 12px;
  height: 12px;
}

/* Hero demo form — compact dark card */
.hero-form-card {
  position: relative;
  background: linear-gradient(160deg, #03594e 0%, #024038 55%, #012f2a 100%);
  border-radius: 22px;
  padding: 1.35rem 1.4rem 1.25rem;
  box-shadow:
    0 18px 40px rgba(3, 89, 78, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  width: 100%;
  max-width: 400px;
  justify-self: end;
  overflow: hidden;
  color: #fff;
}

.hero-form-card__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.28), transparent 70%);
  top: -70px;
  right: -50px;
  pointer-events: none;
}

.hero-form-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-form-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.hero-form-card__pill {
  flex-shrink: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--deep-navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-field {
  min-width: 0;
  width: 100%;
}

.hero-field input,
.hero-field select,
.hero-field--phone select,
.hero-field--phone input {
  width: 100%;
  height: 46px;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.875rem;
  outline: none;
  transition: background var(--transition), border-color var(--transition),
    box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.hero-field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.hero-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-opacity='0.7' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 1.85rem;
}

.hero-field select option {
  color: var(--deep-navy);
  background: #fff;
}

.hero-field input:focus,
.hero-field select:focus,
.hero-field--phone select:focus,
.hero-field--phone input:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(251, 191, 36, 0.65);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.hero-field--phone {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0.4rem;
}

.hero-field--phone select {
  padding-inline: 0.35rem 1.1rem;
  text-align: center;
  font-weight: 600;
  background-position: right 0.35rem center;
}

.hero-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 48px;
  margin-top: 0.2rem;
  border: none;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
  transition: transform var(--transition), box-shadow var(--transition),
    filter var(--transition);
}

.hero-form__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(251, 191, 36, 0.42);
}

.hero-form__submit:active {
  transform: translateY(0);
}

.hero-form__submit:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.hero-form__status {
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.hero-form__status:empty {
  display: none;
}

.hero-form__status.is-success {
  color: #86efac;
}

.hero-form__status.is-error {
  color: #fecaca;
}

/* ---------- Stats capsule (post-hero) ---------- */
.stats-band {
  background: var(--white);
  padding: 0 0 0.5rem;
  position: relative;
  z-index: 5;
  margin-top: -3.25rem;
}

.stats-capsule {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0.5rem 1rem;
  background: var(--deep-navy);
  color: var(--white);
  border-radius: 999px;
  padding: 1.65rem 2.75rem;
  box-shadow:
    0 14px 40px rgba(16, 24, 40, 0.18),
    0 4px 0 0 var(--yellow);
  position: relative;
}

.stats-capsule__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0.35rem 0.5rem;
}

.stats-capsule__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.12);
  color: var(--yellow);
}

.stats-capsule__icon svg {
  width: 28px;
  height: 28px;
}

.stats-capsule__value {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.stats-capsule__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.35;
}

.section--after-stats {
  padding-top: var(--space-5);
}

.section__eyebrow--pill {
  background: var(--teal-soft);
  border: 1px solid rgba(18, 184, 166, 0.28);
  color: var(--teal-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.8125rem;
}

/* Soft blob + dotted grid (Educeet-inspired) */
.section--decor {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.section--decor > .container {
  position: relative;
  z-index: 1;
}

.section-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.section-decor__blob {
  position: absolute;
  left: -12%;
  top: 8%;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(18, 184, 166, 0.28) 0%,
    rgba(18, 184, 166, 0.12) 38%,
    rgba(18, 184, 166, 0.04) 62%,
    transparent 72%
  );
  filter: blur(8px);
  animation: decor-blob-float 10s ease-in-out infinite;
  will-change: transform, opacity;
}

.section-decor__dots {
  position: absolute;
  right: 4%;
  top: 12%;
  width: 140px;
  height: 160px;
  background-image: radial-gradient(circle, #fbbf24 1.6px, transparent 1.8px);
  background-size: 18px 18px;
  background-repeat: repeat;
  opacity: 0.85;
  animation: decor-dots-drift 7s ease-in-out infinite;
  will-change: transform, opacity;
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

@keyframes decor-blob-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.95;
  }
  50% {
    transform: translate3d(18px, 22px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes decor-dots-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(-10px, 14px, 0);
    opacity: 1;
  }
}

.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--teal-soft);
}

/* ---------- Grids ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

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

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

/* Services section — textured bg + Educeet-style accents */
.section--services {
  position: relative;
  overflow: hidden;
  background: #f7f8fa;
}

.section--services > .container {
  position: relative;
  z-index: 1;
}

.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.services-bg__circle {
  position: absolute;
  left: -40px;
  top: 8%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.95;
  z-index: 1;
}

.services-bg__dots {
  position: absolute;
  left: 20px;
  top: 18%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(139, 92, 246, 0.55) 2px, transparent 2.2px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle, #000 45%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, #000 45%, transparent 72%);
  z-index: 2;
  animation: decor-dots-drift 10s ease-in-out infinite;
}

.section__eyebrow--yellow {
  background: rgba(251, 191, 36, 0.28);
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: #92400e;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.8125rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px 22px 18px 18px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 7px,
    rgba(255, 255, 255, 0.35) 7px,
    rgba(255, 255, 255, 0.35) 8px
  );
  opacity: 0.35;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

.btn--view-all {
  background: var(--yellow);
  color: var(--deep-navy);
  border-radius: 12px;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
}

.btn--view-all:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(251, 191, 36, 0.42);
  color: var(--deep-navy);
}

/* ---------- Icon color variants ---------- */
.icon-teal {
  background: var(--teal-soft);
  color: var(--teal);
}
.icon-yellow {
  background: var(--yellow-soft);
  color: #d97706;
}
.icon-navy {
  background: rgba(23, 32, 51, 0.08);
  color: var(--navy);
}
.icon-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}
.icon-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}
.icon-rose {
  background: rgba(244, 63, 94, 0.1);
  color: #e11d48;
}
.icon-orange {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

/* ---------- Why / Features ---------- */
.feature-card {
  text-align: left;
  height: 100%;
}

.feature-card .card__icon {
  width: 52px;
  height: 52px;
}

/* ---------- Training split ---------- */
.section--approach {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.section--approach > .container {
  position: relative;
  z-index: 1;
}

.approach-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.approach-decor__peach {
  position: absolute;
  left: -8%;
  top: -15%;
  width: min(520px, 58vw);
  height: min(420px, 48vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 186, 140, 0.55) 0%,
    rgba(255, 210, 170, 0.28) 35%,
    rgba(255, 230, 200, 0.1) 55%,
    transparent 72%
  );
  filter: blur(12px);
  animation: decor-blob-float 12s ease-in-out infinite;
}

.approach-decor__cyan {
  position: absolute;
  right: -6%;
  top: 10%;
  width: min(460px, 50vw);
  height: min(460px, 50vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 211, 252, 0.42) 0%,
    rgba(165, 243, 252, 0.22) 40%,
    transparent 70%
  );
  filter: blur(10px);
  animation: decor-blob-float 14s ease-in-out infinite reverse;
}

.approach-decor__waves {
  position: absolute;
  left: 6%;
  top: 12%;
  width: 72px;
  height: 48px;
  opacity: 0.85;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 50' fill='none'%3E%3Cpath d='M4 14c8-8 16 8 24 0s16 8 24 0 16 8 24 0' stroke='%23FBBF24' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M4 26c8-8 16 8 24 0s16 8 24 0 16 8 24 0' stroke='%23FBBF24' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M4 38c8-8 16 8 24 0s16 8 24 0 16 8 24 0' stroke='%23FBBF24' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  animation: decor-dots-drift 8s ease-in-out infinite;
}

.approach-decor__dots {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, rgba(18, 184, 166, 0.45) 1.4px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.55;
  animation: decor-dots-drift 9s ease-in-out infinite;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-5);
  align-items: center;
}

.split__visual {
  background: rgba(248, 250, 252, 0.88);
  border-radius: var(--radius);
  padding: var(--space-5);
  border: 1px solid rgba(228, 231, 236, 0.8);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.split__visual::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -18%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.35), transparent 70%);
  pointer-events: none;
}

.split__visual::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 10%;
  width: 72px;
  height: 72px;
  background-image: radial-gradient(circle, rgba(18, 184, 166, 0.35) 1.2px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.7;
  pointer-events: none;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: rgba(26, 182, 157, 0.1);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 182, 157, 0.1);
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition), background-color var(--transition);
}

.process-step:hover {
  transform: translateX(4px);
  background-color: rgba(26, 182, 157, 0.16);
  border-color: rgba(26, 182, 157, 0.22);
  box-shadow: 0 8px 20px rgba(26, 182, 157, 0.12);
}

.process-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  line-height: 1;
  min-width: 2rem;
}

.process-step__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--deep-navy);
}

.process-step__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.split__content .section__title {
  text-align: left;
  margin-bottom: var(--space-2);
}

.split__content .section__subtitle {
  text-align: left;
  margin-bottom: var(--space-4);
}

/* ---------- Categories ---------- */
.section--categories {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.section--categories > .container {
  position: relative;
  z-index: 1;
}

.categories-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.categories-decor__mint {
  position: absolute;
  left: -6%;
  top: 18%;
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(18, 184, 166, 0.28) 0%,
    rgba(167, 243, 208, 0.16) 40%,
    transparent 70%
  );
  filter: blur(8px);
  animation: decor-blob-float 11s ease-in-out infinite;
}

.categories-decor__confetti {
  position: absolute;
  right: 5%;
  top: 8%;
  width: 120px;
  height: 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 90' fill='none'%3E%3Cpath d='M18 22c8-2 14 4 10 10' stroke='%23F59E0B' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M48 12c6 4 6 12-1 14' stroke='%23FBBF24' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M78 20c8 0 12 8 6 14' stroke='%23F59E0B' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M28 48c10-1 12 8 4 12' stroke='%23FBBF24' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M62 42c7 3 8 11 0 14' stroke='%23F59E0B' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M92 40c8 2 10 10 2 14' stroke='%23FBBF24' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M42 68c8 2 10 8 2 11' stroke='%23F59E0B' stroke-width='4.5' stroke-linecap='round'/%3E%3Cpath d='M74 66c7 0 10 7 3 11' stroke='%23FBBF24' stroke-width='4.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  animation: decor-dots-drift 8s ease-in-out infinite;
}

.categories-decor__wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 28px;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='12' viewBox='0 0 60 12'%3E%3Cpath d='M0 8c5-6 10 6 15 0s10 6 15 0 10 6 15 0 10 6 15 0' fill='none' stroke='%23D6D3D1' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 60px 12px;
}

.category-card {
  text-align: center;
  padding: var(--space-4) var(--space-3);
  background: rgba(255, 255, 255, 0.92);
}

.category-card .card__icon {
  margin-inline: auto;
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.category-card .card__icon svg {
  width: 32px;
  height: 32px;
}

.category-card .card__text {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* ---------- Legacy full-bleed stats (unused on homepage) ---------- */
.stats {
  background: var(--deep-navy);
  color: var(--white);
  padding: var(--space-6) 0;
}

/* ---------- How it works ---------- */
.section--how {
  position: relative;
  overflow: hidden;
  background: #fdfcf7;
}

.section--how > .container {
  position: relative;
  z-index: 1;
}

.how-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.how-decor__glow {
  position: absolute;
  left: -8%;
  top: -12%;
  width: min(720px, 70vw);
  height: auto;
  max-height: 85%;
  object-fit: contain;
  object-position: left top;
  opacity: 0.95;
}

.how-decor__lines {
  position: absolute;
  right: -5%;
  top: -5%;
  width: min(780px, 75vw);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: right top;
  opacity: 0.9;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.how-steps__track {
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: rgba(18, 184, 166, 0.15);
  border-radius: 999px;
  z-index: 0;
  overflow: hidden;
  grid-column: 1 / -1;
  pointer-events: none;
}

.how-steps__progress {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--yellow));
  transform: scaleX(0);
  transform-origin: left center;
  transition: none;
}

.how-steps.is-playing .how-steps__progress {
  animation: how-progress 2.4s var(--ease) forwards;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(18px) scale(0.92);
}

.how-steps.is-playing .how-step {
  animation: how-step-in 0.55s var(--ease) forwards;
  animation-delay: calc(var(--step-i, 0) * 0.55s);
}

.how-steps.is-playing .how-step__num {
  animation: how-num-pop 0.55s var(--ease) forwards;
  animation-delay: calc(var(--step-i, 0) * 0.55s);
}

@keyframes how-progress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes how-step-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes how-num-pop {
  0% {
    box-shadow: 0 0 0 0 rgba(18, 184, 166, 0.15);
    border-color: rgba(18, 184, 166, 0.35);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(18, 184, 166, 0.12);
    border-color: var(--teal);
  }
  100% {
    box-shadow: 0 0 0 8px var(--teal-soft);
    border-color: var(--teal);
  }
}

.how-step__num {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--teal);
  box-shadow: 0 0 0 8px var(--teal-soft);
}

.how-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.how-step__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 220px;
  margin-inline: auto;
}

/* ---------- CTA bands ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d4a 55%, #163a3a 100%);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: var(--space-4);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(18, 184, 166, 0.25), transparent 70%);
  pointer-events: none;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-band__text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  position: relative;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  justify-content: flex-end;
}

.cta-final {
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: clamp(3rem, 6vw, 4.5rem) var(--space-4);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-final--brand {
  background: linear-gradient(135deg, #03594e 0%, #024a41 45%, #01352f 100%);
  border: none;
  box-shadow: 0 20px 50px rgba(3, 89, 78, 0.28);
  color: #fff;
}

.cta-final__waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cta-final--brand > *:not(.cta-final__waves) {
  position: relative;
  z-index: 1;
}

.cta-final--brand .section__title {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-final--brand .section__subtitle {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-4);
  max-width: 480px;
  margin-inline: auto;
}

.cta-final--brand .heading-mark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 14' preserveAspectRatio='none'%3E%3Cpath fill='%23FBBF24' d='M2.2 8.6c12.4-4.8 24.8 1.6 37.5-1.4 13.2-3.2 25.6 3.4 39 0.6 11.8-2.4 24.2 2.8 36.8-1.2 7.2-2.2 14.2 1.4 22.2-0.8l0.8 3.4c-9.2 1.8-17.2-1.4-25.2 0.6-12.8 3.2-25-2.6-37.6 0.2-12.8 2.8-25.4-3.8-38.4-0.4C24.6 11.2 13.4 6.2 2 10.4l0.2-1.8z'/%3E%3C/svg%3E");
}

.cta-final--brand .btn--yellow {
  background: var(--yellow);
  color: var(--deep-navy);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
}

.cta-final--brand .btn--yellow:hover {
  background: #f59e0b;
  color: var(--deep-navy);
  filter: none;
}

.cta-final .section__title {
  margin-bottom: 0.75rem;
}

.cta-final .section__subtitle {
  margin-bottom: var(--space-4);
  max-width: 480px;
  margin-inline: auto;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ---------- Testimonials ---------- */
.section--testimonials {
  position: relative;
  overflow: hidden;
  background: #f7f9fc;
}

.section--testimonials > .container {
  position: relative;
  z-index: 1;
}

.testimonials-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.testimonials-decor__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}

.testimonials-decor__glow {
  position: absolute;
  right: -8%;
  top: -10%;
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.28) 0%,
    rgba(125, 211, 252, 0.14) 45%,
    transparent 70%
  );
  filter: blur(6px);
  animation: decor-blob-float 12s ease-in-out infinite;
}

.testimonials-decor__dots {
  position: absolute;
  left: 4%;
  bottom: 12%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(251, 191, 36, 0.55) 1.6px, transparent 1.8px);
  background-size: 16px 16px;
  opacity: 0.7;
  mask-image: radial-gradient(circle, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 75%);
  animation: decor-dots-drift 9s ease-in-out infinite;
}

.testimonials-decor__quote {
  position: absolute;
  right: 7%;
  bottom: 18%;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(3, 89, 78, 0.08);
  opacity: 0.9;
}

.testimonials-decor__quote::before {
  content: "“";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: #03594e;
  opacity: 0.45;
  padding-top: 0.15em;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-3);
  flex: 1;
}

.testimonial-card__quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-soft);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #0d9488);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--deep-navy);
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- Blog ---------- */
.section--blog {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.section--blog > .container {
  position: relative;
  z-index: 1;
}

.blog-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blog-decor__svg {
  position: absolute;
  width: min(280px, 40vw);
  height: auto;
  animation: decor-blob-float 11s ease-in-out infinite;
}

.blog-decor__svg--left {
  left: -4%;
  top: 12%;
}

.blog-decor__svg--right {
  right: -3%;
  top: 8%;
  animation-direction: reverse;
  animation-duration: 13s;
}

.blog-decor__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  opacity: 0.7;
}

.blog-card {
  overflow: hidden;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(228, 231, 236, 0.9);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card__media {
  height: 180px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.blog-card:hover .blog-card__img {
  transform: scale(1.06);
}

.blog-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--teal-dark);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.blog-card__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card .card__title {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.blog-card .card__text {
  flex: 1;
}

/* ---------- Footer (Educeet-style pastel) ---------- */
.site-footer {
  position: relative;
  color: var(--deep-navy);
  padding: 0;
  margin-top: 0;
}

#get-started {
  position: relative;
  z-index: 2;
  margin-bottom: -3.5rem;
  padding-bottom: 0;
}

.footer-main {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3.25rem;
  background:
    radial-gradient(ellipse 50% 60% at 8% 40%, rgba(196, 181, 253, 0.45), transparent 60%),
    radial-gradient(ellipse 45% 55% at 50% 30%, rgba(254, 215, 170, 0.5), transparent 55%),
    radial-gradient(ellipse 50% 60% at 92% 55%, rgba(147, 197, 253, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 80%, rgba(251, 207, 232, 0.35), transparent 55%),
    linear-gradient(180deg, #f5f0ff 0%, #fff7ed 45%, #eff6ff 100%);
}

body:has(#get-started) .footer-main,
body:has(.cd-final) .footer-main {
  padding-top: 5.5rem;
}

.back-to-top {
  position: fixed;
  right: 1.35rem;
  bottom: 1.5rem;
  z-index: 1100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #03594e;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(3, 89, 78, 0.32);
  transition: transform var(--transition), background var(--transition),
    opacity var(--transition), visibility var(--transition);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-to-top:hover {
  background: #047a6a;
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.whatsapp-float {
  position: fixed;
  left: 1.35rem;
  bottom: 1.5rem;
  z-index: 1100;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.48);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.footer-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footer-decor__dots {
  position: absolute;
  left: 3%;
  top: 28%;
  width: 72px;
  height: 110px;
  background-image: radial-gradient(circle, #12b8a6 2px, transparent 2.2px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.footer-decor__burst {
  position: absolute;
  right: 2%;
  top: 18%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(148, 163, 184, 0.35) 1.4px, transparent 1.6px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle, #000 35%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, #000 35%, transparent 72%);
  opacity: 0.7;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.1fr;
  gap: var(--space-4);
  margin-bottom: 0;
}

.footer-brand .logo {
  color: var(--deep-navy);
  margin-bottom: var(--space-2);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-3);
  color: var(--text-muted);
}

.footer-brand__btn {
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--deep-navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #03594e;
}

.footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-menu__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #03594e;
  transition: transform var(--transition);
}

.footer-menu a:hover .footer-menu__icon {
  transform: translateX(2px);
}

.footer-contact {
  margin-bottom: 1.15rem;
  gap: 0.9rem;
}

.footer-contact li {
  font-size: 0.9rem;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-contact__icon,
.footer-contact > li > svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #03594e;
}

.footer-contact__label {
  display: block;
  font-weight: 700;
  color: var(--deep-navy);
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
  margin-right: 0;
}

.footer-contact a {
  color: var(--text-muted);
}

.footer-contact a:hover {
  color: #03594e;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(3, 89, 78, 0.08);
  color: var(--deep-navy);
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: #03594e;
  color: white;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.85);
  padding: 1.1rem 0;
  text-align: center;
  font-size: 0.875rem;
  border-top: none;
  display: block;
}

.footer-bottom__brand {
  color: var(--yellow);
  font-weight: 700;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 80% at 8% 30%, rgba(251, 191, 36, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 70% at 92% 55%, rgba(18, 184, 166, 0.12), transparent 58%),
    linear-gradient(135deg, #f7faf8 0%, #f3f7f5 45%, #eef6f4 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: none;
}

.page-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-hero__dots {
  position: absolute;
  left: 4%;
  top: 18%;
  width: 88px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(251, 191, 36, 0.7) 2px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: 0.7;
}

.page-hero__ring {
  position: absolute;
  right: 6%;
  top: 12%;
  width: min(280px, 36vw);
  height: min(280px, 36vw);
  border-radius: 50%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(251, 191, 36, 0.22) 0 4px,
    transparent 4px 10px
  );
  opacity: 0.55;
  animation: page-hero-ring 18s linear infinite;
}

@keyframes page-hero-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.page-hero__content {
  min-width: 0;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-hero__desc {
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.page-hero .section__eyebrow {
  margin-bottom: 0.65rem;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #03594e;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  margin: 0;
  box-shadow: 0 8px 20px rgba(3, 89, 78, 0.22);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb__sep {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}

.breadcrumb__sep svg {
  width: 14px;
  height: 14px;
}

.breadcrumb__current {
  color: #fff;
}

.page-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.page-hero__stage {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 248, 0.88));
  border: 1px solid rgba(3, 89, 78, 0.1);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.page-hero__stage-glow {
  position: absolute;
  inset: auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.45;
}

.page-hero__stage-glow--one {
  left: -20px;
  top: -20px;
  background: rgba(18, 184, 166, 0.45);
}

.page-hero__stage-glow--two {
  right: -10px;
  bottom: -30px;
  background: rgba(251, 191, 36, 0.4);
}

.page-hero__icon {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.14);
}

.page-hero__icon svg {
  width: 30px;
  height: 30px;
}

.page-hero__icon--a {
  left: 12%;
  top: 18%;
  background: linear-gradient(145deg, #12b8a6, #03594e);
  animation: page-hero-float 4.5s ease-in-out infinite;
}

.page-hero__icon--b {
  right: 14%;
  top: 22%;
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  animation: page-hero-float 5.2s ease-in-out infinite 0.4s;
}

.page-hero__icon--c {
  left: 22%;
  bottom: 16%;
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
  animation: page-hero-float 4.8s ease-in-out infinite 0.8s;
}

.page-hero__icon--d {
  right: 18%;
  bottom: 20%;
  background: linear-gradient(145deg, #8b5cf6, #6d28d9);
  animation: page-hero-float 5.5s ease-in-out infinite 1.1s;
}

.page-hero__orbit {
  position: absolute;
  inset: 18%;
  border: 1.5px dashed rgba(3, 89, 78, 0.18);
  border-radius: 50%;
  animation: page-hero-orbit 22s linear infinite;
}

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

@keyframes page-hero-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__ring,
  .page-hero__orbit,
  .page-hero__icon {
    animation: none;
  }
}

/* ---------- Forms ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas:
    "intro ."
    "info form";
  column-gap: var(--space-5);
  row-gap: 1.5rem;
  align-items: start;
}

.contact-intro {
  grid-area: intro;
}

.contact-info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-info__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(18, 184, 166, 0.12);
  color: #03594e;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--deep-navy);
}

.contact-info__item a {
  color: var(--teal);
  font-weight: 600;
}

.contact-info__item a:hover {
  color: #03594e;
}

.contact-info__item span:not(.contact-info__icon) {
  color: var(--text-muted);
}

.contact-form {
  grid-area: form;
  background: rgba(18, 184, 166, 0.08);
  border: 1px solid rgba(18, 184, 166, 0.22);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: none;
  height: fit-content;
  align-self: start;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  background: rgba(255, 255, 255, 0.85);
}

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

.contact-form .form-field {
  margin-bottom: 1rem;
}

.contact-form textarea {
  min-height: 80px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 0.25rem;
}

/* ---------- Search modal ---------- */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(16, 24, 40, 0.55);
  display: grid;
  place-items: start center;
  padding: 12vh 1.25rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.search-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.search-modal__panel {
  width: min(100%, 560px);
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-float);
  transform: translateY(-12px);
  transition: transform var(--transition);
}

.search-modal.is-open .search-modal__panel {
  transform: translateY(0);
}

.search-modal__input {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  font-size: 1rem;
}

.search-modal__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero__grid > * {
  animation: hero-fade-up 0.8s var(--ease) both;
}

.hero__content {
  animation-delay: 0.08s;
}

.hero-form-card {
  animation-delay: 0.22s;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.stats-capsule {
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.stats-capsule.is-visible,
.stats-band .stats-capsule.reveal.is-visible {
  animation: capsule-rise 0.75s var(--ease) both;
}

@keyframes capsule-rise {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.card {
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.section__header.reveal.is-visible .section__title,
.section__header.reveal.is-visible .section__subtitle,
.section__header.reveal.is-visible .section__eyebrow {
  animation: hero-fade-up 0.65s var(--ease) both;
}

.section__header.reveal.is-visible .section__eyebrow {
  animation-delay: 0.05s;
}

.section__header.reveal.is-visible .section__title {
  animation-delay: 0.12s;
}

.section__header.reveal.is-visible .section__subtitle {
  animation-delay: 0.2s;
}

/* ---------- About page ---------- */
.about-heading {
  text-align: left;
  margin-bottom: 1.25rem;
}

.about-heading--center {
  text-align: center;
}

.about-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #03594e, var(--teal));
}

.about-heading--center::after {
  margin-inline: auto;
}

.about-who__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.about-who__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 58ch;
  line-height: 1.75;
}

.about-who__aside {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.about-who__aside-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.about-pillars {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.about-pillars li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.about-pillars li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #03594e;
  box-shadow: 0 0 0 4px rgba(3, 89, 78, 0.12);
}

.about-mission {
  background:
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(18, 184, 166, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 70% at 90% 80%, rgba(251, 191, 36, 0.1), transparent 55%),
    #f4f8f9;
}

.about-mission__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.about-mission__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* About decorative layers */
.about-courses-section,
.about-why {
  position: relative;
  overflow: hidden;
}

.about-courses-section > .container,
.about-why > .container {
  position: relative;
  z-index: 1;
}

.about-courses-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbfa 45%, #eef8f5 100%);
}

.about-why {
  background:
    linear-gradient(160deg, #ffffff 0%, #f4faf8 48%, #eef7f4 100%);
}

.about-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.about-decor__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  will-change: transform, opacity;
}

.about-decor__blob--tl {
  left: -8%;
  top: -10%;
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  background: radial-gradient(circle, rgba(18, 184, 166, 0.28) 0%, rgba(18, 184, 166, 0.1) 42%, transparent 70%);
  animation: about-blob-a 12s ease-in-out infinite;
}

.about-decor__blob--br {
  right: -10%;
  bottom: -18%;
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  background: radial-gradient(circle, rgba(3, 89, 78, 0.16) 0%, rgba(18, 184, 166, 0.08) 45%, transparent 72%);
  animation: about-blob-b 14s ease-in-out infinite;
}

.about-decor__blob--why-l {
  left: -12%;
  top: 8%;
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  background: radial-gradient(circle, rgba(18, 184, 166, 0.22) 0%, rgba(18, 184, 166, 0.06) 50%, transparent 72%);
  animation: about-blob-a 13s ease-in-out infinite;
}

.about-decor__blob--why-r {
  right: -8%;
  bottom: -12%;
  width: min(460px, 55vw);
  height: min(460px, 55vw);
  background: radial-gradient(circle, rgba(251, 191, 36, 0.16) 0%, rgba(18, 184, 166, 0.08) 40%, transparent 70%);
  animation: about-blob-b 11s ease-in-out infinite reverse;
}

.about-decor__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 184, 166, 0.22);
}

.about-decor__circle--one {
  width: 180px;
  height: 180px;
  right: 12%;
  top: 18%;
  animation: about-pulse 6s ease-in-out infinite;
}

.about-decor__circle--two {
  width: 110px;
  height: 110px;
  left: 8%;
  bottom: 16%;
  border-color: rgba(3, 89, 78, 0.18);
  animation: about-pulse 7.5s ease-in-out infinite 0.8s;
}

.about-decor__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(18, 184, 166, 0.28);
}

.about-decor__ring--a {
  width: 220px;
  height: 220px;
  right: 6%;
  top: 12%;
  animation: about-spin 28s linear infinite;
}

.about-decor__ring--b {
  width: 140px;
  height: 140px;
  left: 10%;
  bottom: 18%;
  border-color: rgba(3, 89, 78, 0.2);
  animation: about-spin 22s linear infinite reverse;
}

.about-decor__dots {
  position: absolute;
  width: 120px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(18, 184, 166, 0.55) 2px, transparent 2.2px);
  background-size: 16px 16px;
  opacity: 0.55;
  animation: decor-dots-drift 8s ease-in-out infinite;
}

.about-decor__dots--right {
  right: 5%;
  top: 12%;
}

.about-decor__dots--left {
  left: 4%;
  top: 22%;
  background-image: radial-gradient(circle, rgba(251, 191, 36, 0.55) 2px, transparent 2.2px);
}

.about-decor__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  opacity: 0.9;
  animation: about-wave 10s ease-in-out infinite;
}

.about-decor__mesh {
  position: absolute;
  right: -4%;
  top: 50%;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  opacity: 0.85;
  transform-origin: center center;
  animation: about-mesh-spin 40s linear infinite;
}

@keyframes about-mesh-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes about-blob-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate3d(18px, 24px, 0) scale(1.08); opacity: 1; }
}

@keyframes about-blob-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate3d(-20px, -16px, 0) scale(1.06); opacity: 1; }
}

@keyframes about-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.12); opacity: 0.9; }
}

@keyframes about-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes about-wave {
  0%, 100% { transform: translateX(0); opacity: 0.75; }
  50% { transform: translateX(-18px); opacity: 1; }
}

.about-courses {
  position: relative;
  z-index: 1;
}

.about-course-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(18, 184, 166, 0.14);
  box-shadow: 0 10px 28px rgba(3, 89, 78, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 184, 166, 0.35);
  box-shadow: 0 18px 36px rgba(3, 89, 78, 0.12);
}

.about-why__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.about-why__content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(18, 184, 166, 0.12);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(3, 89, 78, 0.05);
}

.about-why__intro {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  max-width: 52ch;
  line-height: 1.7;
}

.about-checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
}

.about-checks li {
  position: relative;
  padding: 0.7rem 0.75rem 0.7rem 2.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-navy);
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 184, 166, 0.12);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(3, 89, 78, 0.04);
}

.about-checks li::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(3, 89, 78, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2303594e' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

.about-enquiry {
  position: relative;
  z-index: 1;
}

.about-enquiry__card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 184, 166, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 16px 40px rgba(3, 89, 78, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-enquiry__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.4rem;
}

.about-enquiry__text {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
}

.about-enquiry__form .form-field {
  margin-bottom: 0.9rem;
}

.about-enquiry__form textarea {
  min-height: 96px;
  resize: vertical;
}

.about-enquiry__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.about-enquiry__status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.25em;
}

.about-enquiry__status.is-success {
  color: #03594e;
}

.about-enquiry__status.is-error {
  color: #b42318;
}

.about-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.about-service-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-service-card__icon svg {
  width: 26px;
  height: 26px;
}

.about-service-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.35rem;
}

.about-service-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.55rem;
}

.about-join__tagline {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 1.05rem;
  margin: -0.35rem 0 1.25rem;
  letter-spacing: -0.01em;
}

/* ---------- Course detail pages ---------- */
.cd-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 85% 20%, rgba(18, 184, 166, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 60% at 10% 80%, rgba(251, 191, 36, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 0%, rgba(59, 130, 246, 0.12), transparent 50%),
    linear-gradient(145deg, #101828 0%, #172033 55%, #0f2a2a 100%);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
}

.cd-hero__glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1.5px);
  background-size: 28px 28px, 36px 36px;
  opacity: 0.55;
  pointer-events: none;
}

.cd-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cd-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.cd-hero__orb--1 {
  width: 220px;
  height: 220px;
  left: -40px;
  top: 20%;
  background: rgba(18, 184, 166, 0.22);
  animation: cd-blob 12s ease-in-out infinite;
}

.cd-hero__orb--2 {
  width: 180px;
  height: 180px;
  right: 8%;
  bottom: 8%;
  background: rgba(251, 191, 36, 0.16);
  animation: cd-blob 14s ease-in-out infinite reverse;
}

.cd-hero__float {
  position: absolute;
  width: 42px;
  height: 42px;
  color: rgba(167, 243, 208, 0.35);
  animation: cd-float 7s ease-in-out infinite;
}

.cd-hero__float--1 {
  left: 42%;
  top: 18%;
}

.cd-hero__float--2 {
  right: 38%;
  top: 62%;
  animation-delay: 1s;
  color: rgba(251, 191, 36, 0.35);
}

.cd-hero__float--3 {
  left: 48%;
  bottom: 14%;
  animation-delay: 1.8s;
  color: rgba(147, 197, 253, 0.35);
}

.cd-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.cd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.cd-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.cd-breadcrumb a:hover {
  color: var(--yellow);
}

.cd-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(18, 184, 166, 0.18);
  border: 1px solid rgba(18, 184, 166, 0.35);
  color: #99f6e4;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.cd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

.cd-hero__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 1.5rem;
}

.cd-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.cd-hero__meta-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}

.cd-hero__meta-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.3rem;
}

.cd-hero__meta-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.cd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cd-hero__visual {
  display: grid;
  place-items: center;
}

.cd-hero__card {
  position: relative;
  width: min(100%, 420px);
  min-height: 320px;
  border-radius: 24px;
  padding: 1.75rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.cd-hero__card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(18, 184, 166, 0.25);
  filter: blur(20px);
}

.cd-hero__card-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #12b8a6, #03594e);
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 28px rgba(18, 184, 166, 0.35);
}

.cd-hero__card-icon svg {
  width: 34px;
  height: 34px;
}

.cd-hero__card-label {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}

.cd-hero__card-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.cd-hero__card-text {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cd-hero__play {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: var(--deep-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(251, 191, 36, 0.35);
  transition: transform var(--transition), background var(--transition);
}

.cd-hero__play:hover {
  transform: scale(1.06);
  background: #f59e0b;
}

.cd-hero__play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.cd-section {
  position: relative;
  overflow: visible;
  padding: var(--space-6) 0 var(--space-7);
  background:
    radial-gradient(ellipse 50% 55% at 12% 18%, rgba(254, 215, 170, 0.28), transparent 58%),
    radial-gradient(ellipse 48% 50% at 88% 22%, rgba(18, 184, 166, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 45% at 70% 85%, rgba(147, 197, 253, 0.14), transparent 55%),
    linear-gradient(180deg, #f0f4f5 0%, #f7fbfa 42%, #eef8f5 100%);
}

.cd-section > .container,
.cd-final > .container {
  position: relative;
  z-index: 1;
}

.cd-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cd-decor__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.cd-decor__blob--a {
  width: min(460px, 55vw);
  height: min(460px, 55vw);
  left: -10%;
  top: 8%;
  background: radial-gradient(circle, rgba(18, 184, 166, 0.28), rgba(18, 184, 166, 0.06) 55%, transparent 70%);
  animation: cd-blob 14s ease-in-out infinite;
}

.cd-decor__blob--b {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  right: -8%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(3, 89, 78, 0.16), rgba(18, 184, 166, 0.06) 50%, transparent 70%);
  animation: cd-blob 16s ease-in-out infinite reverse;
}

.cd-decor__blob--c {
  width: min(320px, 40vw);
  height: min(320px, 40vw);
  left: 35%;
  top: 42%;
  background: radial-gradient(circle, rgba(254, 215, 170, 0.35), rgba(251, 191, 36, 0.08) 45%, transparent 70%);
  animation: cd-blob 18s ease-in-out infinite 1s;
}

.cd-decor__confetti {
  position: absolute;
  right: 18%;
  top: 35%;
  width: 90px;
  height: 90px;
  background-image:
    radial-gradient(circle, rgba(18, 184, 166, 0.45) 2px, transparent 2.2px),
    radial-gradient(circle, rgba(251, 191, 36, 0.45) 1.8px, transparent 2px);
  background-size: 18px 18px, 22px 22px;
  background-position: 0 0, 8px 10px;
  opacity: 0.45;
  animation: decor-dots-drift 10s ease-in-out infinite;
  mask-image: radial-gradient(circle, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 75%);
}

.cd-decor__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(18, 184, 166, 0.28);
}

.cd-decor__ring--a {
  width: 220px;
  height: 220px;
  right: 8%;
  top: 14%;
  animation: cd-spin 32s linear infinite;
}

.cd-decor__ring--b {
  width: 140px;
  height: 140px;
  left: 6%;
  bottom: 18%;
  border-color: rgba(3, 89, 78, 0.22);
  animation: cd-spin 24s linear infinite reverse;
}

.cd-decor__dots {
  position: absolute;
  width: 110px;
  height: 130px;
  background-image: radial-gradient(circle, rgba(18, 184, 166, 0.45) 2px, transparent 2.2px);
  background-size: 16px 16px;
  opacity: 0.5;
  animation: decor-dots-drift 9s ease-in-out infinite;
}

.cd-decor__dots--l {
  left: 3%;
  top: 28%;
}

.cd-decor__dots--r {
  right: 4%;
  top: 42%;
  background-image: radial-gradient(circle, rgba(251, 191, 36, 0.45) 2px, transparent 2.2px);
}

.cd-decor__icon {
  position: absolute;
  width: 48px;
  height: 48px;
  color: rgba(18, 184, 166, 0.22);
  animation: cd-float 6s ease-in-out infinite;
}

.cd-decor__icon--1 {
  left: 8%;
  top: 18%;
}

.cd-decor__icon--2 {
  right: 12%;
  top: 28%;
  animation-delay: 0.8s;
  color: rgba(3, 89, 78, 0.18);
}

.cd-decor__icon--3 {
  left: 14%;
  bottom: 22%;
  animation-delay: 1.4s;
}

.cd-decor__icon--4 {
  right: 9%;
  bottom: 16%;
  animation-delay: 2s;
  color: rgba(251, 191, 36, 0.28);
}

.cd-decor__icon--5 {
  left: 46%;
  top: 12%;
  width: 36px;
  height: 36px;
  animation-delay: 0.5s;
  color: rgba(59, 130, 246, 0.22);
}

.cd-decor__icon--6 {
  right: 28%;
  bottom: 38%;
  width: 34px;
  height: 34px;
  animation-delay: 2.4s;
  color: rgba(18, 184, 166, 0.2);
}

.cd-decor__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  opacity: 0.85;
  animation: about-wave 12s ease-in-out infinite;
}

@keyframes cd-blob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(16px, 20px, 0) scale(1.07); }
}

@keyframes cd-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes cd-float {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-12px); opacity: 0.9; }
}

.cd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: stretch;
}

.cd-main {
  min-width: 0;
}

.cd-side {
  position: relative;
  z-index: 2;
  /* Stretch with main column so sticky overview has room to travel */
  height: 100%;
  min-height: 100%;
}

.cd-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 184, 166, 0.14);
  border-radius: 22px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 12px 30px rgba(3, 89, 78, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cd-heading {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--deep-navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cd-sub {
  color: var(--text-muted);
  margin: -0.35rem 0 1.25rem;
  max-width: 58ch;
  line-height: 1.7;
}

.cd-prose p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 68ch;
}

.cd-block {
  margin-top: 1.35rem;
  padding-top: 0;
  border-top: none;
}

.cd-checklist {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.cd-checklist--2 {
  grid-template-columns: 1fr 1fr;
}

.cd-checklist li,
.cd-includes li,
.cd-support__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
}

.cd-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: #03594e;
  background: rgba(18, 184, 166, 0.12);
  border-radius: 50%;
  padding: 2px;
}

.cd-includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
}

.cd-includes li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 184, 166, 0.14);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: 0 6px 16px rgba(3, 89, 78, 0.04);
}

.cd-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cd-acc {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 184, 166, 0.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(3, 89, 78, 0.04);
}

.cd-acc__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  padding: 1rem 1.15rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--deep-navy);
  font: inherit;
}

.cd-acc__num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(3, 89, 78, 0.08);
  color: #03594e;
  font-weight: 700;
  font-size: 0.85rem;
}

.cd-acc__title {
  font-weight: 700;
  font-size: 1rem;
}

.cd-acc__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.cd-acc__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-bottom: 4px;
}

.cd-acc.is-open .cd-acc__chevron {
  transform: rotate(-135deg);
  margin-bottom: 0;
  margin-top: 4px;
}

.cd-acc__body {
  display: none;
  padding: 0 1.15rem 1.1rem 4.5rem;
}

.cd-acc.is-open .cd-acc__body {
  display: block;
}

.cd-acc__lessons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cd-acc__lessons li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.45rem 0;
  border-top: 1px solid var(--border-soft);
}

.cd-acc__lesson-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12b8a6;
  flex-shrink: 0;
}

.cd-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cd-project {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 184, 166, 0.14);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(3, 89, 78, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cd-project:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cd-project__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.cd-project__icon svg {
  width: 24px;
  height: 24px;
}

.cd-project__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.45rem;
}

.cd-project__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.55rem;
}

.cd-project__tech {
  font-size: 0.78rem;
  font-weight: 600;
  color: #03594e;
  margin-bottom: 0.75rem;
}

.cd-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cd-audience__card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 184, 166, 0.14);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  box-shadow: 0 8px 20px rgba(3, 89, 78, 0.04);
}

.cd-audience__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.4rem;
}

.cd-audience__card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cd-careers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cd-career {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 184, 166, 0.14);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(3, 89, 78, 0.04);
}

.cd-career__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cd-career__icon svg {
  width: 22px;
  height: 22px;
}

.cd-career h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.cd-overview {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 184, 166, 0.18);
  border-radius: 22px;
  padding: 1.35rem 1.35rem 1.45rem;
  box-shadow: 0 18px 40px rgba(3, 89, 78, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cd-overview--sticky {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  z-index: 5;
  max-height: calc(100vh - var(--nav-h) - 2rem);
  overflow-y: auto;
}

.cd-overview__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 1rem;
}

.cd-overview__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cd-overview__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

.cd-overview__row span {
  color: var(--text-muted);
}

.cd-overview__row strong {
  color: var(--deep-navy);
  text-align: right;
}

.cd-overview__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cd-overview__actions .btn {
  width: 100%;
}

.cd-support {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 70% at 90% 20%, rgba(18, 184, 166, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(251, 191, 36, 0.1), transparent 55%),
    linear-gradient(135deg, #101828, #172033 60%, #123536);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.cd-support > .container {
  position: relative;
  z-index: 1;
}

.cd-support .cd-decor__blob--a {
  background: radial-gradient(circle, rgba(18, 184, 166, 0.28), transparent 70%);
}

.cd-support .cd-decor__blob--b {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.14), transparent 70%);
}

.cd-support .cd-decor__blob--c {
  opacity: 0.35;
}

.cd-support .cd-decor__icon {
  color: rgba(167, 243, 208, 0.22);
}

.cd-support .cd-decor__wave path {
  stroke: rgba(167, 243, 208, 0.18);
}

.cd-support .cd-decor__dots {
  background-image: radial-gradient(circle, rgba(251, 191, 36, 0.4) 2px, transparent 2.2px);
}

.cd-support__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}

.cd-support__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cd-support__text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
  margin-bottom: 1.35rem;
  line-height: 1.7;
}

.cd-support__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
}

.cd-support__list li {
  color: rgba(255, 255, 255, 0.92);
}

.cd-support__list .cd-check {
  color: #03594e;
  background: rgba(251, 191, 36, 0.9);
}

.cd-final {
  position: relative;
  overflow: visible;
  padding: var(--space-6) 0 0;
  background: transparent;
  margin-bottom: -3.5rem;
  z-index: 2;
}

.cd-final__card {
  position: relative;
  z-index: 1;
  text-align: center;
  background: linear-gradient(135deg, #03594e 0%, #024a41 45%, #01352f 100%);
  border: none;
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 20px 50px rgba(3, 89, 78, 0.28);
  color: #fff;
  overflow: hidden;
}

.cd-final__waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cd-final__card > *:not(.cd-final__waves) {
  position: relative;
  z-index: 1;
}

.cd-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cd-final__text {
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.cd-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.cd-final__actions .btn--yellow {
  background: var(--yellow);
  color: var(--deep-navy);
  box-shadow: 0 10px 28px rgba(251, 191, 36, 0.35);
}

.cd-final__actions .btn--yellow:hover {
  background: #f59e0b;
  color: var(--deep-navy);
}

/* ---------- Service detail process cards ---------- */
.sd-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.sd-process__card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 184, 166, 0.14);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 8px 20px rgba(3, 89, 78, 0.04);
}

.sd-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(3, 89, 78, 0.08);
  color: #03594e;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.sd-process__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.4rem;
}

.sd-process__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.sd-layout-full {
  max-width: var(--container);
}

.sd-layout-full .cd-main {
  width: 100%;
}

.sd-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.mt-0 {
  margin-top: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid-4,
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-who__grid,
  .about-why__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .cd-hero__grid,
  .cd-layout,
  .cd-support__inner {
    grid-template-columns: 1fr;
  }

  .cd-overview--sticky {
    position: static;
  }

  .cd-final {
    margin-bottom: -2rem;
  }

  .cd-projects,
  .cd-audience,
  .cd-careers {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero__visual {
    min-height: 0;
  }

  .page-hero__stage {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .about-services {
    grid-template-columns: 1fr;
  }

  .stats-capsule {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 36px;
    padding: 1.5rem 1.75rem;
    gap: 1rem;
  }

  .how-steps__track {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-bg__circle {
    width: 110px;
    height: 110px;
    left: -30px;
  }

  .services-bg__dots {
    width: 100px;
    height: 100px;
    left: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main {
    padding-top: 5rem;
  }

  #get-started {
    margin-bottom: -2.5rem;
  }

  .nav__auth {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav__toggle {
    display: grid;
  }

  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 320px);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-h) + 1.5rem) 1.25rem 2rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav__menu.is-open {
    transform: translateX(0);
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 0.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    min-width: 0;
  }

  .nav__item.is-open > .nav__dropdown {
    max-height: 400px;
    padding-bottom: 0.5rem;
  }

  .nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.9rem;
  }

  .nav__actions .btn--yellow {
    display: none;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 40, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .split,
  .cta-band,
  .contact-layout,
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "info"
      "form";
  }

  .hero-form-card {
    justify-self: stretch;
    max-width: none;
  }

  .cta-band__actions {
    justify-content: flex-start;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding-bottom: 4.5rem;
  }

  .topbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .section {
    padding: var(--space-5) 0;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .how-steps,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-float {
    left: 1rem;
    bottom: 1rem;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  #get-started {
    margin-bottom: -2rem;
  }

  .stats-capsule {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 1.25rem 1.35rem;
    gap: 0.35rem;
  }

  .stats-capsule__item {
    padding: 0.65rem 0.35rem;
  }

  .stats-band {
    margin-top: -2rem;
    padding-top: 0;
  }

  .section-decor__blob {
    width: min(360px, 80vw);
    height: min(360px, 80vw);
    left: -28%;
    top: 0;
  }

  .section-decor__dots {
    width: 96px;
    height: 110px;
    right: 2%;
    top: 8%;
    background-size: 14px 14px;
  }

  .approach-decor__peach {
    width: min(340px, 85vw);
    height: min(280px, 70vw);
    left: -30%;
  }

  .approach-decor__cyan {
    width: min(300px, 75vw);
    height: min(300px, 75vw);
    right: -25%;
  }

  .approach-decor__waves {
    left: 4%;
    top: 6%;
    width: 56px;
    height: 38px;
  }

  .categories-decor__mint {
    width: min(320px, 80vw);
    height: min(320px, 80vw);
    left: -28%;
  }

  .categories-decor__confetti {
    width: 88px;
    height: 66px;
    right: 3%;
    top: 4%;
  }

  .how-decor__glow {
    width: min(420px, 90vw);
    left: -20%;
    top: -8%;
  }

  .how-decor__lines {
    width: min(460px, 95vw);
    right: -25%;
    top: 0;
  }

  .blog-decor__svg--left {
    left: -10%;
    width: min(200px, 45vw);
  }

  .blog-decor__svg--right {
    right: -8%;
    width: min(200px, 45vw);
  }

  .hero {
    min-height: 560px;
    height: auto;
    padding-top: var(--space-4);
    padding-bottom: 4rem;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .about-checks {
    grid-template-columns: 1fr;
  }

  .cd-hero__meta,
  .cd-checklist--2,
  .cd-includes,
  .cd-projects,
  .cd-audience,
  .cd-careers,
  .cd-support__list,
  .sd-process {
    grid-template-columns: 1fr;
  }

  .cd-acc__head {
    grid-template-columns: auto 1fr auto;
  }

  .cd-acc__meta {
    display: none;
  }

  .cd-acc__body {
    padding-left: 1.15rem;
  }

  .cd-hero__actions .btn,
  .cd-final__actions .btn,
  .cd-overview__actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 2rem 0 2.25rem;
  }

  .page-hero__title {
    font-size: 1.85rem;
  }

  .page-hero__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .page-hero__icon svg {
    width: 24px;
    height: 24px;
  }

  .page-hero__dots {
    width: 64px;
    height: 90px;
  }

  .about-service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    text-align: center;
  }

  .hero__actions .btn,
  .cta-final__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .section-decor__blob,
  .section-decor__dots,
  .approach-decor__peach,
  .approach-decor__cyan,
  .approach-decor__waves,
  .approach-decor__dots,
  .services-bg__dots,
  .categories-decor__mint,
  .categories-decor__confetti,
  .testimonials-decor__glow,
  .about-decor__blob,
  .about-decor__circle,
  .about-decor__ring,
  .about-decor__dots,
  .about-decor__wave,
  .about-decor__mesh,
  .cd-decor__blob,
  .cd-decor__ring,
  .cd-decor__dots,
  .cd-decor__icon,
  .cd-decor__wave,
  .cd-decor__confetti,
  .cd-hero__orb,
  .cd-hero__float,
  .testimonials-decor__dots,
  .blog-decor__svg {
    animation: none !important;
  }

  .how-step {
    opacity: 1;
    transform: none;
  }

  .how-steps.is-playing .how-step,
  .how-steps.is-playing .how-step__num,
  .how-steps.is-playing .how-steps__progress {
    animation: none !important;
  }

  .how-steps__progress {
    transform: scaleX(1);
  }

  .hero__grid > *,
  .hero__content,
  .hero-form-card {
    animation: none !important;
  }
}
