:root {
  --bg: #f5efe4;
  --surface: rgba(255, 252, 247, 0.76);
  --surface-strong: #fff9f0;
  --surface-deep: rgba(255, 247, 236, 0.92);
  --text: #1d1f1d;
  --muted: #5d5e58;
  --line: rgba(29, 31, 29, 0.1);
  --accent: #d96f32;
  --accent-deep: #9e3f12;
  --accent-soft: #f5b36c;
  --teal: #0f6d6a;
  --teal-soft: rgba(15, 109, 106, 0.12);
  --shadow: 0 24px 60px rgba(77, 53, 28, 0.16);
  --shadow-soft: 0 18px 40px rgba(76, 55, 33, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 111, 50, 0.15), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(15, 109, 106, 0.2), transparent 18%),
    linear-gradient(180deg, #fbf6ee 0%, #f4ecdf 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

.brand-mark__text {
  display: grid;
  gap: 2px;
}

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  padding: 18px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(18px);
  background: rgba(255, 249, 240, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 109, 106, 0.2);
}

.brand-mark__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-mark__name,
.brand-mark__tag,
.eyebrow,
.partners p,
.story-card__label,
.leadership__author {
  margin: 0;
}

.brand-mark__name {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.brand-mark__tag,
.site-nav a,
.hero__copy,
.section-heading p,
.program-card p,
.spotlight__panel p,
.impact-card p,
.story-card p,
.leadership__stack p,
.cta__content p,
.site-footer,
.contact-card label {
  color: var(--muted);
}

.brand-mark__tag {
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 16px;
  border: 1px solid rgba(29, 31, 29, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav a {
  font-size: 0.96rem;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--text);
  font-weight: 800;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-group > a::after {
  content: " +";
  font-weight: 700;
  color: var(--accent-deep);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 249, 240, 0.96);
  border: 1px solid rgba(29, 31, 29, 0.08);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown a:hover {
  background: rgba(217, 111, 50, 0.08);
  color: var(--text);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-active .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(158, 63, 18, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(158, 63, 18, 0.24);
  filter: saturate(1.03);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  box-shadow: none;
  border: 1px solid var(--line);
}

.hero,
.spotlight,
.leadership,
.cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 150px);
  padding: 52px 0 42px;
}

.hero__content h1,
.section-heading h2,
.spotlight__panel h2,
.cta__content h2 {
  font-family: "Sora", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 10px 0 18px;
}

.hero__content h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 9.5ch;
}

.hero__copy {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.82;
}

.hero__badge-row,
.hero__proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__badge-row {
  margin-top: 16px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 31, 29, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  font-size: 0.84rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 800;
}

.hero__actions,
.hero__metrics,
.partners__grid,
.spotlight__stats,
.leadership__stack,
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__metrics {
  margin-top: 36px;
}

.hero__metrics article,
.impact-card,
.program-card,
.story-card,
.leadership__stack article,
.contact-card,
.spotlight__panel,
.hero-card,
.partners,
.cta__content {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__metrics article {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 248, 238, 0.9));
}

.hero__metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.85rem;
  font-family: "Sora", sans-serif;
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.hero-card {
  border-radius: var(--radius-xl);
}

.hero-card--primary {
  position: absolute;
  inset: 28px 28px 120px 36px;
  padding: 38px;
  background:
    linear-gradient(160deg, rgba(255, 249, 240, 0.94), rgba(255, 234, 213, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

.hero-card--primary p {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 700;
}

.hero-card--primary h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 24px;
  line-height: 1.1;
}

.hero-card--primary ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-card--primary li {
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 31, 29, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-card--floating {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(250px, 76%);
  padding: 26px;
  background: linear-gradient(180deg, rgba(15, 109, 106, 0.96), rgba(14, 77, 75, 0.92));
  color: #fff;
}

.hero-card--floating span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero-card--floating strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 3rem;
  font-family: "Sora", sans-serif;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 31, 29, 0.08);
  box-shadow: 0 12px 20px rgba(66, 52, 39, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-orbit span:nth-child(1) {
  top: 24px;
  right: 84px;
}

.hero-orbit span:nth-child(2) {
  left: 4px;
  bottom: 98px;
}

.hero-orbit span:nth-child(3) {
  top: 180px;
  right: -16px;
}

.hero-orbit span:nth-child(4) {
  left: 80px;
  bottom: 18px;
}

.partners,
.section,
.site-footer {
  margin-top: 40px;
}

.page-hero {
  padding: 64px 0 12px;
  max-width: 820px;
}

.page-hero--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.82fr);
  gap: 26px;
  align-items: end;
}

.page-hero__content {
  max-width: 820px;
}

.page-hero h1 {
  margin: 10px 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-hero p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-hero__chips span,
.page-hero__panel {
  border: 1px solid rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
}

.page-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.72);
  box-shadow: 0 12px 24px rgba(95, 69, 42, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.page-hero__panel {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(66, 173, 164, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 245, 232, 0.96));
  box-shadow: var(--shadow-soft);
}

.page-hero__panel-label {
  margin: 0 0 10px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-hero__panel strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.page-hero__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.partners {
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(252, 243, 231, 0.86)),
    var(--surface);
}

.partners__grid {
  margin-top: 12px;
  justify-content: space-between;
}

.partners__grid span {
  font-family: "Sora", sans-serif;
  opacity: 0.72;
}

.section {
  padding: 70px 0 14px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.spotlight__panel h2,
.cta__content h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading p,
.spotlight__panel p,
.cta__content p,
.leadership__quote blockquote {
  font-size: 1.02rem;
  line-height: 1.75;
}

.program-grid,
.story-grid,
.trust-grid,
.testimonial-grid,
.enterprise-grid,
.product-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.program-card,
.story-card,
.enterprise-card,
.trust-card,
.testimonial-card,
.impact-card,
.leadership__stack article,
.cta__content,
.contact-card,
.spotlight__panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.program-card:hover,
.enterprise-card:hover,
.trust-card:hover,
.testimonial-card:hover,
.impact-card:hover,
.story-card:hover,
.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(77, 53, 28, 0.18);
  border-color: rgba(217, 111, 50, 0.18);
}

.program-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(217, 111, 50, 0.12);
  color: var(--accent-deep);
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.program-card h3,
.enterprise-card h3,
.story-card h3,
.leadership__stack h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.enterprise-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 251, 250, 0.92)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.enterprise-card p {
  color: var(--muted);
  line-height: 1.65;
}

.product-price {
  display: inline-block;
  margin: 8px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: var(--accent-deep);
}

.success-card {
  max-width: 720px;
  margin: 0 auto;
}

.story-card__label {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.story-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 700;
}

.trust-band {
  position: relative;
  padding: 36px 28px 18px;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at top right, rgba(217, 111, 50, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 109, 106, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.72), rgba(255, 252, 247, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.trust-card,
.testimonial-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 240, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.trust-card strong,
.testimonial-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.trust-card p,
.testimonial-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.testimonial-card__quote {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: #2c2a27;
}

.spotlight__stats {
  display: grid;
  gap: 16px;
}

.impact-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.55rem;
  font-family: "Sora", sans-serif;
}

.leadership__quote blockquote {
  margin: 16px 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.leadership__stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card--links {
  align-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 246, 235, 0.92)),
    var(--surface);
}

.cta--single {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-details p {
  margin: 0 0 10px;
}

.cta-inline {
  margin-top: 18px;
}

.contact-card label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(29, 31, 29, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  color: var(--text);
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  outline: 2px solid rgba(15, 109, 106, 0.18);
  border-color: rgba(15, 109, 106, 0.3);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-feedback {
  margin: 0;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.6;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fbf63, #128c48);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(18, 140, 72, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(18, 140, 72, 0.34);
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 31;
}

.chatbot__toggle,
.chatbot__close {
  border: none;
  cursor: pointer;
  font: inherit;
}

.chatbot__toggle {
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #134d75);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(15, 109, 106, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(15, 109, 106, 0.3);
}

.chatbot__panel {
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 249, 240, 0.97);
  border: 1px solid rgba(29, 31, 29, 0.08);
  box-shadow: var(--shadow);
}

.chatbot__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(29, 31, 29, 0.08);
}

.chatbot__header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.chatbot__close {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(29, 31, 29, 0.06);
  color: var(--text);
}

.chatbot__messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  padding: 16px 18px;
  overflow-y: auto;
}

.chatbot__bubble {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.6;
  font-size: 0.94rem;
  white-space: pre-line;
}

.chatbot__bubble--bot {
  background: rgba(15, 109, 106, 0.1);
  color: var(--text);
}

.chatbot__bubble--user {
  justify-self: end;
  background: rgba(217, 111, 50, 0.12);
  color: var(--text);
}

.chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 0 18px 18px;
}

.chatbot__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(29, 31, 29, 0.12);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
}

.chatbot__input:focus {
  outline: 2px solid rgba(15, 109, 106, 0.18);
  border-color: rgba(15, 109, 106, 0.3);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workshop-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 240, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.workshop-card h3 {
  margin: 8px 0 10px;
  font-family: "Sora", sans-serif;
}

.workshop-card__type {
  margin: 0;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.workshop-meta {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-stats,
.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.admin-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.admin-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-card__header h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
}

.admin-toolbar,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-toolbar {
  align-items: center;
}

.admin-actions {
  margin-top: 14px;
}

.admin-checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.admin-checkbox input {
  width: auto;
  margin: 0;
}

.admin-login-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.admin-login-card h1 {
  margin: 10px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-ai-output {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 31, 29, 0.08);
}

.admin-ai-output pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font: inherit;
  line-height: 1.7;
  color: var(--text);
}

.admin-ai-snippet {
  margin-top: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(15, 109, 106, 0.08);
  border: 1px solid rgba(15, 109, 106, 0.12);
}

.admin-ai-snippet p,
.admin-ai-snippet pre {
  margin: 0 0 10px;
  line-height: 1.65;
  color: var(--text);
}

.admin-ai-snippet p:last-child,
.admin-ai-snippet pre:last-child {
  margin-bottom: 0;
}

.admin-ai-snippet pre {
  white-space: pre-wrap;
  word-break: break-word;
  font: inherit;
}

.admin-item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(29, 31, 29, 0.08);
}

.admin-item strong,
.admin-item p,
.admin-item span,
.admin-empty {
  margin: 0;
}

.admin-item p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.admin-item span,
.admin-empty {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-item textarea,
.admin-item select {
  width: 100%;
  margin-top: 8px;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-status--new {
  background: rgba(217, 111, 50, 0.14);
  color: var(--accent-deep);
}

.admin-status--contacted {
  background: rgba(15, 109, 106, 0.14);
  color: var(--teal);
}

.admin-status--qualified {
  background: rgba(20, 84, 167, 0.14);
  color: #154e9d;
}

.admin-status--enrolled {
  background: rgba(31, 140, 72, 0.14);
  color: #116a36;
}

.admin-status--closed {
  background: rgba(29, 31, 29, 0.12);
  color: var(--text);
}

.site-footer {
  padding: 26px 0 10px;
  border-top: 1px solid rgba(29, 31, 29, 0.08);
}

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

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

@media (max-width: 1024px) {
  .site-header,
  .cta--single,
  .hero,
  .spotlight,
  .leadership,
  .cta,
  .page-hero--split {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
    border-radius: 30px;
    padding: 18px;
    align-items: flex-start;
  }

  .site-nav {
    order: 4;
    width: 100%;
    justify-content: space-between;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 249, 240, 0.9);
    border: 1px solid rgba(29, 31, 29, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header > .button {
    order: 3;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown,
  .nav-group.is-active .nav-dropdown {
    transform: none;
  }

  .nav-group.is-open .nav-dropdown,
  .nav-group.is-active .nav-dropdown {
    display: grid;
  }

  .nav-group > a::after {
    content: "";
  }

  .hero {
    min-height: auto;
  }

  .hero__content h1 {
    max-width: 12ch;
  }

  .hero__visual {
    min-height: 500px;
  }

  .trust-band {
    padding: 28px 22px 12px;
  }

  .program-grid,
  .story-grid,
  .trust-grid,
  .testimonial-grid,
  .workshop-grid,
  .admin-stats,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding-inline: 14px;
  }

  .site-header,
  .site-footer,
  .partners__grid,
  .hero__actions,
  .hero__metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-mark__icon {
    width: 50px;
    height: 50px;
  }

  .hero__badge-row,
  .hero__proof-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 48px;
  }

  .page-hero__panel {
    padding: 22px;
  }

  .nav-group {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .nav-group > a::after {
    content: "";
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.42);
  }

  .site-nav a,
  .site-footer a {
    text-align: center;
  }

  .whatsapp-float {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .chatbot {
    right: 14px;
    left: 14px;
    bottom: 76px;
  }

  .chatbot__panel {
    width: 100%;
  }

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

  .hero__content h1 {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .hero__visual {
    min-height: 460px;
  }

  .hero-card--primary {
    inset: 18px 0 110px;
    padding: 24px;
  }

  .hero-card--floating {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 12px;
  }

  .hero-orbit span:nth-child(1),
  .hero-orbit span:nth-child(2),
  .hero-orbit span:nth-child(3),
  .hero-orbit span:nth-child(4) {
    position: static;
    display: inline-flex;
    margin: 6px 8px 0 0;
  }

  .hero-orbit {
    inset: auto 0 124px 0;
    padding: 0 8px;
  }

  .program-grid,
  .story-grid,
  .trust-grid,
  .testimonial-grid,
  .workshop-grid,
  .admin-stats,
  .admin-grid {
    grid-template-columns: 1fr;
  }
}
