:root {
  --blue-950: #071A52;
  --blue-900: #0B2E75;
  --blue-800: #1E40AF;
  --blue-700: #2563eb;
  --blue-100: #e9f3ff;
  --orange: #F97316;
  --orange-dark: #ea580c;
  --teal: #1aa89a;
  --white: #ffffff;
  --ink: #0F172A;
  --muted: #62718a;
  --line: #dce6f5;
  --surface: #F8FAFC;
  --shadow: 0 22px 56px rgba(7, 27, 58, 0.14);
  --radius: 8px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans Devanagari", "Mangal", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.6);
}

main {
  padding-top: 92px;
}

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

.is-hidden-public {
  display: none !important;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 88px 0;
  scroll-margin-top: 84px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0f172a 0%, #111c63 54%, #172a8f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, min-height 0.25s ease;
}

.site-header.scrolled {
  background: linear-gradient(135deg, #0f172a 0%, #111c63 54%, #172a8f 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.34);
}

.navbar {
  width: min(100% - 80px, 1450px);
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #ffffff 0%, #172a8f 48%, #f97316 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1;
  overflow-wrap: normal;
}

.brand-highlight {
  color: #ffffff;
  font-size: 1.58rem;
  font-weight: 950;
}

.brand-highlight::first-letter {
  color: #f97316;
}

.brand-text small {
  margin-top: 4px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  justify-self: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  border-radius: 999px;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: #f97316;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--white);
  background: transparent;
  transform: translateY(-1px);
  outline: none;
  text-shadow: 0 0 18px rgba(249, 115, 22, 0.36);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 14px 28px;
  color: var(--white);
  background: linear-gradient(135deg, #ff9f1a, #f97316 58%, #f04c1c);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.22);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(30, 58, 138, 0.3);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.mobile-only {
  display: none;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 4vh, 48px) 0 clamp(18px, 3vh, 28px);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 140, 66, 0.22), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.1), transparent 20%),
    radial-gradient(circle at 70% 72%, rgba(255, 140, 66, 0.16), transparent 26%),
    linear-gradient(135deg, #0a0f3d 0%, #1b1464 52%, #371c9c 100%);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 15, 61, 0.72), rgba(27, 20, 100, 0.18)),
    radial-gradient(circle at 18% 70%, rgba(255, 140, 66, 0.2), transparent 23%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 74px);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.1) 42%, transparent 58%);
  animation: hero-sheen 8s ease-in-out infinite;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shapes span {
  position: absolute;
  width: 88px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
  animation: float-shape 8s ease-in-out infinite;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.hero-shapes span:nth-child(1) {
  left: 7%;
  bottom: 12%;
  border-radius: 28px;
}

.hero-shapes span:nth-child(2) {
  right: 9%;
  top: 16%;
  width: 66px;
  border-radius: 999px;
  animation-delay: -2s;
}

.hero-shapes span:nth-child(3) {
  right: 34%;
  bottom: 18%;
  width: 46px;
  border-radius: 16px;
  transform: rotate(18deg);
  animation-delay: -4s;
}

.hero-shapes span:nth-child(4) {
  left: 42%;
  top: 15%;
  width: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  animation-delay: -1s;
}

.hero-shapes span:nth-child(5) {
  left: 52%;
  bottom: 14%;
  width: 13px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.52);
  animation-delay: -3s;
}

.hero-shapes span:nth-child(6) {
  right: 22%;
  top: 42%;
  width: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  animation-delay: -5s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 96px, 1320px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 3.5vw, 48px);
  padding-top: 0;
  margin-bottom: 20px;
}

.hero-content {
  max-width: 100%;
  padding: 0;
  align-self: center;
}

.hero-info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-info-pills a,
.hero-info-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-label {
  margin: 0 0 10px;
  color: #ff8c42;
  font-size: 0.96rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.4rem, 6vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--white);
  font-size: 70px;
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.hero-title > span {
  display: block;
}

.hero-headline {
  max-width: 700px;
  min-height: 1.95em;
  margin: 0;
  background: linear-gradient(135deg, #3b0764 0%, #581c87 15%, #7c3aed 30%, #9333ea 45%, #f97316 65%, #fb923c 80%, #fdba74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(3.4rem, 5vw, 5.2rem);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 10px 28px rgba(15, 23, 42, 0.38));
  white-space: pre-line;
  overflow-wrap: normal;
  word-break: normal;
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.hero-headline.is-changing {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
}

.hero-highlight {
  background: linear-gradient(135deg, #f97316, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  margin: 0 0 16px;
  color: var(--blue-900);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 1.16rem;
  line-height: 1.3;
}

.hero-subtitle {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  line-height: 1.62;
  letter-spacing: 0.01em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero .btn {
  min-height: 58px;
  min-width: 220px;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 950;
}

.hero .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #172a8f);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 14px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.32);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-social-proof span {
  color: #fbbf24;
  letter-spacing: 2px;
  text-shadow: 0 8px 22px rgba(251, 191, 36, 0.26);
}

.hero-social-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(30, 64, 175, 0.12);
}

.form-row {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 17px;
  top: 18px;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--blue-900);
  opacity: 0.72;
  pointer-events: none;
}

.field-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.form-row label {
  position: absolute;
  left: 50px;
  top: 16px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0 7px;
  font-size: 0.95rem;
  font-weight: 800;
  pointer-events: none;
  transition: transform 0.18s ease, color 0.18s ease, font-size 0.18s ease;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 62px;
  padding: 20px 18px 10px 52px;
  color: var(--ink);
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.14);
  border-radius: 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row textarea {
  min-height: 138px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue-700);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-row input:focus + label,
.form-row input:not(:placeholder-shown) + label,
.form-row textarea:focus + label,
.form-row textarea:not(:placeholder-shown) + label {
  color: var(--orange-dark);
  font-size: 0.78rem;
  transform: translateY(-27px);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status.success {
  color: #168044;
}

.form-status.error {
  color: #c53030;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 16px 34px rgba(7, 27, 58, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(8, 47, 104, 0.24);
  filter: saturate(1.08);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #1E3A8A, #2563eb 48%, #F97316);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1E3A8A, #2563eb 48%, #F97316);
}

.btn-secondary {
  color: var(--blue-900);
  background: linear-gradient(135deg, #ffd187, var(--orange));
}

.btn-secondary:hover {
  background: #ff9a36;
}

.hero .btn-primary,
.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #172a8f);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero .btn-secondary,
.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  color: #ffffff;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-left: -10px;
  background: linear-gradient(135deg, #ffffff, #172a8f);
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
}

.hero-avatars span:first-child {
  margin-left: 0;
}

.hero-proof strong {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f97316;
  font-size: 1.3rem;
  line-height: 1;
}

.hero-proof em {
  color: #ffffff;
  font-style: normal;
  font-weight: 800;
}

.hero-proof p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 838px;
  min-width: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(48px);
  animation: hero-orb-float 9s ease-in-out infinite;
}

.hero-glow-orb--one {
  top: -48px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: rgba(255, 140, 66, 0.55);
}

.hero-glow-orb--two {
  left: -36px;
  bottom: 12%;
  width: 160px;
  height: 160px;
  background: rgba(255, 140, 66, 0.38);
  animation-delay: -3s;
}

.hero-glow-orb--three {
  right: 18%;
  bottom: -52px;
  width: 220px;
  height: 220px;
  background: rgba(255, 140, 66, 0.28);
  animation-delay: -5.5s;
}

.hero-glass-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none;
}

.hero-swiper-controls {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 838px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-swiper-shell {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  max-width: 700px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 18px 48px rgba(27, 20, 100, 0.42),
    0 8px 28px rgba(55, 28, 156, 0.28),
    0 0 48px rgba(55, 28, 156, 0.16);
}

.hero-swiper {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 560px;
  overflow: hidden;
  border-radius: 30px;
}

.hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hero-slide-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #0a0f3d;
  border-radius: 30px;
  overflow: hidden;
}

.hero-slide-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #0a0f3d;
  transform: none;
}

.hero-swiper .swiper-slide-active .hero-slide-card img {
  transform: none;
}

.hero-swiper-pagination {
  bottom: 18px !important;
  z-index: 4;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8c42, #f97316);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

.hero-swiper-prev,
.hero-swiper-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(27, 20, 100, 0.35);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-swiper-prev::after,
.hero-swiper-next::after {
  font-size: 15px;
  font-weight: 900;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover,
.hero-swiper-prev:focus-visible,
.hero-swiper-next:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 36px rgba(55, 28, 156, 0.42);
  transform: scale(1.06);
  outline: none;
}

@keyframes hero-orb-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.06);
  }
}

.hero-stat-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  min-width: 150px;
  min-height: 132px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 1rem;
  white-space: nowrap;
}

.hero-stat-card span {
  font-size: 2rem;
  line-height: 1;
}

.hero-stat-card small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.hero-stat-one {
  left: -66px;
  top: -24px;
}

.hero-stat-two {
  right: -82px;
  top: 18%;
}

.hero-stat-three {
  left: -108px;
  bottom: 72px;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1320px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin-top: 0;
  padding: 18px 28px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-metrics div {
  position: relative;
  overflow: hidden;
}

.hero-metrics div::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(249, 115, 22, 0.08));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-metrics div:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.hero-metrics div {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-metrics span,
.hero-metrics strong,
.hero-metrics small {
  position: relative;
  z-index: 1;
}

.hero-metrics div:first-child {
  border-left: 0;
}

.hero-metrics span {
  grid-row: 1 / 3;
  font-size: 2rem;
}

.hero-metrics strong {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
}

.split-layout,
.benefits-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 40px;
}

.section-copy p,
.section-heading p,
.contact-panel p,
.site-footer p,
.feature-card p,
.course-card p {
  color: var(--muted);
  margin-top: 0;
}

.section-copy > p:last-child {
  margin-bottom: 0;
  font-size: 1.06rem;
}

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

.stats-panel div {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats-panel strong {
  display: block;
  color: var(--blue-700);
  font-size: 2rem;
  line-height: 1;
}

.stats-panel span {
  color: var(--muted);
  font-weight: 700;
}

.about {
  background: #ffffff;
}

.about-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 22%, rgba(249, 115, 22, 0.07), transparent 19%),
    radial-gradient(circle at 72% 44%, rgba(79, 70, 229, 0.12), transparent 28%),
    linear-gradient(135deg, #f8f9fc 0%, #ffffff 44%, #f4f7ff 100%);
  padding: 116px 0 48px;
  isolation: isolate;
}

.about-showcase::before {
  content: "";
  position: absolute;
  left: -78px;
  top: 86px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 30px 80px rgba(7, 26, 82, 0.08);
  filter: blur(1px);
  z-index: 0;
}

.about-showcase::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: 28px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.07);
  filter: blur(20px);
  z-index: 0;
}

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

.about-decor-soft {
  left: 54%;
  top: 178px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 232, 255, 0.96), rgba(240, 242, 255, 0.34) 58%, transparent 70%);
  filter: blur(0.2px);
}

.about-decor-ring {
  right: 52px;
  top: 292px;
  width: 370px;
  height: 370px;
  border: 2px solid rgba(249, 115, 22, 0.58);
  border-left-color: transparent;
  border-bottom-color: rgba(249, 115, 22, 0.28);
  border-radius: 50%;
}

.about-decor-dots {
  left: calc(50% + 26px);
  top: 132px;
  width: 142px;
  height: 142px;
  opacity: 0.76;
  background-image: radial-gradient(circle, rgba(249, 115, 22, 0.84) 1.6px, transparent 1.8px);
  background-size: 22px 22px;
}

.about-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 96px, 1450px);
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.about-showcase-content {
  max-width: 590px;
  padding-top: 10px;
}

.about-badge {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 30px;
  padding: 12px 24px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 900;
}

.about-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.about-showcase-content h2 {
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: clamp(3.4rem, 5.1vw, 5.65rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-showcase-content h2 span {
  color: #f45d0c;
}

.about-title-line {
  display: block;
  width: 76px;
  height: 4px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, #ff6b0a, #fb923c);
  border-radius: 999px;
}

.about-lead {
  margin: 0;
  max-width: 550px;
  color: #263653;
  font-size: clamp(1.06rem, 1.2vw, 1.22rem);
  font-weight: 650;
  line-height: 1.95;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 44px;
}

.about-actions .btn {
  min-width: 224px;
  min-height: 70px;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 950;
}

.about-actions .btn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.about-actions .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0b0f52 0%, #17176d 100%);
  box-shadow: 0 18px 38px rgba(11, 15, 82, 0.24);
}

.about-actions .btn-secondary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a1f 0%, #f45d0c 100%);
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.25);
}

.about-actions .btn:hover .btn-arrow,
.about-actions .btn:focus-visible .btn-arrow {
  transform: translateX(4px);
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.about-media {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  justify-items: end;
  isolation: isolate;
}

.about-media-shape {
  position: absolute;
  pointer-events: none;
}

.about-blob {
  right: 82px;
  top: 74px;
  width: 420px;
  height: 420px;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(135deg, rgba(219, 223, 255, 0.82), rgba(248, 249, 255, 0.18));
  z-index: -2;
}

.about-arch {
  right: 0;
  top: 86px;
  width: 176px;
  height: 420px;
  border-radius: 120px 120px 0 0;
  background: linear-gradient(180deg, #14135d, #0b0f52);
  z-index: -1;
}

.about-orbit {
  right: 28px;
  top: 142px;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(249, 115, 22, 0.36);
  border-left-color: transparent;
  border-top-color: rgba(249, 115, 22, 0.16);
  border-radius: 50%;
  transform: rotate(-19deg);
  z-index: -2;
}

.about-dot-field {
  left: 32px;
  top: 36px;
  width: 128px;
  height: 128px;
  opacity: 0.72;
  background-image: radial-gradient(circle, rgba(249, 115, 22, 0.86) 1.6px, transparent 1.8px);
  background-size: 20px 20px;
  z-index: -1;
}

.about-photo,
.poster-card {
  appearance: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(30, 64, 175, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.13);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-photo:hover,
.poster-card:hover,
.about-photo:focus-visible,
.poster-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.46);
  box-shadow: 0 28px 68px rgba(7, 27, 58, 0.18);
  outline: none;
}

.about-photo img,
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  transition: transform 0.35s ease;
}

.about-photo:hover img,
.poster-card:hover img {
  transform: scale(1.035);
}

.about-photo {
  border: 18px solid #ffffff;
  border-radius: 28px;
  box-shadow: 0 34px 82px rgba(7, 26, 82, 0.18);
}

.about-photo-main {
  position: relative;
  z-index: 1;
  width: min(72%, 410px);
  aspect-ratio: 0.72 / 1;
  margin-right: 76px;
  background: #ffffff;
}

.about-photo-main img,
.about-photo-small img {
  border-radius: 14px;
  object-fit: cover;
  object-position: center 22%;
}

.about-photo-small {
  position: absolute;
  left: 20px;
  bottom: 96px;
  z-index: 2;
  width: min(52%, 310px);
  aspect-ratio: 0.82 / 1;
  transform: rotate(-3deg);
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(7, 26, 82, 0.17);
}

.about-photo-small:hover,
.about-photo-small:focus-visible {
  transform: translateY(-6px) rotate(-2deg);
}

.about-result-card {
  position: absolute;
  right: 0;
  bottom: 72px;
  z-index: 4;
  width: 190px;
  min-height: 194px;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 4px;
  padding: 28px 26px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(224, 229, 242, 0.9);
  border-radius: 24px;
  box-shadow: 0 28px 68px rgba(7, 26, 82, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-result-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #ffffff;
  background: #22205f;
  border-radius: 999px;
}

.about-result-card svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.about-result-card strong {
  color: #f45d0c;
  font-size: 1.78rem;
  font-weight: 950;
  line-height: 1;
}

.about-result-card b {
  font-size: 1rem;
  line-height: 1.2;
}

.about-result-card small {
  color: #52617a;
  font-weight: 800;
}

.about-feature-strip {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1320px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 224, 240, 0.94);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(7, 26, 82, 0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-feature-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  border-left: 1px solid rgba(30, 64, 175, 0.15);
}

.about-feature-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.about-feature-item:last-child {
  padding-right: 0;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.feature-icon-orange {
  color: #f45d0c;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(249, 115, 22, 0.16);
}

.feature-icon-blue {
  color: #4f46e5;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(79, 70, 229, 0.16);
}

.about-feature-item h3 {
  margin: 0 0 3px;
  color: #11124f;
  font-size: 1.06rem;
  font-weight: 950;
}

.about-feature-item p {
  margin: 0;
  color: #5d6880;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.highlights-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(249, 115, 22, 0.12), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.13), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 46%, #e9f3ff 100%);
}

.highlights-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.highlights-content {
  max-width: 650px;
}

.highlights-badge {
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 16px;
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.09);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 999px;
  font-weight: 950;
}

.highlights-content h2 {
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  line-height: 1.06;
}

.highlights-subheading {
  margin: 0 0 28px;
  color: #53627a;
  font-size: clamp(1.04rem, 1.2vw, 1.18rem);
  font-weight: 800;
}

.program-list {
  display: grid;
  gap: 14px;
}

.program-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 64, 175, 0.11);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(7, 27, 58, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 24px 62px rgba(7, 27, 58, 0.13);
}

.program-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700) 58%, var(--orange));
  border-radius: 16px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.22);
}

.program-card h3 {
  margin-bottom: 4px;
  color: var(--blue-950);
}

.program-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.highlights-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.highlights-actions .btn {
  min-width: 180px;
  min-height: 56px;
  border-radius: 16px;
}

.poster-showcase {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}

.poster-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 24px;
  box-shadow: 0 30px 84px rgba(7, 27, 58, 0.16);
}

.poster-featured,
.poster-float {
  position: absolute;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)) padding-box,
    linear-gradient(135deg, rgba(30, 64, 175, 0.26), rgba(249, 115, 22, 0.35)) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.poster-featured {
  right: 8%;
  top: 44px;
  z-index: 2;
  width: min(72%, 390px);
  aspect-ratio: 0.75 / 1;
  animation: premium-float 7s ease-in-out infinite;
}

.poster-float {
  z-index: 3;
  width: min(42%, 230px);
  animation: premium-float 6s ease-in-out infinite;
}

.poster-float-one {
  left: 4%;
  top: 118px;
  animation-delay: -2s;
}

.poster-float-two {
  left: 12%;
  bottom: 58px;
  aspect-ratio: 0.76 / 1;
  animation-delay: -4s;
}

.poster-mobile-extra {
  display: none;
}

.poster-card img {
  border-radius: 18px;
}

.highlights-section {
  overflow: hidden;
  background: #f8fafc;
}

.highlights-heading {
  margin-bottom: 46px;
}

.highlights-heading h2 {
  color: var(--blue-950);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.highlights-heading p:last-child {
  margin: 0;
  color: #52627a;
  font-weight: 800;
}

.premium-carousel {
  position: relative;
}

.premium-carousel .poster-showcase {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  isolation: auto;
}

.premium-carousel .poster-card {
  position: relative;
  inset: auto;
  width: auto;
  min-height: 336px;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 12px 20px;
  color: var(--blue-950);
  background: #ffffff;
  border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 46px rgba(7, 27, 58, 0.1);
  animation: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.premium-carousel .poster-card:hover,
.premium-carousel .poster-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow: 0 28px 70px rgba(7, 27, 58, 0.16);
}

.premium-carousel .poster-card img {
  width: 100%;
  height: 214px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  transition: transform 0.32s ease;
}

.premium-carousel .poster-card:hover img {
  transform: scale(1.04);
}

.premium-carousel .poster-card span {
  margin-top: 18px;
  color: var(--blue-950);
  font-weight: 950;
  line-height: 1.25;
  text-align: center;
}

.premium-carousel .poster-card small {
  margin-top: 8px;
  color: #52627a;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--blue-950);
  background: #ffffff;
  border: 1px solid rgba(30, 64, 175, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(7, 27, 58, 0.12);
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: var(--orange);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 20px 48px rgba(7, 27, 58, 0.18);
  outline: none;
}

.carousel-arrow-prev {
  left: -26px;
}

.carousel-arrow-next {
  right: -26px;
}

.slider-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  background: rgba(30, 64, 175, 0.24);
  border: 0;
  border-radius: 999px;
  transition: width 0.22s ease, background 0.22s ease;
}

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

.highlights-section .slider-dots {
  display: flex;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(4, 12, 32, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.image-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(100%, 1080px);
  max-height: min(86vh, 900px);
  object-fit: contain;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.why-us {
  background:
    radial-gradient(circle at 8% 12%, rgba(249, 115, 22, 0.22), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(96, 165, 250, 0.18), transparent 26%),
    linear-gradient(135deg, #071A52 0%, #0B2E75 48%, #1E40AF 100%);
}

.why-us .section-heading h2,
.why-us .section-heading .eyebrow {
  color: var(--white);
}

.why-us .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.courses {
  background: #ffffff;
}

.benefits {
  background: linear-gradient(135deg, #f8fafc 0%, #eaf3ff 100%);
}

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

.feature-grid,
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.feature-card,
.course-card,
.contact-panel {
  height: 100%;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 27, 58, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.why-us .feature-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.why-us .feature-card h3 {
  color: var(--white);
}

.why-us .feature-card p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-card:hover,
.course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 26px 62px rgba(7, 27, 58, 0.16);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.course-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.course-image {
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(7, 26, 82, 0.12);
  transition: transform 0.4s ease;
}

.course-card:hover .course-image {
  transform: scale(1.05);
}

.course-label {
  margin: 0 0 8px;
  color: var(--orange-dark) !important;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.48), rgba(249, 115, 22, 0.5));
  border-radius: inherit;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.course-card:hover::before {
  opacity: 1;
}

.card-icon,
.course-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 14px;
  font-weight: 900;
}

.card-icon {
  position: relative;
  overflow: hidden;
  color: transparent;
  background: linear-gradient(135deg, #F97316, #2563eb);
}

.card-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
}

.card-icon::after {
  content: "";
  width: 18px;
  height: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  position: absolute;
  transform: rotate(-45deg);
}

.course-icon {
  color: var(--white);
  background: linear-gradient(135deg, #1E3A8A, #2563eb 46%, #F97316);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.18);
  font-size: 1.35rem;
}

.course-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.course-card h3 {
  min-height: 4.2em;
}

.course-card p:last-child {
  margin-top: auto;
}

.contact-map-button {
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-map-button:hover,
.contact-map-button:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

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

.course-card--extra {
  display: none;
  opacity: 0;
  transform: translateY(24px);
}

.course-grid.is-expanded .course-card--extra {
  display: flex;
  animation: course-card-reveal 0.55s ease forwards;
}

.course-grid.is-expanded .course-card--extra:nth-child(4) {
  animation-delay: 0.05s;
}

.course-grid.is-expanded .course-card--extra:nth-child(5) {
  animation-delay: 0.15s;
}

@keyframes course-card-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.courses-expand-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.courses-expand-btn {
  min-width: 240px;
  min-height: 54px;
  color: var(--blue-900);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), #f8fbff);
  border: 1px solid rgba(30, 64, 175, 0.16);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(7, 27, 58, 0.1);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.courses-expand-btn:hover,
.courses-expand-btn:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 22px 48px rgba(7, 27, 58, 0.14);
  outline: none;
}

.courses-expand-btn[aria-expanded="true"] {
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #f97316);
  border-color: transparent;
}

.course-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 5px 11px;
  color: #0B2E75;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.youtube-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.22), transparent 28%),
    radial-gradient(circle at 14% 72%, rgba(79, 70, 229, 0.22), transparent 26%),
    linear-gradient(135deg, #050b2c 0%, #071a52 46%, #0b2e75 100%);
  isolation: isolate;
}

.youtube-section::before,
.youtube-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.youtube-section::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 44%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px);
  opacity: 0.6;
}

.youtube-section::after {
  right: 11%;
  top: 16%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.055);
  transform: rotate(12deg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.youtube-bg-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(36px);
  z-index: 0;
}

.youtube-bg-glow-one {
  right: -80px;
  top: -40px;
  width: 360px;
  height: 360px;
  background: rgba(249, 115, 22, 0.36);
}

.youtube-bg-glow-two {
  left: 8%;
  bottom: -110px;
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.25);
}

.youtube-bg-grid {
  position: absolute;
  left: 48%;
  top: 16%;
  width: 150px;
  height: 150px;
  opacity: 0.54;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.52) 1.3px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}

.youtube-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 96px, 1350px);
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1.14fr);
  align-items: center;
  gap: clamp(46px, 6vw, 86px);
}

.youtube-section h2,
.youtube-section .eyebrow {
  color: var(--white);
}

.youtube-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.youtube-section-title .youtube-badge {
  margin-left: auto;
  margin-right: auto;
}

.youtube-section-title .youtube-badge::after {
  margin-left: auto;
  margin-right: auto;
}

.youtube-content {
  max-width: 540px;
}

.youtube-badge {
  width: fit-content;
  display: block;
  margin: 0 0 20px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 35%, #a855f7 70%, #7c3aed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.youtube-badge::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, #f97316, #a855f7);
  border-radius: 999px;
}

.youtube-section h2 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.12;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.youtube-subtitle {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.55;
}

.youtube-cta-text {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.55;
}

.youtube-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.youtube-btn {
  min-height: 60px;
  min-width: 170px;
  gap: 10px;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 950;
}

.youtube-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.youtube-btn-primary {
  background: linear-gradient(135deg, #ff8a1f 0%, #f45d0c 100%);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(249, 115, 22, 0.28);
}

.youtube-btn-secondary {
  background: linear-gradient(135deg, #ff8a1f 0%, #f45d0c 100%);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(249, 115, 22, 0.28);
}

.youtube-featured {
  position: relative;
}

.youtube-featured::before {
  content: "";
  position: absolute;
  inset: -26px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(249, 115, 22, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: rotate(-1.6deg);
  z-index: -1;
}

.youtube-video-shell {
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.075)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(249, 115, 22, 0.38), rgba(96, 165, 250, 0.38)) border-box;
  border: 1px solid transparent;
  border-radius: 28px;
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.38), 0 0 70px rgba(249, 115, 22, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.youtube-video-shell:hover {
  transform: translateY(-7px);
  box-shadow: 0 48px 116px rgba(0, 0, 0, 0.44), 0 0 90px rgba(249, 115, 22, 0.18);
}

.youtube-card-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: #050b2c;
  border-radius: 22px;
}

.youtube-card-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.youtube-card-placeholder {
  min-height: 360px;
  padding: 28px;
  text-align: center;
}

.youtube-card-placeholder div {
  max-width: 420px;
  display: grid;
  gap: 10px;
}

.youtube-card-placeholder strong {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.35;
}

.youtube-card-placeholder span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  line-height: 1.5;
}

.youtube-empty {
  margin: 0;
  padding: 22px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-weight: 800;
}

.success-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.28), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(96, 165, 250, 0.24), transparent 30%),
    linear-gradient(135deg, #071A52, #0B2E75 52%, #1E40AF);
}

.success-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 58%);
  animation: hero-sheen 9s ease-in-out infinite;
  pointer-events: none;
}

.success-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.success-cta-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.success-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.success-cta h2,
.success-cta .eyebrow {
  color: var(--white);
}

.success-cta h2 {
  margin-bottom: 12px;
}

.success-cta p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.success-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  margin-bottom: 12px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(8, 47, 104, 0.07);
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange-dark);
  font-weight: 900;
}

.contact {
  padding: 56px 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(37, 99, 235, 0.08), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(249, 115, 22, 0.1), transparent 25%),
    linear-gradient(180deg, #F8FAFC, #EEF4FF);
}

.contact-grid {
  width: min(100% - 32px, 1400px);
  max-width: 1400px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 40px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(7, 26, 82, 0.14);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(249, 115, 22, 0.14), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(37, 99, 235, 0.14), transparent 26%);
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
}

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.contact-info-item {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 64, 175, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(7, 26, 82, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-info-item:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.24);
  box-shadow: 0 18px 42px rgba(7, 26, 82, 0.12);
}

.contact-info-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #071A52, #2563eb 52%, #F97316);
  border-radius: 12px;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-info-item strong {
  color: var(--blue-900);
  font-size: 0.86rem;
}

.contact-info-item small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact .contact-actions {
  margin-top: 22px;
}

.contact .lead-form .btn {
  min-height: 60px;
  border-radius: 16px;
  font-size: 1.02rem;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 2px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(7, 26, 82, 0.9), rgba(37, 99, 235, 0.7), rgba(249, 115, 22, 0.82));
  box-shadow: 0 34px 90px rgba(7, 26, 82, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.map-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 110px rgba(7, 26, 82, 0.26);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  display: block;
  border: 0;
  border-radius: 22px;
}

.trust-strip {
  padding: 18px 0;
  background: linear-gradient(180deg, #EEF4FF, #f8fafc);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 64, 175, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(7, 26, 82, 0.08);
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 115, 22, 0.22), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(96, 165, 250, 0.16), transparent 30%),
    linear-gradient(135deg, #071A52, #0B2E75, #102A6B);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 -18px 60px rgba(7, 26, 82, 0.2);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-60%);
  animation: hero-sheen 10s ease-in-out infinite;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding: 34px 0 22px;
}

.footer-brand p {
  max-width: 330px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #F97316, #2563eb);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

.footer-logo strong {
  color: var(--white);
  line-height: 1.2;
}

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

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--orange);
  outline: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #F97316, #2563eb);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.26);
  outline: none;
}

.footer-admin-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 16px;
  color: var(--blue-900);
  background: var(--orange);
  border-radius: var(--radius);
  font-weight: 900;
}

.footer-admin-btn:hover,
.footer-admin-btn:focus-visible {
  color: var(--blue-900) !important;
  background: #ff9a36;
}

.social-links svg,
.floating-btn svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 15px 0 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a {
  color: var(--white);
  font-weight: 900;
}

.floating-btn,
.scroll-top {
  position: fixed;
  z-index: 90;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(8, 47, 104, 0.22);
}

.floating-btn {
  right: 18px;
  width: 56px;
  height: 56px;
  color: var(--white);
}

.floating-whatsapp {
  bottom: 96px;
  background: #1fa855;
}

.floating-call {
  bottom: 28px;
  background: var(--blue-700);
  font-size: 0.82rem;
}

.scroll-top {
  left: 18px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

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

@keyframes hero-sheen {
  0%,
  100% {
    transform: translateX(-55%);
    opacity: 0.08;
  }

  48% {
    opacity: 0.34;
  }

  60% {
    transform: translateX(55%);
    opacity: 0.12;
  }
}

@keyframes float-shape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@keyframes hero-image-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

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

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

@keyframes premium-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .navbar {
    width: min(100% - 48px, 1450px);
    grid-template-columns: minmax(220px, 0.8fr) auto minmax(190px, 0.8fr);
    gap: 16px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .nav-cta {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-highlight {
    font-size: 1.32rem;
  }

  .brand-text small {
    font-size: 0.78rem;
  }

  .about-showcase-grid {
    width: min(100% - 56px, 1120px);
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
    gap: 44px;
  }

  .about-feature-strip {
    width: min(100% - 56px, 1120px);
    padding: 22px 18px;
  }

  .about-feature-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 0 16px;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
  }

  .feature-icon svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 68px 0;
  }

  .hero-grid,
  .split-layout,
  .benefits-layout,
  .contact-grid,
  .youtube-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 28px;
  }

  .hero-grid {
    width: min(100% - 40px, 820px);
    padding-top: 0;
    gap: 32px;
    margin-bottom: 16px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-headline {
    min-height: auto;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1.12;
  }

  .hero-info-pills {
    max-width: 720px;
  }

  .hero-info-pills a,
  .hero-info-pills span {
    min-width: 0;
  }

  .hero-subtitle {
    max-width: 720px;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    justify-self: stretch;
    padding: 0;
  }

  .hero-swiper-controls {
    max-width: 100%;
    gap: 10px;
  }

  .hero-swiper-shell {
    max-width: 100%;
  }

  .hero-swiper,
  .hero-swiper .swiper-slide {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-glass-panel {
    inset: 0;
  }

  .hero-swiper-prev,
  .hero-swiper-next {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .hero-stat-one {
    left: -18px;
  }

  .hero-stat-two {
    right: -18px;
  }

  .hero-stat-three {
    left: -18px;
    bottom: 38px;
  }

  .hero-metrics {
    width: min(100% - 40px, 820px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    border-radius: 20px;
  }

  .hero-metrics div:nth-child(3) {
    border-left: 0;
  }

  .youtube-layout {
    width: min(100% - 44px, 820px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .youtube-content {
    max-width: 720px;
    text-align: center;
  }

  .youtube-actions {
    justify-content: center;
  }

  .youtube-featured::before {
    inset: -16px;
  }

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

  .highlights-showcase-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .poster-showcase {
    width: min(100%, 680px);
    min-height: 560px;
    margin-inline: auto;
  }

  .about-showcase-grid {
    grid-template-columns: 1fr;
    width: min(100% - 44px, 820px);
    gap: 44px;
  }

  .about-showcase-content {
    max-width: 720px;
  }

  .about-media {
    width: min(100%, 640px);
    min-height: 600px;
    margin-inline: auto;
    justify-items: center;
  }

  .about-photo-main {
    width: min(68%, 420px);
    margin-right: 40px;
  }

  .about-photo-small {
    left: 22px;
    bottom: 104px;
    width: min(50%, 300px);
  }

  .about-result-card {
    right: 12px;
    bottom: 76px;
  }

  .about-feature-strip {
    width: min(100% - 44px, 820px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    padding: 22px;
  }

  .about-feature-item {
    padding: 18px;
    border-left: 0;
    border-top: 1px solid rgba(30, 64, 175, 0.12);
  }

  .about-feature-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .about-feature-item:nth-child(odd) {
    border-right: 1px solid rgba(30, 64, 175, 0.12);
  }

  .course-card {
    display: flex;
    flex-direction: column;
  }

  .contact-grid {
    width: min(100% - 40px, 820px);
    gap: 26px;
  }

  .contact-panel {
    justify-content: flex-start;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 440px;
    height: 440px;
  }

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

  .success-cta-inner {
    grid-template-columns: 1fr;
  }

  .success-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  main {
    padding-top: 76px;
  }

  .site-header {
    background: linear-gradient(135deg, #0f172a 0%, #111c63 54%, #172a8f 100%);
  }

  .navbar {
    width: min(100% - 28px, var(--container));
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 76px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

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

  .brand-text {
    max-width: 210px;
  }

  .brand-highlight {
    font-size: 1.2rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: initial;
    z-index: 10000;
  }

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

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

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

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    width: 280px;
    height: 100vh;
    margin-left: auto;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 96px 20px 24px;
    background: linear-gradient(135deg, #0f172a, #172a8f);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px 0 0 22px;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 13px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    font-weight: 600;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active {
    color: var(--white);
    background: rgba(249, 115, 22, 0.16);
  }

  .nav-cta {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hero-actions,
  .about-actions,
  .highlights-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero .btn,
  .about-actions .btn,
  .highlights-actions .btn,
  .contact-actions .btn,
  .success-cta-actions .btn {
    width: 100%;
  }

  .hero-info-pills {
    gap: 8px;
  }

  .hero-info-pills a,
  .hero-info-pills span {
    font-size: 0.84rem;
    max-width: 100%;
  }

  .hero-label {
    font-size: 0.76rem;
  }

  .hero-headline {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-stat-card {
    min-width: 132px;
    min-height: 96px;
    padding: 14px;
    font-size: 0.88rem;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    justify-self: stretch;
    padding: 0;
  }

  .hero-swiper-controls {
    max-width: 100%;
    gap: 8px;
  }

  .hero-swiper-shell {
    border-radius: 24px;
    max-width: 100%;
  }

  .hero-swiper {
    border-radius: 24px;
    height: auto;
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .hero-swiper .swiper-slide {
    height: auto;
  }

  .hero-slide-card {
    border-radius: 24px;
    min-height: 200px;
    height: auto;
    padding: 0;
  }

  .hero-slide-card img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  .hero-glass-panel {
    inset: 0;
    border-radius: 28px;
  }

  .hero-swiper-prev,
  .hero-swiper-next {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .hero-swiper-prev::after,
  .hero-swiper-next::after {
    font-size: 13px;
  }

  .hero-stat-one,
  .hero-stat-two,
  .hero-stat-three {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-metrics div,
  .hero-metrics div:nth-child(3) {
    justify-content: start;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px;
  }

  .hero-metrics div:first-child {
    border-top: 0;
  }

  .feature-grid,
  .course-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .course-image {
    width: 100%;
    height: 220px;
  }

  .about-showcase {
    padding: 64px 0 36px;
  }

  .youtube-section {
    padding: 58px 0;
  }

  .youtube-layout {
    width: min(100% - 32px, 640px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .youtube-content {
    max-width: 100%;
    text-align: center;
  }

  .youtube-actions {
    justify-content: center;
  }

  .youtube-section h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .youtube-subtitle {
    font-size: 1rem;
  }

  .youtube-cta-text {
    font-size: 0.96rem;
  }

  .youtube-actions {
    flex-direction: column;
    gap: 12px;
  }

  .youtube-btn {
    width: 100%;
    min-height: 56px;
  }

  .youtube-video-shell {
    padding: 8px;
    border-radius: 22px;
  }

  .youtube-card-frame {
    border-radius: 16px;
  }

  .youtube-bg-grid,
  .youtube-section::after {
    display: none;
  }

  .about-decor-ring,
  .about-decor-dots {
    opacity: 0.42;
  }

  .about-decor-soft {
    left: 30%;
    top: 48%;
    width: 320px;
    height: 320px;
  }

  .about-badge {
    min-height: 46px;
    margin-bottom: 22px;
    padding: 10px 18px;
  }

  .about-showcase-content h2 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .about-title-line {
    margin-bottom: 22px;
  }

  .about-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .highlights-section {
    padding-top: 58px;
  }

  .highlights-content h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .highlights-subheading {
    font-size: 1rem;
    line-height: 1.6;
  }

  .program-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .about-media {
    width: 100%;
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(217, 224, 240, 0.94);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(7, 26, 82, 0.09);
  }

  .about-arch {
    right: 0;
    top: 80px;
    width: 116px;
    height: 350px;
  }

  .about-orbit {
    right: -40px;
    top: 100px;
    width: 420px;
    height: 420px;
  }

  .about-blob {
    right: 20px;
    top: 70px;
    width: 310px;
    height: 310px;
  }

  .about-dot-field {
    left: 6px;
    top: 18px;
    width: 100px;
    height: 100px;
    background-size: 17px 17px;
  }

  .about-photo {
    border-width: 12px;
    border-radius: 24px;
  }

  .about-photo-main {
    width: 100%;
    margin: 0;
    aspect-ratio: 4 / 5;
  }

  .about-photo-main img {
    object-position: center 18%;
    min-height: 260px;
  }

  .about-photo-small {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .about-photo-small img {
    object-position: center;
    min-height: 200px;
  }

  .about-result-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 166px;
    padding: 20px;
    border-radius: 22px;
  }

  .about-result-card span {
    width: 46px;
    height: 46px;
    margin-bottom: 8px;
  }

  .about-result-card strong {
    font-size: 1.5rem;
  }

  .about-feature-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100% - 32px, 640px);
    margin-top: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .about-feature-item,
  .about-feature-item:nth-child(odd),
  .about-feature-item:nth-child(-n + 2) {
    min-height: 104px;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(217, 224, 240, 0.94);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(7, 26, 82, 0.09);
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon svg {
    width: 31px;
    height: 31px;
  }

  .poster-showcase {
    display: flex;
    gap: 16px;
    min-height: auto;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 2px 14px;
  }

  .poster-showcase::-webkit-scrollbar {
    display: none;
  }

  .poster-card,
  .poster-featured,
  .poster-float,
  .poster-mobile-extra {
    position: relative;
    inset: auto;
    display: block;
    flex: 0 0 88%;
    width: auto;
    aspect-ratio: 1 / 1;
    scroll-snap-align: center;
    transform: none;
    animation: none;
  }

  .poster-featured,
  .poster-float {
    padding: 8px;
  }

  .premium-carousel .poster-showcase {
    display: flex;
    gap: 18px;
    padding: 8px 4px 14px;
  }

  .premium-carousel .poster-card {
    flex: 0 0 100%;
    min-height: 360px;
    padding: 14px 14px 22px;
  }

  .premium-carousel .poster-card img {
    height: 250px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .carousel-arrow-prev {
    left: -8px;
  }

  .carousel-arrow-next {
    right: -8px;
  }

  .poster-card:hover,
  .poster-card:focus-visible {
    transform: translateY(-4px);
  }

  .slider-dots {
    display: flex;
  }

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

  .success-cta-inner {
    padding: 24px;
  }

  .success-cta-actions,
  .success-cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 18px;
    padding-top: 28px;
    text-align: center;
  }

  .footer-logo,
  .social-links,
  .footer-contact li {
    justify-content: center;
  }

  .footer-brand p {
    margin-inline: auto;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
    height: 360px;
  }

  .contact {
    padding: 52px 0;
  }

  .floating-btn {
    right: 14px;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp {
    bottom: 88px;
  }

  .floating-call {
    bottom: 24px;
  }

  .scroll-top {
    left: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .container,
  .navbar {
    width: min(100% - 24px, var(--container));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-text {
    max-width: 170px;
  }

  .nav-cta {
    display: none;
  }

  .hero-points {
    gap: 9px;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-headline {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-info-pills a,
  .hero-info-pills span {
    width: 100%;
    justify-content: center;
  }

  .feature-card,
  .course-card,
  .contact-panel {
    padding: 20px;
  }

  .poster-card {
    flex-basis: 92%;
  }

  .image-lightbox {
    padding: 18px;
  }
}

@media (max-width: 360px) {
  main {
    padding-top: 72px;
  }

  .container,
  .navbar,
  .hero-grid,
  .contact-grid {
    width: min(100% - 20px, var(--container));
  }

  .navbar {
    min-height: 72px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 11px;
  }

  .brand-highlight {
    font-size: 1.02rem;
  }

  .brand-text small {
    font-size: 0.66rem;
  }

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

  .hero {
    padding-top: 34px;
  }

  .hero-headline {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.94rem;
  }

  .hero-proof strong {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-avatars span {
    width: 42px;
    height: 42px;
  }

  .floating-btn {
    right: 10px;
    width: 46px;
    height: 46px;
  }

  .scroll-top {
    left: 10px;
    width: 40px;
    height: 40px;
  }
}
