:root, html[data-theme="light"] {
  color-scheme: light;
  --bg-main: #FAF9F5;
  --bg-surface: #FFFFFF;
  --primary-brand: #1E4620;
  --secondary-accent: #9E4A2D;
  --text-main: #141F15;
  --text-muted: #556356;
  --border-color: #E2EBE2;

  --accent-teal: #22766d;
  --accent-teal-soft: rgba(43, 138, 126, 0.14);
  --accent-amber: #9E4A2D;
  --accent-amber-soft: rgba(158, 74, 45, 0.18);

  --orange: var(--primary-brand);
  --orange-deep: #16361d;
  --orange-soft: rgba(30, 70, 32, 0.12);
  --gold: var(--secondary-accent);
  --ink: var(--text-main);
  --muted: var(--text-muted);
  --line: var(--border-color);
  --paper: var(--bg-main);
  --white: #ffffff;
  --surface: var(--bg-surface);
  --surface-2: #f1f4ed;
  --dark: #071525;
  --shadow-soft: 0 22px 60px rgba(16, 32, 51, 0.12);
  --shadow-card: 0 14px 36px rgba(16, 32, 51, 0.09);
  --radius: 8px;
  --container: 1200px;
  --header: 78px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg-main: #07110d;
  --bg-surface: #1f2d21;
  --primary-brand: #69b978;
  --secondary-accent: #f6aa6d;
  --text-main: #f7fcf2;
  --text-muted: #a7bba0;
  --border-color: rgba(255, 255, 255, 0.14);

  --accent-teal: #7cc3a1;
  --accent-teal-soft: rgba(124, 195, 161, 0.22);
  --accent-amber: #f6aa6d;
  --accent-amber-soft: rgba(246, 170, 109, 0.22);

  --orange: var(--primary-brand);
  --orange-deep: #4d9162;
  --orange-soft: rgba(77, 145, 98, 0.18);
  --gold: var(--secondary-accent);
  --ink: var(--text-main);
  --muted: var(--text-muted);
  --line: rgba(255, 255, 255, 0.08);
  --paper: var(--bg-main);
  --white: #ffffff;
  --surface: var(--bg-surface);
  --surface-2: #22312a;
  --dark: #03080b;
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 18px 46px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] h1,
html[data-theme="dark"] .hero-text,
html[data-theme="dark"] .hero-points li,
html[data-theme="dark"] .hero .eyebrow {
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.82);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--text-main);
  background: var(--bg-main);
  font-family: var(--font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[data-theme="dark"] body {
  background: var(--bg-main);
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
  font-size: 1.25em;
  line-height: 1;
  fill: currentColor;
  vertical-align: middle;
}

img {
  height: auto;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--secondary-accent);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

html[data-theme="dark"] .skip-link {
  color: #041209;
  background: #8fdc9b;
}

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

.section {
  padding: 84px 0;
}

.section-anchor {
  scroll-margin-top: var(--header);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-kicker,
.eyebrow {
  margin: 0 0 10px;
  color: var(--secondary-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--primary-brand);
  line-height: 1.08;
}

p,
label,
input,
select,
textarea,
a,
ul,
ol,
li {
  color: var(--text-main);
}

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5.4vw, 5.15rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.4vw, 3.2rem);
  font-weight: 920;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 880;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--primary-brand);
  box-shadow: 0 16px 34px rgba(30, 70, 32, 0.24);
}

.btn-secondary {
  color: var(--white);
  background: var(--accent-teal);
  box-shadow: 0 16px 34px rgba(43, 138, 126, 0.24);
}

.btn-glass,
.btn-outline-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
}

.btn-outline-light:hover,
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

html[data-theme="dark"] .site-header {
  background: rgba(10, 18, 13, 0.96);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 32, 51, 0.1);
  box-shadow: 0 14px 40px rgba(16, 32, 51, 0.09);
}

html[data-theme="dark"] .nav-menu a:hover,
html[data-theme="dark"] .nav-menu a:focus-visible,
html[data-theme="dark"] .nav-menu a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .site-header.is-scrolled,
html[data-theme="dark"] .site-header.is-open {
  background: rgba(18, 13, 9, 0.72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 28px, var(--container));
  min-height: var(--header);
  margin-inline: auto;
  gap: 14px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(224, 106, 59, 0.25);
  font-weight: 950;
}

.brand-mark:has(img) {
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.brand-copy,
.footer-brand span:last-child {
  display: grid;
  min-width: 0;
}

.brand strong,
.footer-brand strong {
  color: var(--ink);
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.2;
}

.nav-menu {
  position: fixed;
  inset: var(--header) 0 auto;
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(255, 250, 245, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

html[data-theme="dark"] .nav-menu {
  background: rgba(18, 13, 9, 0.96);
}

html[data-theme="dark"] .nav-menu a {
  color: #f7fbff;
}

.nav-menu.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  padding: 12px 14px;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 840;
  transition: color 160ms ease, background 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--orange-deep);
  background: var(--orange-soft);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--orange-deep);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(61, 35, 16, 0.1);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: #ffffff;
  background: var(--orange);
  border-color: transparent;
  transform: translateY(-2px);
}

.theme-toggle .icon {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: opacity 180ms ease, transform 180ms ease;
}

.theme-toggle .sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle .moon {
  opacity: 0;
  transform: rotate(70deg) scale(0.7);
}

html[data-theme="dark"] .theme-toggle {
  color: #ffe8d6;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

/* Improve contrast for controls in dark mode */
html[data-theme="dark"] .btn-primary {
  color: #041209;
  background: #8fdc9b;
  box-shadow: 0 16px 34px rgba(143, 220, 155, 0.18);
}

html[data-theme="dark"] .btn-secondary {
  color: #04120f;
  background: #8fd7bc;
  box-shadow: 0 16px 34px rgba(143, 215, 188, 0.18);
}

html[data-theme="dark"] .nav-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .theme-toggle .sun {
  opacity: 0;
  transform: rotate(-70deg) scale(0.7);
}

html[data-theme="dark"] .theme-toggle .moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.icon-btn:hover {
  transform: translateY(-2px);
}

.icon-btn.call {
  color: var(--white);
  background: linear-gradient(135deg, #2F80ED, #1E66D1);
  box-shadow: 0 12px 24px rgba(47, 128, 237, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.icon-btn.whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #25D366, #1DB954);
  box-shadow: 0 12px 24px rgba(37, 198, 115, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  position: absolute;
  width: 21px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}

.hero-slider,
.hero-slide,
.hero-slide::before,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
  touch-action: pan-y;
  user-select: none;
}

.hero-slide {
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 750ms ease, visibility 750ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::before {
  z-index: 0;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(1.08);
  transform: scale(1.08);
  opacity: 0.24;
  content: "";
}

.hero-slide img {
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.05) saturate(1.06);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 21, 37, 0.68), rgba(7, 21, 37, 0.34) 48%, rgba(7, 21, 37, 0.12)),
    linear-gradient(0deg, rgba(7, 21, 37, 0.34), rgba(7, 21, 37, 0.04) 48%, rgba(7, 21, 37, 0.14));
  pointer-events: none;
}

html[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.10) 48%, rgba(0, 0, 0, 0.04)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.01) 48%, rgba(0, 0, 0, 0.06));
}

html[data-theme="dark"] .hero-slide img {
  filter: brightness(1.15) saturate(1.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
  min-height: 100svh;
  padding-top: calc(var(--header) + 44px);
  padding-bottom: 118px;
}

.hero-copy h1 {
  color: var(--white);
  max-width: 740px;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  font-weight: 650;
}

.hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(7, 21, 37, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.lead-card {
  align-self: center;
  width: min(100%, 380px);
  margin-inline: auto 0;
  padding: clamp(18px, 2.2vw, 24px);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.lead-card.hidden {
  display: none;
}

html[data-theme="dark"] .lead-card {
  background: var(--bg-surface);
  border-color: var(--border-color);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.lead-card h2 {
  margin-bottom: 16px;
  color: var(--primary-brand);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.05;
}

html[data-theme="dark"] .lead-card h2,
html[data-theme="dark"] .lead-card label {
  color: var(--text-main);
}

.form-kicker {
  margin: 0 0 10px;
  color: var(--secondary-accent);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--text-main);
  font-weight: 900;
}

.lead-card input,
.lead-card select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--text-main);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  outline: 0;
  font-weight: 760;
}

html[data-theme="dark"] .lead-card input,
html[data-theme="dark"] .lead-card select {
  color: var(--text-main);
  background: var(--bg-surface);
  border-color: var(--border-color);
}

.lead-card input::placeholder {
  color: var(--text-muted);
}

html[data-theme="dark"] .lead-card input::placeholder {
  color: var(--text-muted);
}

.lead-card input:focus,
.lead-card select:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 4px rgba(43, 138, 126, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  text-align: center;
}

html[data-theme="dark"] .form-note {
  color: var(--text-muted);
}

.float-shape {
  display: none;
}

.shape-one {
  top: 20%;
  right: 8%;
}

.shape-two {
  right: 20%;
  bottom: 22%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  animation-delay: 1.2s;
}

.shape-three {
  left: 7%;
  bottom: 16%;
  width: 56px;
  height: 56px;
  animation-delay: 2s;
}

.slider-controls {
  position: absolute;
  inset: auto 16px 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.slider-arrow::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
}

.slider-arrow.prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.slider-arrow.next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.slider-dots {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.52);
  border: 0;
  border-radius: 999px;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.is-active {
  width: 30px;
  background: var(--orange);
}

.trust-strip {
  position: relative;
  z-index: 3;
  padding: 22px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

html[data-theme="dark"] .trust-strip {
  background: rgba(255, 255, 255, 0.04);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  justify-content: center;
}

.trust-grid div {
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

html[data-theme="dark"] .trust-grid div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(224, 106, 59, 0.12));
}

.trust-grid strong {
  display: block;
  color: var(--orange);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
}

.trust-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.about {
  background: linear-gradient(180deg, var(--paper), var(--surface));
}

.about-grid,
.contact-grid,
.testimonial-layout {
  display: grid;
  gap: 34px;
}

.media-stack {
  position: relative;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.glass-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  color: var(--white);
  background: rgba(33, 22, 15, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.glass-note strong,
.glass-note span {
  display: block;
}

.glass-note span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.section-copy {
  align-self: center;
}

.mission-grid {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.mission-grid article,
.feature-card,
.testimonial-card,
.contact-card,
.course-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.mission-grid article {
  padding: 20px;
}

.mission-grid p,
.feature-card p,
.course-card p,
.testimonial-card p {
  margin-bottom: 0;
}

.approach-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 740;
}

.approach-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(224, 106, 59, 0.12);
  content: "";
}

.courses {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.course-grid {
  display: grid;
  gap: 18px;
}

.course-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(16, 32, 51, 0.14);
}

.course-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(30, 70, 32, 0.09), rgba(248, 250, 252, 0.8));
}

html[data-theme="dark"] .course-card img {
  background: linear-gradient(135deg, rgba(78, 158, 84, 0.16), rgba(255, 255, 255, 0.04));
}

.course-detail-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 16, 30, 0.82);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 1200;
}

.course-detail-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.course-detail-panel {
  width: min(760px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: var(--shadow-card);
  padding: 28px;
  position: relative;
}

.course-detail-panel img {
  width: 100%;
  aspect-ratio: 2.25;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.course-detail-panel h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.course-detail-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.course-detail-panel ul li {
  margin-bottom: 10px;
}

.course-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.08);
  cursor: pointer;
}

.course-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

body.modal-open {
  overflow: hidden;
}

/* Ensure gallery, about and courses sections have appropriate dark surfaces */
html[data-theme="dark"] .gallery {
  background: rgba(255, 255, 255, 0.02);
}

html[data-theme="dark"] .gallery-arrow {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
  color: var(--white);
}

html[data-theme="dark"] .about {
  background: linear-gradient(180deg, var(--paper), rgba(255, 255, 255, 0.02));
}

html[data-theme="dark"] .courses {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.03));
}


.course-body {
  position: relative;
  padding: 26px 22px 24px;
}

.course-icon {
  position: absolute;
  top: -28px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(224, 106, 59, 0.22);
  font-size: 0.88rem;
  font-weight: 950;
}

.course-body h3 {
  margin-top: 8px;
}

.course-body a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-deep);
  font-weight: 920;
}

.why {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.board-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 0 14px;
  margin-bottom: 16px;
  scroll-behavior: smooth;
}

.board-scroll span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(30, 70, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  font-weight: 700;
  white-space: nowrap;
}

html[data-theme="dark"] .board-scroll span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-main);
}

.board-scroll::-webkit-scrollbar {
  height: 8px;
}

.board-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.board-scroll::-webkit-scrollbar-thumb {
  background: rgba(88, 131, 83, 0.4);
  border-radius: 999px;
}

.feature-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  background: rgba(78, 158, 84, 0.08);
  border-radius: 50%;
  content: "";
}

.feature-card:hover {
  border-color: rgba(224, 106, 59, 0.32);
  transform: translateY(-5px);
}

.feature-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--orange-deep);
  background: var(--orange-soft);
  border-radius: 50%;
  font-weight: 950;
}

.gallery {
  background: var(--surface);
}

.gallery-shell {
  position: relative;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 6px 4px 18px;
  touch-action: pan-x;
  user-select: none;
}

.gallery-controls {
  position: absolute;
  top: -66px;
  right: 0;
  display: flex;
  gap: 10px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

html[data-theme="dark"] .gallery-item {
  background: rgba(255, 255, 255, 0.03);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(224, 106, 59, 0.72);
  font-weight: 950;
  opacity: 0;
  content: "View";
  transition: opacity 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, background 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: var(--orange);
  transform: translateY(-2px);
}

.gallery-arrow::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
}

.gallery-arrow.prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.gallery-arrow.next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.testimonials {
  background:
    linear-gradient(135deg, rgba(7, 21, 37, 0.96), rgba(15, 118, 110, 0.9)),
    var(--dark);
}

.testimonials h2,
.testimonials .section-kicker {
  color: var(--white);
}

.testimonials p {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-shell {
  position: relative;
  min-height: 310px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 360ms ease, transform 360ms ease;
  backdrop-filter: blur(18px);
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card p {
  margin: 18px 0;
  color: var(--white);
  font-size: 1.08rem;
}

.testimonial-card strong {
  color: #ffd28f;
}

.testimonial-card span {
  color: rgba(255, 255, 255, 0.72);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 78px;
  padding: 22px 56px 22px 24px;
  color: var(--primary-brand);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
  line-height: 1.25;
}

.faq-question::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(30, 70, 32, 0.06);
}

.faq-item.is-open .faq-question::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-question span {
  color: var(--primary-brand);
  font-size: 1.08rem;
}

.faq-answer {
  display: none;
  margin: 0;
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

html[data-theme="dark"] .faq {
  background: rgba(255, 255, 255, 0.02);
}

html[data-theme="dark"] .faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .faq-question,
html[data-theme="dark"] .faq-question span {
  color: #fdfefe;
}

html[data-theme="dark"] .faq-question:hover,
html[data-theme="dark"] .faq-question:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .faq-item p {
  color: rgba(255, 255, 255, 0.80);
}

.contact {
  background: linear-gradient(180deg, var(--paper), var(--white));
}

html[data-theme="dark"] .contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

html[data-theme="dark"] .map-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

html[data-theme="dark"] .contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-card h3 {
  margin-bottom: 6px;
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  color: var(--accent-teal);
  font-weight: 900;
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--primary-brand);
  border-radius: 50%;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-form-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

html[data-theme="dark"] .contact-form-card {
  background: var(--surface);
  border-color: var(--border-color);
}

.contact-form-head h3 {
  margin: 12px 0 8px;
  color: var(--text-main);
  font-size: 1.4rem;
}

.contact-form-head .form-help {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text-main);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text-main);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  outline: 0;
  font-weight: 700;
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea,
html[data-theme="dark"] .contact-form select {
  color: var(--text-main);
  background: var(--surface);
  border-color: var(--border-color);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 4px rgba(43, 138, 126, 0.14);
}

.contact-form .form-submit {
  width: 100%;
  margin-top: 8px;
}

.contact-form .form-note {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.map-card {
  min-height: 360px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] .map-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.site-footer {
  background: #040d09;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding: 58px 0 34px;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.site-footer p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  list-style: none;
}

.site-footer li {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 950;
}

.social-links a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  line-height: 1;
}

.social-links a[aria-label="Instagram"] .icon {
  transform: translateY(0.7px);
}

.footer-map a {
  display: block;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

html[data-theme="dark"] .footer-map a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  font-size: 0.92rem;
}

.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 16px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(61, 35, 16, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}

.floating-call {
  bottom: 92px;
  background: linear-gradient(135deg, #2F80ED, #1E66D1);
}

.floating-whatsapp {
  bottom: 22px;
  background: linear-gradient(135deg, #25D366, #1DB954);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(100%, 1100px);
  max-height: 84svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow.prev {
  left: 18px;
}

.lightbox-arrow.next {
  right: 18px;
}

.lightbox-arrow::before {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
}

.lightbox-arrow.prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.lightbox-arrow.next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.lightbox-counter {
  position: absolute;
  right: 22px;
  bottom: 18px;
  margin: 0;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--white);
  content: "";
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (min-width: 560px) {
  .container {
    width: min(100% - 44px, var(--container));
  }

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

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

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

@media (min-width: 760px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  :root {
    --header: 88px;
  }

  .section {
    padding: 106px 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 10px 11px;
  }

  .nav-actions {
    display: flex;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  }

  .about-grid,
  .contact-grid,
  .testimonial-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

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

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

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

  .floating-call,
  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 979px) {
  .nav-actions {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 559px) {
  .navbar {
    justify-content: flex-start;
    gap: 8px;
  }

  .brand {
    margin-right: auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .nav-actions {
    display: flex;
    margin-left: 0;
    order: 2;
  }

  .nav-actions .icon-btn {
    display: none;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    order: 3;
    margin-left: 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    align-items: center;
    padding-top: calc(var(--header) + 36px);
    padding-bottom: 108px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .lead-card {
    width: 100%;
    margin-top: 10px;
  }

  .lead-card h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .gallery-controls {
    position: static;
    justify-content: flex-end;
    margin-bottom: 12px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    font-size: 0.8rem;
  }

  .float-shape {
    display: none;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

html[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.02)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.005) 48%, rgba(0, 0, 0, 0.04));
}

html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .about .section-copy h2,
html[data-theme="dark"] .testimonial-shell .section-kicker {
  color: #f7fdf7;
}

html[data-theme="dark"] .why {
  background: linear-gradient(180deg, rgba(7, 17, 10, 0.95), rgba(14, 32, 17, 0.95));
}

html[data-theme="dark"] .why .section-heading h2,
html[data-theme="dark"] .why .section-heading p,
html[data-theme="dark"] .why .section-kicker {
  color: #fdfefe;
}

html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .course-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-form-card,
html[data-theme="dark"] .lead-card,
html[data-theme="dark"] .gallery-item,
html[data-theme="dark"] .trust-strip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .feature-card h3,
html[data-theme="dark"] .course-card h3,
html[data-theme="dark"] .testimonial-card strong,
html[data-theme="dark"] .contact-card h3,
html[data-theme="dark"] .contact-form-head h3,
html[data-theme="dark"] .hero .eyebrow,
html[data-theme="dark"] .hero-text,
html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .why .feature-card span {
  color: #fdfefe;
}

html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .course-card p,
html[data-theme="dark"] .testimonial-card p,
html[data-theme="dark"] .contact-card p,
html[data-theme="dark"] .contact-form p,
html[data-theme="dark"] .site-footer p,
html[data-theme="dark"] .footer-map a,
html[data-theme="dark"] .nav-menu a {
  color: rgba(255, 255, 255, 0.80);
}

html[data-theme="dark"] .site-footer a,
html[data-theme="dark"] .contact-card a,
html[data-theme="dark"] .footer-map a {
  color: #d5f7d4;
}

html[data-theme="dark"] .site-footer {
  background: #030907;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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