/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a6b3c;
  --primary-dark: #134d2c;
  --primary-light: #e8f5ee;
  --accent: #f5a623;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8faf9;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== TYPOGRAPHY ====== */
.section { padding: 96px 0; }
.section__tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
}
.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__head .section__sub { margin: 0 auto; }

.accent { color: var(--primary); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--sm { padding: 8px 20px; font-size: 14px; }
.btn--lg { padding: 16px 36px; font-size: 17px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,107,60,0.3); }

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  padding: 12px 24px;
}
.btn--ghost:hover { background: var(--primary-light); }

.btn--white {
  background: #fff;
  color: var(--primary);
  padding: 12px 24px;
}
.btn--white:hover { background: #f0f0f0; }

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo__icon { font-size: 28px; color: var(--primary); }
.logo__text strong { color: var(--primary); }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__link:hover { color: var(--primary); background: var(--primary-light); }

.header__cta { margin-left: 8px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #e8f5ee 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 90% 10%, #fff8e7 0%, transparent 60%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat__label { font-size: 14px; color: var(--text-muted); }

/* ====== PARTNERS ====== */
.partners {
  padding: 28px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners__label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 20px;
}
.partners__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.partner {
  font-size: 18px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.partner:hover { color: var(--primary); }

/* ====== ABOUT ====== */
.about { background: var(--bg); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d4eedf 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* PDCA Diagram */
.pdca { position: relative; width: 260px; height: 260px; }
.pdca__ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid var(--primary);
  opacity: 0.2;
}
.pdca__inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 30px;
}
.pdca__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.pdca__p { background: var(--primary); border-radius: 50% 12px 12px 12px; }
.pdca__d { background: #2196f3; border-radius: 12px 50% 12px 12px; }
.pdca__c { background: var(--accent); border-radius: 12px 12px 12px 50%; }
.pdca__a { background: #e91e63; border-radius: 12px 12px 50% 12px; }

.about__text { color: var(--text-muted); margin-bottom: 16px; font-size: 17px; }
.about__tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tool-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(26,107,60,0.2);
}

/* ====== QUIZ PROMO ====== */
.quiz-promo {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}
.quiz-promo__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.quiz-promo__characters {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.qp-char {
  font-size: 40px;
  display: block;
  line-height: 1.3;
  transition: transform 0.3s;
  opacity: 0.85;
}
.qp-char:hover { transform: scale(1.3) rotate(-5deg); opacity: 1; }
.qp-char--1 { animation: floatChar 3s ease-in-out infinite 0s; }
.qp-char--2 { animation: floatChar 3s ease-in-out infinite 0.4s; }
.qp-char--3 { animation: floatChar 3s ease-in-out infinite 0.8s; }
.qp-char--4 { animation: floatChar 3s ease-in-out infinite 1.2s; }
.qp-char--5 { animation: floatChar 3s ease-in-out infinite 1.6s; }
@keyframes floatChar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.quiz-promo__content { flex: 1; }
.quiz-promo__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.quiz-promo__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 540px;
}
.quiz-promo__levels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.quiz-promo__levels span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.qp-arrow {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}
.quiz-promo__btn {
  background: var(--accent);
  color: #1a1a2e;
  border-color: var(--accent);
  font-size: 17px;
}
.quiz-promo__btn:hover {
  background: #e09510;
  border-color: #e09510;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

@media (max-width: 760px) {
  .quiz-promo__inner { flex-direction: column; gap: 32px; }
  .quiz-promo__characters { flex-direction: row; justify-content: center; }
  .qp-char { font-size: 32px; }
}

/* ====== COURSES ====== */
.courses { background: var(--bg-alt); }
.courses__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab:hover, .tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-card--featured {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, #f0faf5 100%);
}
.course-card--corporate {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  border-color: transparent;
}
.course-card--corporate .course-card__cat,
.course-card--corporate .course-card__desc,
.course-card--corporate .course-card__features li { color: rgba(255,255,255,0.7); }
.course-card--corporate .course-card__title { color: #fff; }
.course-card--corporate .price__cur { color: #fff; }

.course-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 12px 0 12px;
}
.course-card__badge--gold { background: var(--primary); }
.course-card__badge--new { background: #7c3aed; }

.course-card--ladm {
  border-color: #7c3aed;
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, #f5f0ff 100%);
}
.course-card--ladm .course-card__cat { color: #7c3aed; }

.course-card--stdtimes {
  border-color: #0369a1;
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
}
.course-card--stdtimes .course-card__cat { color: #0369a1; }

.course-card__icon { font-size: 40px; }
.course-card__cat { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); }
.course-card__title { font-size: 20px; font-weight: 700; line-height: 1.3; }
.course-card__desc { color: var(--text-muted); font-size: 15px; flex: 1; }
.course-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.course-card__features li { font-size: 14px; color: var(--text-muted); }
.course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.course-card--corporate .course-card__footer { border-top-color: rgba(255,255,255,0.1); }
.course-card__price { display: flex; flex-direction: column; gap: 2px; }
.price__old { font-size: 13px; color: #aaa; text-decoration: line-through; }
.price__cur { font-size: 22px; font-weight: 800; color: var(--primary); }

/* hidden */
.course-card.hidden { display: none; }

/* Game button on 5S card */
.course-card__game-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a6b3c, #2e9e5e);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  animation: gamePulse 2.5s infinite;
}
.course-card__game-btn:hover {
  background: linear-gradient(135deg, #134d2c, #1a6b3c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,60,0.35);
  animation: none;
}
@keyframes gamePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,107,60,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(26,107,60,0); }
}

/* Nav quiz link */
.nav__link--quiz {
  background: linear-gradient(135deg, #f59e0b, #f5a623);
  color: #fff !important;
  border-radius: 8px;
  padding: 6px 14px !important;
}
.nav__link--quiz:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b) !important;
  color: #fff !important;
}

/* Nav link highlight for new section */
.nav__link--new {
  background: linear-gradient(135deg, #1a6b3c, #2e9e5e);
  color: #fff !important;
  border-radius: 8px;
  padding: 6px 14px !important;
  animation: gamePulse 2.5s infinite;
}
.nav__link--new:hover {
  background: linear-gradient(135deg, #134d2c, #1a6b3c) !important;
  color: #fff !important;
  animation: none;
}

/* Lean Flow course card accent */
.course-card--lean-flow {
  background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
  border-color: #1976d2;
  border-width: 2px;
}

/* ====== BENEFITS ====== */
.benefits { background: var(--bg); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--primary); }
.benefit-card__icon { font-size: 36px; margin-bottom: 16px; }
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ====== PROCESS ====== */
.process { background: var(--bg-alt); }
.process__steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.process__step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.step__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.step__content h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step__content p { color: var(--text-muted); font-size: 14px; }
.process__arrow { font-size: 28px; color: var(--primary); opacity: 0.4; flex-shrink: 0; }

/* ====== REVIEWS ====== */
.reviews { background: var(--bg); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.review-card__stars { color: var(--accent); font-size: 20px; margin-bottom: 16px; }
.review-card__text { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.review-card__author { display: flex; align-items: center; gap: 14px; }
.author__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 15px; }
.review-card__author span { font-size: 13px; color: var(--text-muted); }

/* ====== CTA BANNER ====== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__content h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-banner__content p { color: rgba(255,255,255,0.8); font-size: 17px; }

/* ====== CONTACT ====== */
.contact { background: var(--bg-alt); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact__sub { color: var(--text-muted); font-size: 17px; margin-bottom: 40px; }
.contact__items { display: flex; flex-direction: column; gap: 24px; }
.contact__item { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon { font-size: 24px; flex-shrink: 0; }
.contact__item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.contact__item span { color: var(--text-muted); font-size: 15px; }

.contact__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact__form h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }

.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form__group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form__group input,
.form__group select,
.form__group textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--primary); background: #fff; }
.form__note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ====== FOOTER ====== */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand .logo { color: #fff; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.7; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col strong { color: #fff; font-size: 15px; margin-bottom: 4px; }
.footer__col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

/* ====== MODAL ====== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.92);
  transition: transform var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1); }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-alt);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal__close:hover { background: var(--border); }
.modal__icon { font-size: 40px; margin-bottom: 12px; }
.modal__title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal__price { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 28px; }

/* ====== TOAST ====== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 3000;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ====== FOOTER LEGAL ====== */
.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer__legal strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a2e;
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 4000;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--primary);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { max-width: 700px; line-height: 1.5; }
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner .btn { flex-shrink: 0; }

/* ====== FORM NOTE LINKS ====== */
.form__note a { color: var(--primary); text-decoration: underline; }
.form__note a:hover { color: var(--primary-dark); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .process__steps { gap: 8px; }
  .process__arrow { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .hero__stats { gap: 24px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .process__step { min-width: 100%; max-width: 100%; }
}

/* ====== RUSSIA TOPBAR (триколор) ====== */
.russia-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  display: flex;
  z-index: 1100;
  pointer-events: none;
}
.russia-topbar span { flex: 1; }
.russia-topbar span:nth-child(1) { background: #f0f0f0; box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06); }
.russia-topbar span:nth-child(2) { background: #0039A6; }
.russia-topbar span:nth-child(3) { background: #D52B1E; }

/* ====== FOR RUSSIA SECTION ====== */
.for-russia { background: var(--bg-alt); }
.for-russia__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.for-russia__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.for-russia__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #0039A6;
}
.for-russia__icon { font-size: 36px; margin-bottom: 16px; }
.for-russia__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.for-russia__card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.for-russia__quote-wrap {
  background: #f0f4ff;
  border-radius: var(--radius);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.for-russia__quote-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom,
    #f0f0f0 0% 33.33%,
    #0039A6 33.33% 66.66%,
    #D52B1E 66.66% 100%
  );
}
.for-russia__quote {
  font-size: 19px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  text-align: center;
}
.for-russia__quote strong { color: var(--primary); font-style: normal; }

/* ====== PATRIOTIC BENEFIT CARD ====== */
.benefit-card--russia {
  border-color: rgba(213,43,30,0.25);
  background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
}
.benefit-card--russia:hover { border-color: #D52B1E; box-shadow: var(--shadow); }
