@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600&family=Montserrat:wght@600;700;800&family=Unbounded:wght@700;800&display=swap");

/* EDDY — стили для Tilda (вставлять в «Пользовательские CSS», БЕЗ тега style) */

#eddy-root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --bg-dark: #0f1c33;
  --bg-blue: #1e3a8a;
  --navy: #1b2d4f;
  --navy-deep: #0f1c33;
  --text: #1b2d4f;
  --text-muted: #5a6b85;
  --text-on-dark: #e8edf7;
  --blue: #2f5bff;
  --blue-bright: #4d74ff;
  --blue-soft: #e8eeff;
  --blue-gradient: linear-gradient(135deg, #2f5bff 0%, #5b7cff 45%, #7b68ee 100%);
  --blue-card: linear-gradient(145deg, #2346c8 0%, #3d5afe 55%, #5c6bc0 100%);
  --yellow: #ffca28;
  --border: rgba(27, 45, 79, 0.1);
  --shadow: 0 20px 60px rgba(27, 45, 79, 0.12);
  --shadow-sm: 0 8px 28px rgba(27, 45, 79, 0.08);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1200px;
  --font: "Golos Text", system-ui, sans-serif;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-logo: "Unbounded", system-ui, sans-serif;
}

#eddy-root,
#eddy-root *,
#eddy-root *::before,
#eddy-root *::after {
  box-sizing: border-box;
}

#eddy-root img {
  max-width: 100%;
  height: auto;
  display: block;
}

#eddy-root a {
  color: inherit;
  text-decoration: none;
}

#eddy-root {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#eddy-root .container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* в”Ђв”Ђв”Ђ Header в”Ђв”Ђв”Ђ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* в”Ђв”Ђв”Ђ Buttons в”Ђв”Ђв”Ђ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 32px rgba(47, 91, 255, 0.35);
}

.btn--primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(47, 91, 255, 0.4);
}

.btn--ghost {
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--outline-light {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

/* в”Ђв”Ђв”Ђ Hero в”Ђв”Ђв”Ђ */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
  background: var(--white);
}

.hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  grid-template-areas:
    "badge ."
    "copy media";
  gap: 20px 28px;
  align-items: start;
  padding-bottom: 64px;
}

.hero__copy {
  grid-area: copy;
}

.hero__media {
  grid-area: media;
  margin: 0;
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.hero__media--duo {
  position: relative;
  min-height: 340px;
  overflow: visible;
}

.hero__media-frame {
  width: 78%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

.hero__media-frame--primary {
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.hero__media-frame--secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center 30%;
}

.hero__media-frame--secondary img {
  object-position: center center;
}

.hero__badge {
  grid-area: badge;
  justify-self: start;
  width: fit-content;
  max-width: max-content;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: var(--radius-pill);
}

.hero h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero__lead {
  margin: 0;
  max-width: 540px;
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 52px;
}

/* РўС‘РјРЅРѕ-СЃРёРЅРёР№ С„РѕРЅ СЃ РіСЂР°РґРёРµРЅС‚РѕРј (РїРѕР»РѕСЃР° РєСѓСЂСЃРѕРІ Рё Р±Р»РѕРє В«РџРѕС‡РµРјСѓ EDDYВ») */
.topics-panel,
.hero__strip,
.section--dark {
  background-color: #0a0f1c;
  background-image:
    radial-gradient(ellipse 70% 90% at 0% 50%, rgba(47, 91, 255, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(91, 124, 255, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 40% 50% at 75% 100%, rgba(47, 91, 255, 0.15) 0%, transparent 50%),
    linear-gradient(165deg, #080c14 0%, #0f1c33 42%, #121e3a 100%);
}

.hero__strip {
  position: relative;
  color: var(--text-on-dark);
  padding: 0 0 48px;
  overflow: hidden;
  background: transparent;
}

.hero__strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__strip-copy {
  max-width: 640px;
}

.hero__strip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.hero__strip h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.hero__strip-copy p,
.hero__strip p {
  margin: 12px 0 0;
  color: rgba(232, 237, 247, 0.75);
  font-size: 1rem;
  line-height: 1.55;
}

.topics-panel [data-topic-title],
.topics-panel [data-topic-desc],
.topics-panel [data-card-title],
.topics-panel [data-card-desc],
.topics-panel [data-card-tag],
.topics-panel [data-card-emoji] {
  transition: opacity 0.2s ease;
}

.topics-panel.is-switching [data-topic-title],
.topics-panel.is-switching [data-topic-desc],
.topics-panel.is-switching [data-card-title],
.topics-panel.is-switching [data-card-desc],
.topics-panel.is-switching [data-card-tag],
.topics-panel.is-switching [data-card-emoji] {
  opacity: 0.4;
}

.hero__feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--blue-card);
  box-shadow: 0 12px 32px rgba(15, 28, 51, 0.3);
  overflow: hidden;
}

.hero__feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__feature-card > * {
  position: relative;
  z-index: 1;
}

.hero__feature-emoji {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 1.85rem;
  line-height: 1;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.hero__feature-tag-slot {
  min-height: 30px;
  margin-bottom: 4px;
}

.hero__feature-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-pill);
}

.hero__feature-tag--hit {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.hero__feature-tag--soon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero__feature-tag[hidden] {
  display: none;
}

.hero__feature-card h3 {
  margin: 0 0 6px;
  padding-right: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.hero__feature-card [data-card-desc] {
  flex: 1;
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.hero__feature-actions {
  margin-top: auto;
  padding-top: 14px;
}

.hero__feature-actions .btn--sm {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.8125rem;
}

/* Р’РєР»Р°РґРєРё РЅР°РїСЂР°РІР»РµРЅРёР№ */
.logos-strip {
  padding: 44px 0 32px;
  background: transparent;
  border-bottom: none;
}

.logos-strip__label {
  margin: 0 0 24px;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 237, 247, 0.72);
  text-align: center;
}

.topics-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
}

.topics-tab {
  padding: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.42);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.topics-tab:hover {
  color: rgba(255, 255, 255, 0.88);
}

.topics-tab.is-active {
  color: #ffffff;
  border-bottom-color: var(--blue-bright);
}

.topics-tab:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
  border-radius: 4px;
}

/* в”Ђв”Ђв”Ђ Sections в”Ђв”Ђв”Ђ */
.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--dark {
  color: var(--text-on-dark);
}

.section--dark .section__desc,
.section--dark .section__label {
  color: rgba(232, 237, 247, 0.65);
}

.section.section--dark h2 {
  color: var(--white);
}

.section__head {
  margin-bottom: 56px;
  max-width: 680px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.section h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}

.section__desc {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Audience */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience__card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.audience__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-gradient);
  opacity: 0;
  transition: opacity 0.25s;
}

.audience__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.audience__card:hover::after {
  opacity: 1;
}

.audience__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.75rem;
  background: var(--blue-soft);
  border-radius: 16px;
}

.audience__card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.audience__card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Course cards */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* РћР±Р»РѕР¶РєР° РєСѓСЂСЃР° вЂ” С‚РѕР»СЊРєРѕ С„РѕС‚Рѕ (Unsplash License) + Р»С‘РіРєРёР№ РіСЂР°РґРёРµРЅС‚ */
.course-card__cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--blue-soft);
}

.course-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.course-card__cover--year img {
  object-position: center 25%;
}

.course-card__cover--play img {
  object-position: center 45%;
}

.course-card__cover--bond img {
  object-position: center 30%;
}

/* РљР°С‚Р°Р»РѕРі courses.html вЂ” РѕР±Р»РѕР¶РєРё Р±РµР· С„РѕС‚Рѕ, С‚РѕР»СЊРєРѕ С†РІРµС‚ */
.course-card__cover:not(:has(img)) {
  background: linear-gradient(145deg, #c5d4ff 0%, #e8eeff 55%, #f4f6fb 100%);
}

.course-card__cover--sleep:not(:has(img)) {
  background: linear-gradient(145deg, #b8c9ff 0%, #dce6ff 100%);
}

.course-card__cover--art:not(:has(img)) {
  background: linear-gradient(145deg, #d4c5ff 0%, #ebe8ff 100%);
}

.course-card__cover--food:not(:has(img)) {
  background: linear-gradient(145deg, #ffd9a8 0%, #fff3e0 100%);
}

.course-card:hover .course-card__cover img {
  transform: scale(1.04);
}


.course-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.course-card__tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
}

.course-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}

.course-card__meta {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.course-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.course-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}

.section--dark .feature {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature__num {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.section--dark .feature__num {
  color: var(--blue-bright);
}

.feature h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.section--dark .feature h3 {
  color: var(--white);
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.section--dark .feature p {
  color: rgba(232, 237, 247, 0.7);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.step::before {
  content: attr(data-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 14px;
}

.step h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-block {
  padding: 72px 56px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--blue-card);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-block h2 {
  position: relative;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
}

.cta-block p {
  position: relative;
  margin: 0 auto 32px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--blue-soft) 0%, #d4dcff 100%);
}

.blog-card__body {
  padding: 28px;
}

.blog-card__date {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.blog-card h3 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}

.blog-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Page hero */
.page-hero {
  padding: 64px 0 48px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.page-hero p {
  margin: 0;
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 22px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

/* Course page */
.course-hero {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  padding: 56px 0 72px;
}

.course-hero__media {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: var(--blue-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow);
}

.course-sidebar {
  position: sticky;
  top: 100px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.course-sidebar__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.course-sidebar__price-old {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.course-sidebar ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.course-sidebar li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.course-sidebar li strong {
  color: var(--navy);
}

.course-content h2 {
  margin: 48px 0 16px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.course-content p,
.course-content li {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.course-content ul {
  padding-left: 22px;
}

/* Footer */
.footer {
  margin-top: 0;
  padding: 64px 0 36px;
  background: var(--navy-deep);
  color: var(--text-on-dark);
}

.footer .logo {
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  margin: 16px 0 0;
  max-width: 300px;
  font-size: 0.95rem;
  color: rgba(232, 237, 247, 0.65);
  line-height: 1.6;
}

.footer h4 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232, 237, 247, 0.5);
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  font-size: 0.95rem;
  color: rgba(232, 237, 247, 0.8);
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(232, 237, 247, 0.5);
}

.footer__bottom a {
  color: rgba(232, 237, 247, 0.65);
}

.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "media"
      "copy";
  }

  .hero__media {
    max-width: none;
    justify-self: stretch;
  }

  .hero__media--duo {
    min-height: 0;
    max-width: 520px;
    margin-inline: auto;
  }

  .hero__media-frame {
    width: 72%;
  }

  .hero__media-frame--secondary {
    bottom: -16px;
  }

  .hero__actions {
    margin-top: 40px;
  }

  .hero__media img {
    aspect-ratio: 16 / 10;
  }

  .course-hero {
    grid-template-columns: 1fr;
  }

  .audience {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero__strip-cards {
    grid-template-columns: 1fr;
  }

  .hero__feature-card {
    min-height: 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header .btn--primary {
    display: none;
  }

  .audience,
  .courses-grid,
  .blog-grid,
  .steps,
  .features {
    grid-template-columns: 1fr;
  }

  .cta-block {
    padding: 48px 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .course-sidebar {
    position: static;
  }
}

/* Tilda: светлые секции */
#eddy-root .header .logo,
#eddy-root .header a.logo {
  font-family: var(--font-logo) !important;
  color: #1b2d4f !important;
}

#eddy-root .nav a,
#eddy-root .nav a:visited {
  color: #5a6b85 !important;
}

#eddy-root .nav a:hover,
#eddy-root .nav a.is-active {
  color: #1b2d4f !important;
}

#eddy-root .hero h1 {
  color: #1b2d4f !important;
}

#eddy-root .hero h1 em {
  color: #2f5bff !important;
  font-style: normal;
}

#eddy-root .hero__lead {
  color: #5a6b85 !important;
}

#eddy-root .section:not(.section--dark) h2,
#eddy-root .section:not(.section--dark) .section__head h2 {
  color: #1b2d4f !important;
}

#eddy-root .section:not(.section--dark) .section__desc {
  color: #5a6b85 !important;
}

#eddy-root .section__label {
  color: #2f5bff !important;
}

#eddy-root .audience__card p,
#eddy-root .course-card__meta,
#eddy-root .step p,
#eddy-root .blog-card p {
  color: #5a6b85 !important;
}

#eddy-root .btn--primary,
#eddy-root .btn--primary:visited,
#eddy-root a.btn--primary {
  color: #ffffff !important;
}

#eddy-root .btn--primary:hover {
  color: #ffffff !important;
}

#eddy-root .btn--ghost,
#eddy-root .btn--ghost:visited {
  color: #1b2d4f !important;
  border: 2px solid rgba(27, 45, 79, 0.1) !important;
  background: #fff !important;
}

#eddy-root .btn--ghost:hover {
  color: #2f5bff !important;
  border-color: #2f5bff !important;
}

/* Tilda: тёмные блоки — белый / светлый текст */
#eddy-root .logos-strip__label {
  color: rgba(232, 237, 247, 0.72) !important;
}

#eddy-root .topics-tab,
#eddy-root .topics-tab:visited {
  color: rgba(255, 255, 255, 0.42) !important;
}

#eddy-root .topics-tab:hover {
  color: rgba(255, 255, 255, 0.88) !important;
}

#eddy-root .topics-tab.is-active {
  color: #ffffff !important;
  border-bottom-color: #4d74ff !important;
}

#eddy-root .hero__strip h2,
#eddy-root .hero__strip [data-topic-title] {
  color: #ffffff !important;
}

#eddy-root .hero__strip p,
#eddy-root .hero__strip [data-topic-desc],
#eddy-root .hero__strip-copy p {
  color: rgba(255, 255, 255, 0.9) !important;
}

#eddy-root .hero__feature-card h3,
#eddy-root .hero__feature-card [data-card-title] {
  color: #ffffff !important;
}

#eddy-root .hero__feature-card p,
#eddy-root .hero__feature-card [data-card-desc] {
  color: rgba(255, 255, 255, 0.92) !important;
}

#eddy-root .hero__feature-card .btn--outline-light,
#eddy-root .hero__feature-card .btn--outline-light:visited {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

#eddy-root .hero__feature-card .btn--outline-light:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
}

#eddy-root .section--dark h2,
#eddy-root .section--dark .section__head h2 {
  color: #ffffff !important;
}

#eddy-root .section--dark .section__desc {
  color: rgba(232, 237, 247, 0.8) !important;
}

#eddy-root .section--dark .section__label {
  color: rgba(232, 237, 247, 0.65) !important;
}

#eddy-root .section--dark .feature h3 {
  color: #ffffff !important;
}

#eddy-root .section--dark .feature p {
  color: rgba(232, 237, 247, 0.82) !important;
}

#eddy-root .footer a,
#eddy-root .footer a:visited {
  color: rgba(232, 237, 247, 0.8) !important;
}

#eddy-root .footer a:hover {
  color: #fff !important;
}

#eddy-root .footer .logo {
  font-family: var(--font-logo) !important;
  color: #fff !important;
}

