/* ═══════════════════════════════════════════════
   MILIJONIERĖ — Premium Theme CSS
   ═══════════════════════════════════════════════ */

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

/* ─── Utility classes ─── */
.is-hidden {
  display: none;
}
.iframe-unbordered {
  border: 0;
}

/* Globalus klaviatūros fokuso indikatorius (WCAG 2.4.7). Tik :focus-visible,
   kad pelės/lietimo paspaudimai nerodytų aureolės. */
:where(a, button, input, select, textarea, [tabindex], summary, .btn-gold, .btn-ghost):focus-visible {
  outline: 2px solid var(--gold-bright, #d4af37);
  outline-offset: 2px;
  border-radius: var(--radius-sm, 8px);
}

/* Skip-link (WCAG 2.4.1) — matomas tik klaviatūra fokusuojant. */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 14000;
  padding: 10px 16px;
  background: var(--charcoal, #1a1a1a);
  color: var(--warm-white, #faf9f6);
  border: 1px solid var(--gold-bright, #d4af37);
  border-radius: var(--radius-sm, 8px);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease, ease);
}
.skip-link:focus {
  top: 8px;
}
[id="main-content"]:focus {
  outline: none;
}

/* Globalus judesio mažinimas (WCAG 2.3.3) — gerbiam OS nustatymą. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

:root {
  --charcoal: #1a1a1a;
  --graphite: #2a2a2a;
  --cream: #f4f1ec;
  --warm-white: #faf9f6;
  --bg-section: #f7f5f0;
  --gold: #c9a84c;
  --gold-bright: #d4af37;
  --gold-light: #e8d5a0;
  --gold-subtle: rgba(201, 168, 76, 0.1);
  --text-primary: #1a1a1a;
  --text-secondary: #5a5550;
  --text-muted: #9a948e;
  --border: rgba(26, 26, 26, 0.1);
  --border-light: rgba(26, 26, 26, 0.06);
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 26, 26, 0.1);
  --shadow-lg: 0 24px 64px rgba(26, 26, 26, 0.12);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gold-glow: 0 0 40px rgba(201, 168, 76, 0.3);
  --nav-h: 72px;
  --scrollbar-width: 0px;
}

@media (min-width: 1024px) {
  :root {
    --nav-h: 88px;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-h, 80px);
}
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-locked {
  overflow: hidden;
}
@media (min-width: 1024px) {
  body.nav-locked {
    padding-right: var(--scrollbar-width, 0px);
  }
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}
.reveal-d4 {
  transition-delay: 0.4s;
}

/* ─── Section Helpers ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 500;
}
.section-tag--light {
  color: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-align: center;
}
.section-title--light {
  color: var(--warm-white);
}
.section-desc {
  font-size: 1.125rem;
  opacity: 0.65;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.section-desc--light {
  color: var(--warm-white);
}
.text-gold {
  color: var(--gold);
}

/* ═══════════ 404 ═══════════ */
.mil-404-page {
  padding: 96px 0 120px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 168, 76, 0.12), transparent 42%),
    radial-gradient(circle at 80% 10%, rgba(26, 26, 26, 0.06), transparent 35%), var(--warm-white);
}
.mil-404-card {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 44px 34px;
  text-align: center;
}
.mil-404-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mil-404-title {
  margin-bottom: 14px;
}
.mil-404-text {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.mil-404-search {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 26px;
}
.mil-404-search input {
  flex: 1;
  min-width: 0;
  height: 50px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  padding: 0 18px;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.mil-404-search input:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.75);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}
.mil-404-search button {
  height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: var(--charcoal);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s;
}
.mil-404-search button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}
.mil-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .mil-404-page {
    padding: 72px 0 90px;
  }
  .mil-404-card {
    padding: 34px 20px;
  }
  .mil-404-search {
    flex-direction: column;
  }
  .mil-404-search button,
  .mil-404-search input {
    width: 100%;
  }
}

/* ─── Buttons ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-gold:hover {
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
  transform: translateY(-1px);
}
.btn-gold--lg {
  padding: 12px 24px;
  font-size: 1rem;
  align-self: flex-start;
}
.btn-gold--sm {
  padding: 10px 20px;
  font-size: 0.9375rem;
}
.btn-gold svg {
  transition: transform 0.3s;
}
.btn-gold:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(250, 249, 246, 0.25);
  background: transparent;
  backdrop-filter: blur(8px);
  color: var(--warm-white);
  font-size: 1.0625rem;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* Ghost on light backgrounds */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(26, 26, 26, 0.2);
  background: transparent;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}

/* Secondary button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gold);
  background: #fff;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--gold-glow);
}

/* Text link CTA */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.btn-text:hover {
  color: var(--gold);
  gap: 10px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--charcoal), var(--graphite));
  color: var(--warm-white);
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.btn-dark:hover {
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}
.btn-dark svg {
  transition: transform 0.3s;
}
.btn-dark:hover svg {
  transform: translateX(4px);
}

.btn-login {
  display: none;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(250, 249, 246, 0.8);
  font-size: 0.875rem;
  transition: all 0.3s;
}
@media (min-width: 1024px) {
  .btn-login {
    display: block;
  }
}
.btn-login:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* ═══════════ ANNOUNCEMENT ═══════════ */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light) 50%, var(--gold));
  font-size: 0.8125rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.announcement-bar strong {
  font-weight: 700;
}
.announcement-bar svg {
  flex-shrink: 0;
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 26, 26, 0.95);
  padding: 16px 24px;
}
@media (min-width: 1024px) {
  .nav {
    padding: 16px 64px;
  }
}
.nav.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links li,
.mobile-menu-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.9375rem;
  color: rgba(250, 249, 246, 0.8);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  color: var(--warm-white);
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-burger {
    display: none;
  }
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-burger.active span:nth-child(2) {
  opacity: 0;
}
.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Menu ─── */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s;
}
.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 100vw);
  z-index: 9999;
  background: var(--charcoal);
  transform: translateX(100%);
  transition:
    transform 0.4s var(--ease),
    visibility 0.4s;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.mobile-menu-logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(250, 249, 246, 0.7);
  transition:
    border-color 0.2s,
    color 0.2s;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-menu-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-menu-nav {
  flex: 1;
  padding: 8px 0;
}
.mobile-menu-nav li {
  list-style: none;
}
.mobile-menu-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 13px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(250, 249, 246, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color 0.2s,
    background-color 0.2s;
  background: none;
}
.mobile-menu-nav li:last-child > a {
  border-bottom: none;
}
.mobile-menu-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.2s var(--ease);
  border-radius: 0 2px 2px 0;
}
.mobile-menu-nav a:hover {
  color: var(--warm-white);
  background: rgba(255, 255, 255, 0.04);
}
.mobile-menu-nav a:hover::before {
  transform: scaleY(1);
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.mobile-menu-footer .btn-gold {
  display: block;
  text-align: center;
  padding: 13px 24px;
  width: 100%;
}
.mobile-menu-footer .btn-login-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(250, 249, 246, 0.75);
  font-size: 0.875rem;
  font-family: inherit;
  transition:
    border-color 0.2s,
    color 0.2s;
  background: none;
  text-align: center;
}
.mobile-menu-footer .btn-login-mobile:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--warm-white);
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.97), rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.4));
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 88px);
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 80px 64px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.1);
  margin-bottom: 24px;
  width: fit-content;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-eyebrow span {
  font-size: 0.8125rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7.5vw, 6.5rem);
  color: var(--warm-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title span {
  color: var(--gold);
}
.hero-subtitle {
  max-width: 640px;
  font-size: 1.1875rem;
  color: var(--warm-white);
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

/* Proof */
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 640px) {
  .hero-proof {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.hero-avatars {
  display: flex;
}
.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--charcoal);
  margin-left: -10px;
  position: relative;
}
.hero-avatars img:first-child {
  margin-left: 0;
  z-index: 4;
}
.hero-avatars img:nth-child(2) {
  z-index: 3;
}
.hero-avatars img:nth-child(3) {
  z-index: 2;
}
.hero-avatars img:nth-child(4) {
  z-index: 1;
}
.hero-avatars-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-avatars-text span {
  font-size: 0.8125rem;
  color: var(--warm-white);
  opacity: 0.9;
}
.hero-avatars-text strong {
  font-weight: 700;
}
.hero-stars {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 2px;
}
.hero-stars-num {
  color: rgba(250, 249, 246, 0.6);
  margin-left: 4px;
}
.hero-proof-divider {
  display: none;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 640px) {
  .hero-proof-divider {
    display: block;
  }
}
.hero-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.15);
}
.hero-trust-item span {
  font-size: 0.875rem;
  color: rgba(250, 249, 246, 0.8);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.hero-scroll span {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm-white);
  opacity: 0.4;
}
.hero-scroll-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ═══════════ RESULTS ═══════════ */
.results {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--charcoal);
}
@media (min-width: 1024px) {
  .results {
    padding: 112px 0;
  }
}
.results-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, var(--gold) 1px, transparent 0);
  background-size: 48px 48px;
}
.results-glow {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.1;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  filter: blur(60px);
}
.results-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.results-line--top {
  top: 0;
}
.results-line--bottom {
  bottom: 0;
}
.results-inner {
  position: relative;
  z-index: 2;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.results-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  background: rgba(250, 249, 246, 0.03);
  transition: background 0.5s;
}
.results-card:hover {
  background: rgba(212, 175, 55, 0.05);
}
.results-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.results-card:hover .results-card-accent {
  transform: scaleX(1);
}

.results-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.results-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--warm-white);
  margin-bottom: 8px;
}
.results-sub {
  font-size: 0.875rem;
  color: rgba(250, 249, 246, 0.5);
  line-height: 1.5;
}
.results-tagline {
  text-align: center;
  margin-top: 48px;
  font-size: 1rem;
  color: rgba(250, 249, 246, 0.5);
}

/* ═══════════ WHY ═══════════ */
.why {
  padding: 80px 0;
  background: var(--cream);
}
@media (min-width: 1024px) {
  .why {
    padding: 128px 0;
  }
}
.why-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  position: relative;
  overflow: visible;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.why-card::before,
.why-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: inherit;
  opacity: 0;
  transition:
    width 0.45s ease,
    height 0.45s ease,
    border-width 0.45s ease,
    opacity 0.2s ease;
}
.why-card:hover::before,
.why-card:hover::after {
  opacity: 1;
}
.why-card::before {
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-top: 0 solid var(--gold);
  border-left: 0 solid var(--gold);
}
.why-card::after {
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-right: 0 solid var(--gold);
  border-bottom: 0 solid var(--gold);
  transition-delay: 0.08s;
}
.why-card:hover::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-top-width: 1px;
  border-left-width: 1px;
}
.why-card:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-right-width: 1px;
  border-bottom-width: 1px;
}
.why-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
}
.why-card-accent {
  display: none;
}

.why-card-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 213, 160, 0.1));
  transition: transform 0.3s;
}
.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-stat {
  text-align: right;
}
.why-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.15;
  transition: all 0.35s;
}
.why-card:hover .why-stat-num {
  opacity: 1;
  color: var(--gold);
}
.why-stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.35s;
}
.why-card:hover .why-stat-label {
  opacity: 1;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9375rem;
  opacity: 0.65;
  line-height: 1.65;
}

/* ═══════════ PROCESS ═══════════ */
.process {
  padding: 80px 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border-light);
}
@media (min-width: 1024px) {
  .process {
    padding: 128px 0;
  }
}
.process-steps {
  position: relative;
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.process-line {
  display: none;
}
@media (min-width: 1024px) {
  .process-line {
    display: block;
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(212, 175, 55, 0.3) 15%,
      rgba(212, 175, 55, 0.3) 85%,
      transparent
    );
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .process-step {
    align-items: center;
    text-align: center;
  }
}
.process-num {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--charcoal);
  margin-bottom: 32px;
  transition: box-shadow 0.5s;
}
.process-step:hover .process-num {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
.process-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9375rem;
  opacity: 0.65;
  line-height: 1.65;
}
.process-cta {
  text-align: center;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.process-cta p {
  font-size: 1.0625rem;
  opacity: 0.65;
}

/* ═══════════ PROGRAMS ═══════════ */
.programs {
  padding: 80px 0;
  background: var(--charcoal);
}
@media (min-width: 1024px) {
  .programs {
    padding: 128px 0;
  }
}

.programs-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid rgba(250, 249, 246, 0.15);
  color: var(--warm-white);
  background: rgba(250, 249, 246, 0.08);
  transition: all 0.3s;
}
.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border-color: transparent;
}
.filter-btn:hover:not(.active) {
  border-color: rgba(250, 249, 246, 0.3);
}

.programs-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}







.program-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}


.program-card::before,
.program-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: inherit;
  width: 0;
  height: 0;
  z-index: 2;
  transition:
    width 0.45s ease,
    height 0.45s ease;
}

.program-card::before {
  top: 0;
  left: 0;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.program-card::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transition-delay: 0.08s;
}

.program-card:hover::before,
.program-card:hover::after,
.program-card:focus-within::before,
.program-card:focus-within::after {
  width: 100%;
  height: 100%;
}

.program-card:hover,
.program-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 64px rgba(26, 26, 26, 0.12);
}

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

.program-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: #f6f6f6;
}

.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover .program-img img,
.program-card:focus-within .program-img img {
  transform: scale(1.05);
}

.program-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.42), transparent 60%);
}

.program-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  font-size: 0.875rem;
  line-height: 1;
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.program-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.program-body h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.program-body > p {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.74);
}

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

.program-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.78);
}

.program-benefits li:last-child {
  margin-bottom: 0;
}

.program-benefits svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.program-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.program-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.program-price-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
}

.program-price-val {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}

.program-footer .btn-gold--sm {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.program-footer .btn-gold--sm svg {
  flex-shrink: 0;
}

.program-footer .btn-gold--sm:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .program-body {
    padding: 22px;
  }

  .program-body h3 {
    font-size: 1.35rem;
  }

  .program-body > p {
    margin-bottom: 20px;
  }

  .program-footer {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .program-card:hover,
  .program-card:focus-within {
    transform: translateY(-3px);
  }

  .program-body {
    padding: 20px;
  }

  .program-body h3 {
    font-size: 1.25rem;
  }

  .program-body > p,
  .program-benefits li {
    font-size: 0.875rem;
  }

  .program-footer .btn-gold--sm {
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-card,
  .program-card::before,
  .program-card::after,
  .program-img img {
    transition: none;
  }

  .program-card:hover,
  .program-card:focus-within {
    transform: none;
  }

  .program-card:hover .program-img img,
  .program-card:focus-within .program-img img {
    transform: none;
  }
}








/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
  padding: 80px 0;
  background: var(--bg-section);
}
@media (min-width: 1024px) {
  .testimonials {
    padding: 128px 0;
  }
}

.testimonial-slider {
  position: relative;
}
.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.45s;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 40px 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.testimonial-card::before,
.testimonial-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: inherit;
  opacity: 0;
  transition:
    width 0.45s ease,
    height 0.45s ease,
    border-width 0.45s ease,
    opacity 0.2s ease;
}
.testimonial-card:hover::before,
.testimonial-card:hover::after {
  opacity: 1;
}
.testimonial-card::before {
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-top: 0 solid var(--gold);
  border-left: 0 solid var(--gold);
}
.testimonial-card::after {
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-right: 0 solid var(--gold);
  border-bottom: 0 solid var(--gold);
  transition-delay: 0.08s;
}
.testimonial-card:hover::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-top-width: 1px;
  border-left-width: 1px;
}
.testimonial-card:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-right-width: 1px;
  border-bottom-width: 1px;
}
.testimonial-card:hover {
  border-color: transparent;
}
@media (max-width: 767px) {
  .testimonial-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
  }
}

.testimonial-img-col {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
}
@media (min-width: 1024px) {
  .testimonial-img-col {
    width: 220px;
    height: 280px;
  }
}
@media (max-width: 767px) {
  .testimonial-img-col {
    width: 160px;
    height: 200px;
  }
}
.testimonial-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid var(--gold);
  display: block;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9375rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 14px;
  position: relative;
  transition: max-height 0.4s ease;
}
@media (min-width: 1024px) {
  .testimonial-quote {
    font-size: 1.1875rem;
  }
}
.testimonial-quote.is-clamped {
  max-height: 5.5em;
  overflow: hidden;
}
.testimonial-quote.is-clamped.expanded {
  max-height: none;
  overflow: visible;
}
.testimonial-quote.is-clamped:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2em;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

.testimonial-read-more {
  display: none;
  border: none;
  background: none;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 20px;
  transition: opacity 0.2s;
  text-align: left;
  text-decoration: underline;
}
.testimonial-read-more:hover {
  opacity: 0.7;
}
.testimonial-read-more.visible {
  display: inline-block;
}

.testimonial-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 18px;
  margin-top: auto;
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--charcoal);
  opacity: 0.6;
}
.testimonial-result-tag {
  padding: 7px 18px;
  border-radius: 9999px;
  background: rgba(220, 171, 11, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 0.8125rem;
  color: var(--charcoal);
  font-weight: 500;
  white-space: nowrap;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}
.testimonial-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dcb74f;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background-image: none;
  box-shadow: none;
  flex-shrink: 0;
}
.testimonial-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(220, 183, 79, 0.28);
}
.testimonial-arrow svg {
  stroke: #1a1a1a;
  stroke-width: 2;
}
.testimonial-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.22);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  min-width: 8px;
  min-height: 8px;
  position: relative;
  display: block;
}
.testimonial-dot::before {
  display: none;
}
.testimonial-dot.active {
  width: 30px;
  height: 8px;
  background: #dcb74f;
}

/* ═══════════ MENTOR ═══════════ */
.mentor {
  padding: 80px 0;
  background: var(--charcoal);
}
@media (min-width: 1024px) {
  .mentor {
    padding: 128px 0;
  }
}
.mentor-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .mentor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
  }
  .mentor-image {
    height: 100%;
  }
  .mentor-photo {
    height: 100%;
  }
  .mentor-photo img {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }
}

.mentor-image {
  position: relative;
}
.mentor-glow {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  opacity: 0.25;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  filter: blur(60px);
}
.mentor-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.mentor-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  min-height: 520px;
}
.mentor-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.3), transparent);
}

.mentor-stat-card {
  position: absolute;
  bottom: -24px;
  right: -16px;
  padding: 24px;
  background: var(--gold-gradient);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
}
@media (min-width: 1024px) {
  .mentor-stat-card {
    right: -32px;
  }
}
.mentor-stat-num {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}
.mentor-stat-label {
  font-size: 0.8125rem;
  color: var(--charcoal);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mentor-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mentor-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--warm-white);
  line-height: 1.15;
  margin: 8px 0 8px;
}
.mentor-role {
  font-size: 0.9375rem;
  color: var(--gold);
  opacity: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.mentor-bio {
  font-size: 1.0625rem;
  color: var(--warm-white);
  opacity: 0.75;
  line-height: 1.75;
  margin-bottom: 12px;
  position: relative;
  transition: max-height 0.4s ease;
}
.mentor-bio.is-clamped {
  max-height: 5.25em;
  overflow: hidden;
}
.mentor-bio.is-clamped.expanded {
  max-height: none;
  overflow: visible;
}
.mentor-bio.is-clamped:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2em;
  background: linear-gradient(transparent, var(--charcoal));
  pointer-events: none;
}

.mentor-read-more {
  display: none;
  border: none;
  background: none;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 32px;
  transition: opacity 0.2s;
  text-align: left;
}
.mentor-read-more:hover {
  opacity: 0.7;
}
.mentor-read-more.visible {
  display: inline-block;
}

.mentor-achievements {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mentor-achievement {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mentor-achievement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
}
.mentor-achievement span {
  font-size: 0.9375rem;
  color: var(--warm-white);
  opacity: 0.8;
  line-height: 1.5;
}

/* ═══════════ FINANCING ═══════════ */
.financing {
  padding: 80px 0;
  background: var(--cream);
}
@media (min-width: 1024px) {
  .financing {
    padding: 128px 0;
  }
}
.financing-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .financing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.financing-card {
  position: relative;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.financing-card::before,
.financing-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: inherit;
  opacity: 0;
  transition:
    width 0.45s ease,
    height 0.45s ease,
    border-width 0.45s ease,
    opacity 0.2s ease;
}
.financing-card:hover::before,
.financing-card:hover::after {
  opacity: 1;
}
.financing-card::before {
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-top: 0 solid var(--gold);
  border-left: 0 solid var(--gold);
}
.financing-card::after {
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-right: 0 solid var(--gold);
  border-bottom: 0 solid var(--gold);
  transition-delay: 0.08s;
}
.financing-card:hover::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-top-width: 1px;
  border-left-width: 1px;
}
.financing-card:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-right-width: 1px;
  border-bottom-width: 1px;
}
.financing-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.financing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 213, 160, 0.1));
  margin-bottom: 24px;
}
.financing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 24px;
}
.financing-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.financing-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  opacity: 0.75;
  line-height: 1.6;
}
.financing-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.financing-cta {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--charcoal), var(--graphite));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
}
@media (min-width: 1024px) {
  .financing-cta {
    padding: 64px;
  }
}
.financing-cta-glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  filter: blur(60px);
}
.financing-cta-inner {
  position: relative;
  z-index: 2;
}
.financing-cta h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.financing-cta p {
  font-size: 1.0625rem;
  color: var(--warm-white);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 32px;
}
.financing-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ═══════════ FAQ ═══════════ */
.faq {
  padding: 80px 0;
  background: var(--warm-white);
}
@media (min-width: 1024px) {
  .faq {
    padding: 128px 0;
  }
}
.faq-list {
  max-width: 896px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 16px;
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  padding: 24px;
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .faq-question {
    padding: 32px;
  }
}
.faq-question:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.faq-item.open .faq-question {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}
.faq-question span {
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 500;
}
.faq-item.open .faq-question span {
  font-weight: 600;
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--gold-gradient);
}
.faq-icon svg {
  transition: transform 0.3s;
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding: 16px 24px 24px;
  font-size: 0.9375rem;
  opacity: 0.75;
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .faq-answer p {
    padding: 16px 32px 32px;
  }
}

.faq-cta {
  text-align: center;
  margin-top: 64px;
}
.faq-cta p {
  font-size: 1.0625rem;
  opacity: 0.7;
  margin-bottom: 24px;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 48px 0 0;
  background: var(--charcoal);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
@media (min-width: 1024px) {
  .footer {
    padding: 64px 0 0;
  }
}
.footer-grid {
  display: grid;
  gap: 40px 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--warm-white);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--warm-white);
  opacity: 0.65;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 0 24px;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}
.footer-connect-title {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold);
  transition: all 0.25s;
}
.footer-social-link:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--warm-white);
  opacity: 0.8;
  transition: all 0.2s;
  line-height: 1.4;
}
.footer-contact a:hover {
  opacity: 1;
  color: var(--gold);
}
.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col h4 {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
  font-weight: 600;
}
.footer-links-col a {
  font-size: 0.875rem;
  color: var(--warm-white);
  opacity: 0.7;
  transition: all 0.2s;
  display: inline-flex;
  line-height: 1.4;
}
.footer-links-col a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 249, 246, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 0;
  }
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--warm-white);
  opacity: 0.5;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer-bottom-links {
    gap: 16px;
  }
}
.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--warm-white);
  opacity: 0.5;
  transition: opacity 0.2s;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--gold);
}
.footer-bottom-link-btn {
  font-size: 0.8125rem;
  color: var(--warm-white);
  opacity: 0.5;
  transition:
    opacity 0.2s,
    color 0.2s;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
}
.footer-bottom-link-btn:hover {
  opacity: 1;
  color: var(--gold);
}

/* ═══════════ COOKIE CONSENT ═══════════ */
body.cookie-modal-open {
  overflow: hidden;
}
@media (min-width: 1024px) {
  body.cookie-modal-open {
    padding-right: var(--scrollbar-width, 0px);
  }
}

.mil-cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 13000;
  max-width: min(560px, calc(100vw - 24px));
}
.mil-cookie-banner[hidden] {
  display: none !important;
}
/* Pop-up koordinacija: kol slapukų sutikimas nepriimtas, sticky CTA nekonkuruoja
   (vienas sprendimas vienu metu + jokio persidengimo apačioje). CSS-only, be JS. */
body:has(.mil-cookie-banner:not([hidden])) .sticky-cta,
body:has(.mil-cookie-banner:not([hidden])) .mil-sticky-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mil-cookie-banner__card {
  background: linear-gradient(150deg, var(--charcoal), #232323);
  color: var(--warm-white);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.mil-cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--warm-white);
}
.mil-cookie-banner__text {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(250, 249, 246, 0.9);
}
.mil-cookie-banner__text--muted {
  color: rgba(250, 249, 246, 0.72);
}
.mil-cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}
.mil-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.mil-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mil-cookie-btn--equal {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--warm-white);
  flex: 1 1 170px;
}
.mil-cookie-btn--equal:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}
.mil-cookie-btn--ghost {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  flex: 1 1 100%;
}
.mil-cookie-btn--ghost:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.65);
}
.mil-cookie-btn--primary {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border-color: rgba(212, 175, 55, 0.9);
  flex: 1 1 220px;
}
.mil-cookie-btn--primary:hover {
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.3);
}

.mil-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 13020;
  display: grid;
  place-items: center;
  padding: 24px;
}
.mil-cookie-modal[hidden] {
  display: none !important;
}
.mil-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(2px);
}
.mil-cookie-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.3);
  padding: 24px;
}
.mil-cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, 0.2);
  color: var(--charcoal);
  background: #fff;
  transition: all 0.2s;
}
.mil-cookie-modal__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.mil-cookie-modal__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0 0 18px;
  padding-right: 44px;
}

.mil-cookie-option {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
.mil-cookie-option:first-of-type {
  border-top: none;
  padding-top: 0;
}
.mil-cookie-option__content h4 {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--charcoal);
}
.mil-cookie-option__content p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.mil-cookie-option--locked .mil-cookie-option__content h4::after {
  content: ' (visada aktyvūs)';
  color: var(--gold);
  font-weight: 500;
}

.mil-cookie-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.mil-cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mil-cookie-switch__track {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.18);
  border: 1px solid rgba(26, 26, 26, 0.24);
  transition: all 0.2s;
}
.mil-cookie-switch__track::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.mil-cookie-switch input:checked + .mil-cookie-switch__track {
  background: rgba(201, 168, 76, 0.95);
  border-color: rgba(201, 168, 76, 0.95);
}
.mil-cookie-switch input:checked + .mil-cookie-switch__track::before {
  transform: translateX(22px);
}
.mil-cookie-switch input:disabled + .mil-cookie-switch__track {
  background: rgba(201, 168, 76, 0.3);
  border-color: rgba(201, 168, 76, 0.45);
}

.mil-cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

@media (max-width: 767px) {
  .mil-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .mil-cookie-banner__card {
    padding: 18px;
  }
  .mil-cookie-banner__title {
    font-size: 1.3rem;
  }
  .mil-cookie-banner__actions .mil-cookie-btn {
    flex: 1 1 100%;
  }
  .mil-cookie-modal {
    padding: 12px;
  }
  .mil-cookie-modal__dialog {
    padding: 18px;
  }
  .mil-cookie-modal__title {
    font-size: 1.35rem;
  }
  .mil-cookie-option {
    flex-direction: column;
    gap: 12px;
  }
}

/* ═══════════ STICKY CTA ═══════════ */
.sticky-cta {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) translateX(400px);
  z-index: 50;
  width: 320px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--charcoal), var(--graphite));
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
  display: none;
}
@media (min-width: 1024px) {
  .sticky-cta {
    display: block;
  }
}
.sticky-cta.visible {
  transform: translateY(-50%) translateX(0);
}
.sticky-cta-close {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 6px;
  border-radius: 50%;
  color: var(--warm-white);
  opacity: 0.6;
  transition: all 0.2s;
  z-index: 6;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.sticky-cta-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.sticky-cta-close svg {
  pointer-events: none;
}
.sticky-cta-glow {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  pointer-events: none;
}
.sticky-cta-inner {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.sticky-cta-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--warm-white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.sticky-cta-desc {
  font-size: 0.875rem;
  color: var(--warm-white);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Mobile sticky */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--charcoal), var(--graphite));
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 16px;
  transform: translateY(200px);
  transition: transform 0.4s var(--ease);
  display: block;
}
@media (min-width: 1024px) {
  .sticky-cta-mobile {
    display: none;
  }
}
.sticky-cta-mobile.visible {
  transform: translateY(0);
}
.sticky-cta-mobile-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 40px;
}
.sticky-cta-mobile-text {
  flex: 1;
}
.sticky-cta-mobile .sticky-cta-title {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 6px;
}
.sticky-cta-mobile .sticky-cta-desc {
  font-size: 0.8125rem;
  line-height: 1.4;
  margin-bottom: 0;
}
.sticky-cta-mobile .btn-gold {
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 0.875rem;
  min-height: 48px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .sticky-cta-mobile {
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
  }
  .sticky-cta-mobile-inner {
    gap: 12px;
    padding-right: 32px;
  }
  .sticky-cta-mobile .btn-gold {
    padding: 11px 14px;
    font-size: 0.8125rem;
    min-height: 44px;
  }
}

@media (max-width: 575px) {
  .sticky-cta-mobile {
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  }
  .sticky-cta-mobile-inner {
    gap: 10px;
    padding-right: 28px;
    align-items: flex-end;
  }
  .sticky-cta-mobile .sticky-cta-title {
    font-size: 1rem;
  }
  .sticky-cta-mobile .sticky-cta-desc {
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .sticky-cta-mobile .btn-gold {
    padding: 10px 12px;
    font-size: 0.75rem;
    min-height: 42px;
  }
}

@media (max-width: 420px) {
  .sticky-cta-mobile {
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  }
  .sticky-cta-mobile-inner {
    gap: 8px;
    padding-right: 26px;
  }
  .sticky-cta-mobile .sticky-cta-title {
    font-size: 0.9375rem;
  }
  .sticky-cta-mobile .sticky-cta-desc {
    font-size: 0.6875rem;
  }
  .sticky-cta-mobile .btn-gold {
    padding: 9px 10px;
    font-size: 0.6875rem;
    min-height: 40px;
  }
}

/* ─── Page/index template title spacing ─── */
.mil-woo-wrap .section-title {
  margin-bottom: 24px;
}

/* ─── User menu dropdown ─── */
.mil-user-menu {
  position: relative;
  display: inline-block;
}
.mil-user-menu .btn-login {
  cursor: pointer;
}
.mil-user-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--charcoal);
  border: 1px solid #333;
  border-radius: 8px;
  min-width: 180px;
  z-index: 999;
  padding: 6px 0;
}
.mil-user-dropdown__link {
  display: block;
  padding: 10px 16px;
  color: var(--warm-white);
  text-decoration: none;
  font-size: 14px;
}
.mil-user-dropdown__link:hover {
  color: var(--gold);
}
.mil-user-dropdown__link--logout {
  color: #fca5a5;
}
.mil-user-dropdown__link--logout:hover {
  color: #fca5a5;
  opacity: 0.8;
}
.btn-login-mobile--logout {
  color: #fca5a5;
}

/* ─── Sticky CTA full-width buttons ─── */
.sticky-cta-inner .btn-gold {
  width: 100%;
  justify-content: center;
}
.sticky-cta-inner .btn-ghost {
  width: 100%;
  justify-content: center;
  padding: 10px 20px;
  margin-top: 8px;
  font-size: 0.875rem;
}

/* ─── Content typography ─── */
.mil-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal);
}
.mil-content h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 40px 0 16px;
}
.mil-content h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  margin: 32px 0 12px;
}
.mil-content p {
  margin-bottom: 16px;
  opacity: 0.8;
}
.mil-content ul,
.mil-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  opacity: 0.8;
}
.mil-content li {
  margin-bottom: 8px;
}
.mil-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: border-color 0.2s;
}
.mil-content a:hover {
  border-color: var(--gold);
}
.mil-content img:not(.mil-cart-item__thumb img) {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.mil-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ═══════════ MISC RESPONSIVE ═══════════ */
@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-cta .btn-ghost {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }
  .hero-trust-items {
    display: none;
  }
  .hero-proof-divider {
    display: none;
  }
  .mentor-stat-card {
    right: 0;
    bottom: -16px;
  }
  .testimonial-slide {
    padding: 24px;
  }
}

/* ═══════════ COURSES ARCHIVE ═══════════ */
.courses-archive {
  padding: 80px 0;
  background: var(--charcoal);
  color: var(--warm-white);
}
@media (min-width: 1024px) {
  .courses-archive {
    padding: 128px 0;
  }
}
.courses-archive .section-title,
.courses-archive .section-desc {
  color: var(--warm-white);
}
.courses-archive .section-desc {
  opacity: 0.75;
}

.courses-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}
.courses-filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--charcoal);
  color: var(--warm-white);
  background: var(--charcoal);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.25);
}
.courses-filter-btn:hover {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--warm-white);
}
.courses-filter-btn.active {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 24px;
  border: 1px solid rgba(250, 249, 246, 0.08);
  overflow: visible;
  position: relative;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  color: var(--warm-white);
  min-height: 100%;
  box-sizing: border-box;
}
.course-card::before,
.course-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: inherit;
  opacity: 0;
  transition:
    width 0.45s ease,
    height 0.45s ease,
    border-width 0.45s ease,
    opacity 0.2s ease;
}
.course-card:hover::before,
.course-card:hover::after {
  opacity: 1;
}
.course-card::before {
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-top: 0 solid var(--gold);
  border-left: 0 solid var(--gold);
}
.course-card::after {
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-right: 0 solid var(--gold);
  border-bottom: 0 solid var(--gold);
  transition-delay: 0.08s;
}
.course-card:hover::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-top-width: 1px;
  border-left-width: 1px;
}
.course-card:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-right-width: 1px;
  border-bottom-width: 1px;
}
.course-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border-color: transparent;
}
.course-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.course-card__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--graphite);
  position: relative;
  border-radius: 24px 24px 0 0;
}
.course-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.course-card:hover .course-card__thumb img {
  transform: scale(1.06);
}
.course-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(250, 249, 246, 0.12), rgba(212, 175, 55, 0.2));
}

.course-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
  gap: 12px;
}
.course-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.9;
}
.course-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--warm-white);
  line-height: 1.35;
  margin: 0;
}
.course-card__excerpt {
  font-size: 0.9375rem;
  color: rgba(250, 249, 246, 0.75);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.course-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.course-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(250, 249, 246, 0.7);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.course-card__meta-item svg {
  flex-shrink: 0;
}

.course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: auto;
  gap: 12px;
}
.course-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.course-card__price-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.6);
}
.course-card__price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--warm-white);
  font-weight: 600;
}
.course-card__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.course-card:hover .course-card__cta {
  color: var(--gold-light);
  opacity: 0.85;
}

.course-card__type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(250, 249, 246, 0.2);
  color: var(--warm-white);
}
.course-card__type-badge--live {
  background: rgba(212, 175, 55, 0.9);
  color: #1a1a1a;
  border-color: transparent;
}
.course-card__type-badge--online {
  background: rgba(26, 26, 26, 0.75);
  color: var(--gold, #d4af37);
}

.courses-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.courses-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(26, 26, 26, 0.12);
  color: var(--charcoal);
  text-decoration: none;
  transition: all 0.2s;
}
.courses-pagination .page-numbers.current,
.courses-pagination .page-numbers:hover {
  background: var(--gold-gradient, linear-gradient(135deg, #d4af37, #b8960f));
  color: #1a1a1a;
  border-color: transparent;
}

/* ═══════════ CONTACT PAGE ═══════════ */
.contact-page {
  padding: 0;
}

.contact-highlight {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(135deg, #0f0f0f, #1f1f1f);
  color: #fff;
  border-radius: 32px;
  padding: 32px;
  margin-top: 48px;
  margin-bottom: 56px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.contact-highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 55%);
  pointer-events: none;
  opacity: 0.8;
}
.contact-highlight > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .contact-highlight {
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
    padding: 48px 56px;
  }
}
.contact-highlight__cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-highlight__cta ul {
  margin: 0;
  padding-left: 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.contact-highlight__cta li + li {
  margin-top: 4px;
}
.contact-highlight__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.contact-highlight__cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #fff;
}
.contact-highlight__cta h2 span {
  color: var(--gold);
}
.contact-highlight__cta p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.contact-highlight__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  flex: 1;
  align-content: start;
}
.contact-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.contact-stat__value {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.contact-stat__label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: stretch;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info .contact-card {
  flex: 1;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}
.contact-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--charcoal);
  opacity: 0.45;
  margin-bottom: 4px;
}
.contact-card__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  line-height: 1.4;
}
a.contact-card__value:hover {
  color: var(--gold);
}

.contact-socials {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-socials__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--charcoal);
  opacity: 0.45;
  margin-bottom: 12px;
}
.contact-socials__links {
  display: flex;
  gap: 12px;
}
.contact-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--charcoal);
  transition:
    background 0.2s,
    color 0.2s;
}
.contact-social-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.contact-pane {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-alert-region:empty {
  display: none;
}

.contact-alert {
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(26, 26, 26, 0.03);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  line-height: 1.4;
}
.contact-alert strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  font-family: var(--font-serif);
}
.contact-alert--success {
  border-color: rgba(21, 128, 61, 0.25);
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}
.contact-alert--invalid,
.contact-alert--failed,
.contact-alert--spam {
  border-color: rgba(190, 18, 60, 0.2);
  background: rgba(244, 63, 94, 0.08);
  color: #9f1239;
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .contact-form-card {
    padding: 24px;
  }
}
.contact-form__head {
  margin-bottom: 24px;
}
.contact-form__head h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--charcoal);
}
@media (max-width: 767px) {
  .contact-form__head h3 {
    font-size: 1.5rem;
  }
}
.contact-form__head p {
  margin: 0;
  color: rgba(26, 26, 26, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.contact-field > label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: #faf9f6;
  font-size: 1rem;
  font-family: inherit;
  color: var(--charcoal);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.contact-field__error {
  font-size: 0.8rem;
  color: #c53030;
  display: block;
}
.contact-field__error:empty {
  display: none;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
  outline: none;
  background: #fff;
}
.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
  border-color: #f87171;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
}
.contact-field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-field--full {
  grid-column: 1/-1;
}
.contact-field--hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 1px;
  width: 1px;
}

.contact-form__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
}
@media (min-width: 640px) {
  .contact-form__footer {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.contact-form__footer p {
  margin: 0;
}
.contact-form.is-sending [data-contact-submit] {
  opacity: 0.7;
  pointer-events: none;
}
.contact-form [data-contact-submit][disabled] {
  cursor: progress;
}

.contact-map-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  height: 340px;
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .contact-map-full {
    height: 220px;
    margin-top: 28px;
  }
}

/* ═══════════ ENHANCED CONTACT PAGE ═══════════ */

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--graphite) 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: none;
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.contact-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
.contact-hero__badge span {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 500;
}
.contact-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(250, 249, 246, 0.75);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 32px;
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250, 249, 246, 0.8);
  font-size: 0.9375rem;
  font-weight: 500;
}
.trust-item svg {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-hero {
    padding: 48px 0 64px;
  }
  .contact-hero__trust {
    gap: 16px 24px;
  }
  .trust-item {
    font-size: 0.875rem;
  }
}

/* Contact Channels */
.contact-channels {
  padding: 40px 0 48px;
  background: var(--warm-white);
}
.contact-channels__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-channels__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s;
  position: relative;
  text-decoration: none;
}
.contact-channel:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff 0%, rgba(212, 175, 55, 0.03) 100%);
}
.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--gold);
}
.contact-channel:hover .contact-channel__icon {
  background: linear-gradient(135deg, var(--gold), rgba(180, 150, 40, 0.9));
  color: #fff;
}
.contact-channel__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-channel__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  opacity: 0.5;
  font-weight: 500;
}
.contact-channel__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  transition: color 0.3s;
}
.contact-channel:hover .contact-channel__value {
  color: var(--gold);
}
.contact-channel__hint {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.55;
}
.contact-channel__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
  color: var(--gold);
}
.contact-channel:hover .contact-channel__arrow {
  opacity: 1;
  right: 16px;
}
@media (max-width: 767px) {
  .contact-channel {
    padding: 20px;
  }
  .contact-channel__arrow {
    display: none;
  }
  .contact-channel__icon {
    width: 48px;
    height: 48px;
  }
  .contact-channel__value {
    font-size: 1rem;
  }
}

/* Main Section */
.contact-main {
  padding: 56px 0 72px;
  background: #eeede8;
}
@media (min-width: 1024px) {
  .contact-main {
    padding: 72px 0 88px;
  }
}
.contact-main__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .contact-main__grid {
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
  }
}
.contact-main__info {
  display: flex;
  flex-direction: column;
}
.contact-main__form {
  display: flex;
  flex-direction: column;
}

/* Info Card */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
}
.contact-info-card--premium {
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.08);
}
.contact-info-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.contact-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
}
.contact-info-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0;
  color: var(--charcoal);
}
.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-benefits li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefit-text strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.benefit-text span {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.6;
  line-height: 1.4;
}

/* Quick Info */
.contact-quick-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quick-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}
.quick-info-item:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateX(4px);
}
.quick-info-item span {
  font-size: 0.9375rem;
  color: var(--charcoal);
  opacity: 0.8;
}
.quick-info-item span strong {
  font-weight: 600;
  color: var(--charcoal);
  opacity: 1;
}
@media (max-width: 767px) {
  .contact-info-card {
    padding: 24px;
  }
  .quick-info-item {
    padding: 14px 16px;
  }
}

/* Social Card */
.contact-social-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-social-card__label {
  display: block;
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 16px;
}
.contact-social-card__links {
  display: flex;
  gap: 12px;
}
.contact-social-btn--large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--charcoal);
  transition: all 0.3s;
}
.contact-social-btn--large:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-alert-region:empty {
  display: none;
}

/* Enhanced Form */
.contact-form-card--enhanced {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .contact-form-card--enhanced {
    padding: 24px;
  }
}
.contact-form__head--enhanced {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-form__head--enhanced h3 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.contact-form__head--enhanced p {
  margin: 0;
  color: var(--charcoal);
  opacity: 0.65;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form--enhanced {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form__row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-field--enhanced {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-field--enhanced label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: none;
  letter-spacing: normal;
}
.contact-field--enhanced label .required {
  color: #dc2626;
  margin-left: 4px;
}
.contact-field--enhanced input,
.contact-field--enhanced select,
.contact-field--enhanced textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(26, 26, 26, 0.1);
  background: #faf9f6;
  font-size: 1rem;
  font-family: inherit;
  color: var(--charcoal);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.contact-field--enhanced input:focus,
.contact-field--enhanced select:focus,
.contact-field--enhanced textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
  outline: none;
  background: #fff;
}
.contact-field--enhanced input::placeholder,
.contact-field--enhanced textarea::placeholder {
  color: rgba(26, 26, 26, 0.4);
}
.contact-field--enhanced select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}
.contact-field--enhanced textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.contact-field--full {
  grid-column: 1/-1;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.contact-form__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--charcoal);
  opacity: 0.7;
}
.contact-form__trust svg {
  flex-shrink: 0;
}
.contact-form__trust strong {
  color: var(--gold);
  opacity: 1;
}

.contact-form__consent {
  font-size: 0.8125rem;
  color: var(--charcoal);
  opacity: 0.55;
  margin: 0;
  line-height: 1.6;
}
.contact-form__consent a {
  color: var(--gold);
  text-decoration: underline;
}
.contact-form__consent a:hover {
  opacity: 0.8;
}

/* Testimonials */
.contact-testimonials {
  padding: 64px 0;
  background: var(--warm-white);
}
@media (max-width: 767px) {
  .contact-testimonials {
    padding: 48px 0;
  }
}
.contact-testimonials__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.35s;
}
.contact-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.2);
}
.contact-testimonial__stars {
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.contact-testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 24px;
  font-style: italic;
}
.contact-testimonial__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-testimonial__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}
.contact-testimonial__role {
  font-size: 0.8125rem;
  color: var(--charcoal);
  opacity: 0.55;
}
.contact-testimonial__result {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-full);
}

/* Map Section */
.contact-map-section {
  padding: 0 0 72px;
  background: var(--cream);
}
@media (max-width: 767px) {
  .contact-map-section {
    padding: 0 0 56px;
  }
}
.contact-map-header {
  text-align: center;
  margin-bottom: 36px;
}
.contact-map-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3.5vw, 2rem);
  margin: 10px 0 6px;
  color: var(--charcoal);
}
.contact-map-subtitle {
  font-size: 0.9375rem;
  color: var(--charcoal);
  opacity: 0.6;
}

/* Map Info Grid */
.contact-map-info-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contact-map-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.map-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s;
}
.map-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.2);
}
.map-info-card--highlight {
  background: linear-gradient(135deg, #fff 0%, rgba(212, 175, 55, 0.05) 100%);
  border-color: rgba(212, 175, 55, 0.2);
}
.map-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
  margin-bottom: 16px;
}
.map-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin: 0 0 8px;
  color: var(--charcoal);
}
.map-info-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--charcoal);
  opacity: 0.7;
  margin: 0 0 10px;
}
.map-info-hint {
  font-size: 0.8125rem;
  color: var(--charcoal);
  opacity: 0.55;
  display: block;
}
.map-info-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s;
}
.map-info-link:hover {
  color: var(--charcoal);
  gap: 8px;
}

.map-info-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 18px;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s;
}
.map-info-cta:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}
.map-info-cta svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.map-info-cta:hover svg {
  transform: translateX(2px);
}

/* Scroll to form */
.scroll-to-form {
  cursor: pointer;
}

/* ═══════════════════════════════════════════════
   DĖSTYTOJAI PAGE
   ═══════════════════════════════════════════════ */

/* Hero */
.teachers-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  background: var(--charcoal);
}
@media (min-width: 1024px) {
  .teachers-hero {
    padding: 100px 0 112px;
  }
}
.teachers-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.teachers-hero__glow {
  display: none;
}

/* Split layout */
.teachers-hero__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .teachers-hero__split {
    grid-template-columns: 1fr 420px;
    gap: 72px;
  }
}

/* Left: content */
.teachers-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.teachers-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.teachers-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin-bottom: 20px;
}
.teachers-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(250, 249, 246, 0.65);
  max-width: 520px;
  margin-bottom: 36px;
}
.teachers-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

/* Trust stats */
.teachers-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.teachers-trust-stat {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.teachers-trust-stat:last-of-type {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.teachers-trust-stat__num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
}
.teachers-trust-stat__label {
  font-size: 0.8125rem;
  color: rgba(250, 249, 246, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}
.teachers-trust-sep {
  display: none;
}

/* Right: visual */
.teachers-hero__visual {
  position: relative;
}
.teachers-hero__visual-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 175, 55, 0.15);
}
.teachers-hero__visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 1023px) {
  .teachers-hero__visual-img {
    height: 320px;
  }
}
.teachers-hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.5) 0%, transparent 50%);
}
.teachers-hero__visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ═══ TEAM OVERVIEW ═══ */
.team-overview {
  padding: 80px 0 96px;
  background: var(--charcoal);
}
@media (min-width: 1024px) {
  .team-overview {
    padding: 96px 0 112px;
  }
}

/* Header row: text left, photo right */
.team-overview__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .team-overview__header {
    grid-template-columns: 1fr auto;
    gap: 64px;
  }
}
.team-overview__header-text {
  padding-bottom: 4px;
}
.team-overview__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  color: var(--warm-white);
  margin: 12px 0 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.team-overview__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(250, 249, 246, 0.6);
  max-width: 480px;
  margin: 0;
}

/* Photo with badge */
.team-overview__photo-wrap {
  position: relative;
  flex-shrink: 0;
  padding-bottom: 20px;
}
.team-overview__photo {
  width: 360px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}
@media (max-width: 767px) {
  .team-overview__photo {
    width: 100%;
    height: 240px;
  }
}
.team-overview__photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold-gradient);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}
.team-overview__photo-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  line-height: 1;
  font-weight: 700;
}
.team-overview__photo-badge-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--charcoal);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

/* Mini cards grid */
.team-overview__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .team-overview__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  .team-overview__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}
.team-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.team-mini-card:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.22);
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}
.team-mini-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.team-mini-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-mini-card__avatar--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.06);
}
.team-mini-card__info {
  min-width: 0;
}
.team-mini-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--warm-white);
  margin: 0 0 4px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team-mini-card__role {
  font-size: 0.775rem;
  color: var(--gold);
  opacity: 0.8;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-mini-card__info {
  min-width: 0;
  flex: 1;
}

/* Featured Teacher */
.teachers-featured {
  padding: 80px 0 72px;
  background: var(--warm-white);
}
@media (min-width: 1024px) {
  .teachers-featured {
    padding: 96px 0 88px;
  }
}
.teachers-featured__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .teachers-featured__grid {
    grid-template-columns: 460px 1fr;
    gap: 72px;
  }
}
.teachers-featured__image-wrap {
  position: relative;
}
.teachers-featured__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.2);
  aspect-ratio: 4/5;
  background: var(--graphite);
}
.teachers-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.teachers-featured__image-frame:hover .teachers-featured__img {
  transform: scale(1.04);
}
.teachers-featured__badge-founder {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}
.teachers-featured__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.teachers-featured__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin: 12px 0 8px;
  letter-spacing: -0.02em;
}
.teachers-featured__role {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.teachers-featured__bio {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 16px;
}
.teachers-featured__bio:last-of-type {
  margin-bottom: 28px;
}
.teachers-featured__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.teachers-specialty-tag {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--charcoal);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Team Grid */
.teachers-team {
  position: relative;
  padding: 80px 0 96px;
  background: #eeede8;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .teachers-team {
    padding: 96px 0 112px;
  }
}
.teachers-team__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.teachers-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .teachers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .teachers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Teacher Card */
.teacher-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.3);
}
.teacher-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--graphite);
}
.teacher-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.teacher-card:hover .teacher-card__img {
  transform: scale(1.06);
}
.teacher-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.35s;
}
.teacher-card:hover .teacher-card__overlay {
  opacity: 1;
}
.teacher-card__overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: transform 0.2s;
  transform: translateY(12px);
}
.teacher-card:hover .teacher-card__overlay-btn {
  transform: translateY(0);
}
.teacher-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.teacher-card__exp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.teacher-card__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.teacher-card__role {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.55;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.4;
}
.teacher-card__bio-wrap {
  position: relative;
  max-height: 88px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-bottom: 8px;
}
.teacher-card__bio-wrap.is-expanded {
  max-height: 600px;
}
.teacher-card__bio-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s;
}
.teacher-card__bio-wrap.is-expanded::after {
  opacity: 0;
}
.teacher-card__bio {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.7;
  margin: 0 0 4px;
}
.teacher-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  transition: gap 0.2s;
}
.teacher-read-more:hover {
  gap: 8px;
}
.teacher-read-more svg {
  transition: transform 0.3s;
}
.teacher-read-more.is-expanded svg {
  transform: rotate(180deg);
}
.teacher-read-more.is-expanded .read-more-label::before {
  content: 'Rodyti mažiau';
}
.teacher-read-more:not(.is-expanded) .read-more-label::before {
  content: 'Skaityti daugiau';
}
.teacher-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.teacher-tag {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Values Strip */
.teachers-values {
  padding: 64px 0 72px;
  background: var(--charcoal);
}
.teachers-values__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .teachers-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .teachers-values__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.teachers-value {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.teachers-value:last-child {
  border-right: none;
}
@media (max-width: 1023px) {
  .teachers-value {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
  }
  .teachers-value:last-child {
    border-bottom: none;
  }
}
.teachers-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.teachers-value h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--warm-white);
  margin: 0;
}
.teachers-value p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(250, 249, 246, 0.55);
  margin: 0;
}

/* CTA */
.teachers-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  background: var(--graphite);
  text-align: center;
}
.teachers-cta__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.teachers-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.teachers-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: var(--warm-white);
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
}
.teachers-cta__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(250, 249, 246, 0.65);
  margin-bottom: 40px;
}
.teachers-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.teachers-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(250, 249, 246, 0.65);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s;
}
.teachers-cta__link:hover {
  color: var(--gold);
  gap: 10px;
}
@media (max-width: 767px) {
  .teachers-hero {
    padding: 64px 0 72px;
  }
  .teachers-featured {
    padding: 56px 0 48px;
  }
  .teachers-team {
    padding: 56px 0 64px;
  }
  .teachers-values {
    padding: 48px 0 56px;
  }
  .teachers-cta {
    padding: 64px 0 72px;
  }
}

/* ═══ KURSAI PAGE ═══ */
.kursai-page {
  background: var(--cream);
}

/* Hero */
.kursai-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 56px;
  background: var(--charcoal);
}
.kursai-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.kursai-hero__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.kursai-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: var(--warm-white);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}
.kursai-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(250, 249, 246, 0.6);
  margin: 0;
}

/* Filter bar */
.kursai-filter {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 0 32px;
}
.kursai-filter__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.kursai-filter__btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: rgba(250, 249, 246, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  background: transparent;
  text-decoration: none;
}
.kursai-filter__btn:hover {
  border-color: var(--gold);
  color: var(--warm-white);
}
.kursai-filter__btn--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
}

/* Grid */
.kursai-grid-section {
  padding: 56px 0 96px;
}
.kursai-grid-section .container {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .kursai-grid-section .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .kursai-grid-section .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.kursai-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.kursai-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.18);
}
.kursai-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.kursai-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.kursai-card:hover .kursai-card__img {
  transform: scale(1.05);
}
.kursai-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--graphite);
}
.kursai-card__duration {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  font-size: 0.8125rem;
  color: var(--charcoal);
}
.kursai-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.kursai-card__teachers {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kursai-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 0;
}
.kursai-card__title a {
  color: inherit;
  text-decoration: none;
}
.kursai-card__title a:hover {
  color: var(--gold);
}
.kursai-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.kursai-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: #666;
}
.kursai-card__meta-item--spots {
  color: var(--gold);
  font-weight: 600;
}
.kursai-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.kursai-card__price {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* Empty state */
.kursai-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.kursai-empty p {
  font-size: 1.0625rem;
  color: #666;
}

@media (max-width: 767px) {
  .kursai-hero {
    padding: 56px 0 40px;
  }
  .kursai-grid-section {
    padding: 40px 0 64px;
  }
}

/* ── Scroll to top button ── */
.mil-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  background: var(--gold, #d4af37);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.mil-scroll-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mil-scroll-top:hover {
  background: var(--gold-light, #e6c547);
  transform: translateY(-2px);
}
.mil-scroll-top svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .mil-scroll-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  .mil-scroll-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ── Mobile sticky CTA button ── */
.mil-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.mil-sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mil-sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gold, #d4af37), var(--gold-light, #e6c547));
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.mil-sticky-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (min-width: 769px) {
  .mil-sticky-cta {
    display: none;
  }
}
