/* ============================================
   VOGUSU DOXOLI — MONOCHROME PLUS DESIGN SYSTEM
   Primary: Deep Slate (#1a1f2e)
   Palette: Slate shades from #f0f1f5 to #0d1018
   Accent: Warm Amber (#c8860a)
   ============================================ */


:root {
  --slate-50: #f0f1f5;
  --slate-100: #e2e4ec;
  --slate-200: #c8ccd9;
  --slate-300: #a8afc4;
  --slate-400: #7a839e;
  --slate-500: #535c78;
  --slate-600: #3d4560;
  --slate-700: #2a3048;
  --slate-800: #1a1f2e;
  --slate-900: #0d1018;

  --accent: #c8860a;
  --accent-light: #e8a020;
  --accent-dim: #8a5c07;
  --accent-bg: rgba(200, 134, 10, 0.08);

  --text-primary: #1a1f2e;
  --text-secondary: #535c78;
  --text-muted: #7a839e;
  --text-on-dark: #e2e4ec;
  --text-on-dark-muted: #a8afc4;

  --bg-page: #f7f8fb;
  --bg-light: #f0f1f5;
  --bg-mid: #e8eaf2;
  --bg-dark: #1a1f2e;
  --bg-darker: #0d1018;

  --border-light: #e2e4ec;
  --border-mid: #c8ccd9;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(13,16,24,0.08), 0 1px 2px rgba(13,16,24,0.04);
  --shadow-md: 0 4px 12px rgba(13,16,24,0.10), 0 2px 4px rgba(13,16,24,0.06);
  --shadow-lg: 0 8px 30px rgba(13,16,24,0.14), 0 4px 8px rgba(13,16,24,0.08);
  --shadow-xl: 0 20px 60px rgba(13,16,24,0.18), 0 8px 20px rgba(13,16,24,0.10);
  --shadow-accent: 0 4px 20px rgba(200,134,10,0.25), 0 2px 6px rgba(200,134,10,0.12);

  --nav-height: 72px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
  line-height: 1.25;
  color: var(--text-primary);
}


.lang-badge {
  position: fixed;
  top: 88px;
  right: 16px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 4px 10px 4px 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.04em;
}
.lang-badge__flag { font-size: 14px; line-height: 1; }
.lang-badge__text { text-transform: uppercase; }


.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--legal { max-width: 780px; }


.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-page);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--slate-200);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled::after {
  left: 0;
  right: 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-height);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-img { width: 32px; height: 32px; }
.nav__logo-text {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav__links {
  display: none;
  gap: 4px;
  align-items: center;
  flex: 1;
}
@media (min-width: 960px) {
  .nav__links { display: flex; }
}

.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover { color: var(--text-primary); background: var(--bg-light); }
.nav__link--active { color: var(--text-primary); font-weight: 600; }

.nav__actions {
  display: none;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 960px) {
  .nav__actions { display: flex; }
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__hamburger:hover { background: var(--bg-light); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav__hamburger { display: none; }
}

.nav__mobile-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-page);
  border-top: 1px solid var(--border-light);
}
.nav__mobile-panel.open { max-height: 480px; }

.nav__mobile-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.nav__mobile-link:hover,
.nav__mobile-link--active { color: var(--text-primary); background: var(--bg-light); }

.nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 20px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 6px 28px rgba(200,134,10,0.35);
  transform: translateY(-1px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-mid);
}
.btn--outline:hover {
  border-color: var(--slate-400);
  background: var(--bg-light);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn--sm { padding: 8px 16px; font-size: 13px; min-height: 36px; }
.btn--lg { padding: 15px 32px; font-size: 15px; min-height: 52px; }
.btn--full { width: 100%; }


.section {
  padding: 96px 0;
}
.section--light { background: var(--bg-light); }
.section--mid { background: var(--bg-mid); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--text-on-dark);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header--light h2 { color: var(--text-on-dark); }

.section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.section__eyebrow--accent { color: var(--accent); }

.section__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  max-width: 680px;
  margin: 0 auto 16px;
}
.section__header--light .section__heading { color: var(--text-on-dark); }

.section__intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section__header--light .section__intro { color: var(--text-on-dark-muted); }

.section__cta {
  text-align: center;
  margin-top: 48px;
}


.hero {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 400px;
}
@media (max-width: 767px) {
  .hero__split { grid-template-columns: 1fr; min-height: 300px; }
}

.hero__half {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
@media (min-width: 768px) { .hero__half { min-height: 420px; } }

.hero__half-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero__half:hover .hero__half-img { transform: scale(1.03); }

.hero__half--left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,134,10,0.15) 0%, rgba(13,16,24,0.55) 100%);
}
.hero__half--right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,16,24,0.6) 0%, rgba(26,31,46,0.7) 100%);
}

.hero__half-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(13,16,24,0.5);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero__half--left .hero__half-label {
  color: var(--accent-light);
  background: rgba(200,134,10,0.2);
}

.hero__half-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.5;
}
.hero__half--left .hero__half-caption i { color: var(--accent-light); }
.hero__half--right .hero__half-caption i { color: var(--slate-300); }

.hero__content {
  padding: 56px 24px 72px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__heading em {
  font-style: italic;
  color: var(--accent-light);
}

.hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-on-dark-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


.quad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .quad-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .quad-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}


.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card--insight { background: #fff; }
.card--insight .card__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}
.card--insight .card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.card--insight .card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.card--philosophy {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
.card--philosophy:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.card--philosophy .card__num {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.card--philosophy .card__title {
  font-size: 17px;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.card--philosophy .card__text {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

.card--tip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
.card--tip:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.card--tip .card__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 14px;
}
.card--tip .card__title {
  font-size: 16px;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}
.card--tip .card__text {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
}

.card--module {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.card--module:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card__module-num {
  padding: 14px 20px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-top: 8px;
}

.card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__body .card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.card__body .card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 12px;
}
.card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: auto;
}


.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.process-step:hover { background: rgba(255,255,255,0.03); }

.process-step__number {
  font-family: 'Lora', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step__content h3 {
  font-size: 18px;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.process-step__content p {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}


.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.benefit {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.benefit__check {
  width: 36px;
  height: 36px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.benefit__content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.benefit__content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}


.section--accent-band {
  background: var(--slate-700);
  padding: 96px 0;
}

.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-teaser { grid-template-columns: 1fr 1fr; }
}

.about-teaser__text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--text-on-dark);
  margin-bottom: 20px;
}
.about-teaser__text p {
  font-size: 15px;
  color: var(--text-on-dark-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-teaser__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}


.page-hero {
  background: var(--bg-dark);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,134,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.page-hero__heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-hero__sub {
  font-size: 17px;
  color: var(--text-on-dark-muted);
  line-height: 1.75;
}


.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .about-story { grid-template-columns: 1fr 1fr; }
}

.about-story__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-story__caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.about-story__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 20px;
}
.about-story__text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}


.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
}

.compare-col {
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-light);
}
.compare-col--is {
  background: #fff;
  box-shadow: var(--shadow-md);
}
.compare-col--not {
  background: var(--bg-light);
}

.compare-col__header {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-col--is .compare-col__header { color: var(--accent); }
.compare-col--not .compare-col__header { color: var(--text-secondary); }

.compare-list li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  line-height: 1.55;
}
.compare-list li:last-child { border-bottom: none; }


.section--cta-band {
  background: var(--bg-dark);
  padding: 80px 0;
}

.cta-band {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 16px;
  color: var(--text-on-dark-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}


.module-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .module-meta { grid-template-columns: repeat(4, 1fr); }
}

.module-meta__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.module-meta__item i {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.module-meta__item div {
  display: flex;
  flex-direction: column;
}
.module-meta__item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.module-meta__item span {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}


.modules-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.module-card {
  display: grid;
  grid-template-columns: 80px 260px 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.module-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

@media (max-width: 900px) {
  .module-card {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .module-card__img-wrap {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .module-card__num {
    grid-column: 1;
    grid-row: 2;
  }
  .module-card__body {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (max-width: 600px) {
  .module-card {
    grid-template-columns: 1fr;
  }
  .module-card__num {
    grid-column: 1;
    grid-row: 2;
    padding: 12px 20px 0;
  }
  .module-card__body {
    grid-column: 1;
    grid-row: 3;
  }
}

.module-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-light);
  padding: 24px 16px;
  border-right: 1px solid var(--border-light);
}

.module-card__img-wrap {
  overflow: hidden;
}
.module-card__img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.module-card:hover .module-card__img { transform: scale(1.04); }

.module-card__body {
  padding: 28px 32px;
}
.module-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.module-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.module-card__body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.module-card__exercise {
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.module-card__exercise strong { color: var(--text-primary); }
.module-card__meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
}
.module-card__meta i { color: var(--accent); margin-right: 4px; }


.path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .path-grid { grid-template-columns: 1fr 1fr; }
}

.path-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.path-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}
.path-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}
.path-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.path-card__suggestion {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
}
.path-card__suggestion strong { color: var(--text-primary); display: block; margin-bottom: 2px; }
.path-card__suggestion span { color: var(--accent); font-weight: 600; }
.path-card__then {
  font-size: 13px;
  color: var(--text-muted);
}
.path-card__then strong { color: var(--text-secondary); }


.start-intro, .start-expect {
  max-width: 720px;
}
.start-intro h2, .start-expect h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 20px;
}
.start-intro p, .start-expect p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}


.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 400px; }
}

.contact-form-wrap__title {
  font-size: 24px;
  margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.form-input {
  padding: 12px 16px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: #fff;
  transition: var(--transition);
  width: 100%;
  min-height: 44px;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.12);
}
.form-input--textarea { resize: vertical; min-height: 120px; }

.form-field--checkbox { margin-top: 4px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-checkbox__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.form-checkbox__text a { color: var(--accent); text-decoration: underline; }

.contact-info__block {
  margin-bottom: 32px;
}
.contact-info__block h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__item i {
  width: 20px;
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-info__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info__item strong {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.contact-info__item a, .contact-info__item span {
  font-size: 15px;
  color: var(--text-primary);
}
.contact-info__item a:hover { color: var(--accent); }

.contact-info__block--access {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-light);
}

.access-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.access-note__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.access-note h4 {
  font-size: 15px;
  margin-bottom: 8px;
}
.access-note p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}


.section--map { padding: 0 0 80px; background: var(--bg-light); }
.map-wrap__title { font-size: 22px; margin-bottom: 20px; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}


.thanks-section {
  min-height: calc(100vh - var(--nav-height) - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--bg-page);
}

.thanks-card {
  text-align: center;
  max-width: 480px;
}

.thanks-check {
  margin: 0 auto 32px;
  width: 80px;
  height: 80px;
}

.thanks-svg {
  width: 80px;
  height: 80px;
  color: var(--accent);
}

.thanks-svg__circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.7s ease forwards;
}

.thanks-svg__check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.5s ease 0.7s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.3s forwards;
}

.thanks-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.5s forwards;
}

.thanks-card .btn {
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.7s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}


.footer {
  background: var(--bg-darker);
  color: var(--text-on-dark-muted);
  margin-top: auto;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 2fr; }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__logo-img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.footer__logo span {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.footer__contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark-muted);
}
.footer__contact i {
  color: var(--accent);
  width: 14px;
  flex-shrink: 0;
}
.footer__contact a {
  color: var(--text-on-dark-muted);
  transition: var(--transition);
}
.footer__contact a:hover { color: var(--accent); }

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--accent); }

.footer__latest {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__latest-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.footer__latest-item:last-child { border-bottom: none; padding-bottom: 0; }
.footer__latest-item:hover .footer__latest-title { color: var(--accent); }

.footer__latest-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer__latest-title {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  line-height: 1.45;
  transition: var(--transition);
}

.footer__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--slate-500);
}


.legal-hero {
  background: var(--bg-dark);
  padding: 64px 0 48px;
}
.legal-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 8px;
}
.legal-hero__meta {
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

.legal-body {
  padding: 64px 0 96px;
  background: var(--bg-page);
}

.legal-intro {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent);
}
.legal-intro p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-intro p:last-child { margin-bottom: 0; }

.legal-intro-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}
.legal-intro-text a { color: var(--accent); text-decoration: underline; }

.legal-qa {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.legal-qa:last-child { border-bottom: none; }

.legal-q {
  font-family: 'Lora', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.legal-a p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-a p:last-child { margin-bottom: 0; }
.legal-a a { color: var(--accent); text-decoration: underline; }
.legal-a strong { color: var(--text-primary); }

.legal-section-heading {
  font-size: 20px;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.legal-body .container--legal p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-body .container--legal a { color: var(--accent); text-decoration: underline; }
.legal-body .container--legal strong { color: var(--text-primary); }

.cookie-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.cookie-section:last-child { border-bottom: none; }
.cookie-section h2 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cookie-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.cookie-section p:last-child { margin-bottom: 0; }
.cookie-section a { color: var(--accent); text-decoration: underline; }
.cookie-section strong { color: var(--text-primary); }

.cookie-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.cookie-table th {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:hover td { background: var(--bg-light); }


.cookie-consent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 320px;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  overflow: hidden;
}
.cookie-consent.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent__header {
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-consent__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.cookie-consent__title {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.cookie-consent__body {
  padding: 14px 20px 0;
}
.cookie-consent__msg {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}
.cookie-consent__msg a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-consent__toggles {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cookie-consent__toggles.open { max-height: 200px; }

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-toggle:last-child { border-bottom: none; }
.cookie-toggle__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
}
.cookie-toggle__label span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--slate-500);
  margin-top: 1px;
}

.toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch__track {
  position: absolute;
  inset: 0;
  background: var(--slate-600);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-switch__track { background: var(--accent); }
.toggle-switch__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-switch__track::after { transform: translateX(16px); }
.toggle-switch input:disabled + .toggle-switch__track { opacity: 0.5; cursor: not-allowed; }

.cookie-consent__actions {
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-consent__customize {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.cookie-consent__customize:hover { color: var(--accent-light); }


@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .hero__content { padding: 40px 20px 56px; }
  .hero__cta-group { flex-direction: column; align-items: center; }
  .cookie-consent { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
  .module-card { grid-template-columns: 1fr; }
  .module-card__num { padding: 16px 20px 0; justify-content: flex-start; }
  .module-card__img { min-height: 200px; }
  .about-teaser__img { height: 260px; }
}

@media (max-width: 480px) {
  .nav__logo-text { display: none; }
  .footer__bottom { flex-direction: column; text-align: center; }
}