:root {
    --ink: #0d1142;
    --ink2: #002C78;
    --cream: #f5f5fc;
    --cream2: #e8e8f5;
    --deep: #002C78;
    --muted: #4a4a6a;
    --light-border: rgba(0,44,120,0.15);
    --card-bg: #e8eef8;
    /* Убираем золото — заменяем на синий акцент */
    --gold: #002C78;
    --gold2: #3a5fa0;
    --accent: #002C78;
    --grad-start: #002C78;
    --grad-end: #5b8def;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Mulish', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(245,245,252,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,44,120,0.1);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink); text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(123,94,167,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(0,44,120,0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 5rem 6rem 6rem;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.84rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.8rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 2.5rem; height: 1px; background: var(--gold);
  }
  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 300; line-height: 1.1;
    color: var(--ink); margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
  }
  h1 em { font-style: italic; color: var(--accent); }
  .hero-subtitle {
    font-size: 1.1rem; color: var(--muted); line-height: 1.75;
    max-width: 440px; margin-bottom: 2.8rem;
  }
  .hero-badges {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 3rem;
  }
  .badge {
    font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.4rem 1rem; border: 1px solid rgba(0,44,120,0.3);
    color: var(--deep); border-radius: 2rem;
  }
  .hero-cta {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  }
  .btn-primary {
    font-family: 'Mulish', sans-serif; font-size: 0.93rem;
    letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    padding: 1rem 2.4rem;
    background: var(--ink); color: var(--cream);
    border: none; cursor: pointer; text-decoration: none;
    display: inline-block;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
  .btn-ghost {
    font-size: 0.93rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    border-bottom: 1px solid var(--cream2);
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

  .hero-right {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    padding: 4rem 4rem 4rem 2rem;
  }
  .hero-card {
    background: var(--deep);
    color: var(--cream);
    padding: 3rem;
    width: 100%; max-width: 420px;
    position: relative;
  }
  .hero-card::before {
    content: '';
    position: absolute; top: -1px; left: 3rem; right: 3rem; height: 3px;
    background: linear-gradient(90deg, #5b8def, #002C78);
  }
  .hero-card-label {
    font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(247,243,237,0.75); margin-bottom: 1.5rem;
  }
  .hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 400; line-height: 1.3;
    margin-bottom: 1.4rem; color: var(--cream);
  }
  .hero-card-details { list-style: none; }
  .hero-card-details li {
    font-size: 0.97rem; color: rgba(247,243,237,0.65);
    padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-card-details li:last-child { border-bottom: none; }
  .hero-card-details li::before {
    content: '—'; color: var(--gold); font-size: 0.84rem; flex-shrink: 0;
  }
  .start-date {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: baseline; gap: 0.5rem;
  }
  .start-date-label { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,243,237,0.75); }
  .start-date-val { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--cream); }

  /* ── DIVIDER ── */
  .divider { height: 1px; background: var(--cream2); margin: 0 3rem; }
  .section-divider {
    text-align: center; padding: 1.5rem 0;
    font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  }

  /* ── FOR WHOM ── */
  .for-whom {
    padding: 7rem 6rem;
    display: grid; grid-template-columns: 1fr 2fr; gap: 6rem;
    align-items: start;
  }
  .section-label {
    font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::before {
    content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold);
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300; line-height: 1.15; color: var(--ink);
  }
  h2 em { font-style: italic; color: var(--accent); }
  .for-whom-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  }
  .for-whom-item {
    padding: 1.8rem;
    border: 1px solid var(--cream2);
    position: relative; overflow: hidden;
    transition: border-color 0.25s;
  }
  .for-whom-item:hover { border-color: rgba(168,144,90,0.5); }
  .for-whom-item::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--deep), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s;
  }
  .for-whom-item:hover::before { transform: scaleX(1); }
  .for-whom-item h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500;
    margin-bottom: 0.6rem; color: var(--ink);
  }
  .for-whom-item p { font-size: 0.97rem; color: var(--muted); line-height: 1.65; }

  /* ── PROGRAM ── */
  .program { background: var(--deep); padding: 7rem 6rem; position: relative; overflow: hidden; }
  .program::before {
    content: '';
    position: absolute; top: 0; right: 0; width: 40%; height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(91,141,239,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .program-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    margin-bottom: 5rem; align-items: end;
  }
  .program h2 { color: var(--cream); }
  .program h2 em { color: #7ecfff; }
  .program .section-label { color: rgba(232,238,248,0.6); }
  .program-intro { font-size: 1.06rem; color: rgba(232,238,248,0.7); line-height: 1.8; }
  .program-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: rgba(255,255,255,0.08);
  }
  .program-item {
    background: rgba(0,20,70,0.55); padding: 2rem 1.8rem;
    position: relative; overflow: hidden;
    transition: background 0.25s;
  }
  .program-item:hover { background: rgba(255,255,255,0.06); }
  .program-item.special {
    background: #e8eef8;
    grid-column: span 4;
    display: grid; grid-template-columns: auto 1fr;
    gap: 2rem; align-items: center;
    padding: 2.5rem 3rem;
  }
  .special .month-num { font-size: 4rem; color: rgba(0,44,120,0.2); margin-bottom: 0; }
  .special-num-wrap { text-align: center; }
  .program-item.special h4 { color: #002C78; font-size: 1.1rem; }
  .program-item.special p { color: rgba(0,44,120,0.72); }
  .month-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    color: rgba(200,215,245,0.3); line-height: 1;
    display: block; margin-bottom: 0.2rem;
  }
  .month-name {
    display: block;
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(200,215,245,0.35); margin-bottom: 0.8rem;
  }
  .month-name-special { color: rgba(0,44,120,0.3); }
  .program-item h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    font-weight: 500; color: #e8eef8; line-height: 1.3; margin-bottom: 0.5rem;
  }
  .program-item p { font-size: 0.93rem; color: rgba(220,228,248,0.7); line-height: 1.65; }
  .special-badge {
    display: inline-block; margin-top: 0.8rem;
    font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.3rem 0.8rem; background: rgba(0,44,120,0.1);
    border: 1px solid rgba(0,44,120,0.3); color: #002C78;
  }

  /* ── FLIP CARDS ── */
  .flip-card {
    perspective: 1000px;
    cursor: pointer;
    min-height: 300px;
  }
  .flip-card-special {
    grid-column: span 4;
    min-height: 180px;
    transition: min-height 0.4s ease;
  }
  .flip-card-special.flipped {
    min-height: 340px;
  }
  .flip-card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
  }
  .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
  .flip-card-front, .flip-card-back {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
  }
  .flip-card-front {
    transform: rotateY(0deg);
    z-index: 2;
  }
  .flip-card.flipped .flip-card-front {
    z-index: 0;
  }
  .flip-card-back {
    transform: rotateY(180deg);
    display: flex !important; flex-direction: column !important;
    grid-template-columns: none !important;
  }
  .flip-card-special .flip-card-back {
    transform: rotateX(180deg);
  }
  .flip-card-special.flipped .flip-card-inner {
    transform: rotateX(180deg);
  }
  .flip-hint {
    position: absolute; top: 1.2rem; right: 1.5rem;
    font-size: 1.4rem; font-weight: 300;
    color: rgba(200,215,245,0.35);
    transition: color 0.2s;
  }
  .flip-card:hover .flip-hint { color: rgba(200,215,245,0.6); }
  .flip-hint-special { color: rgba(0,44,120,0.25); }
  .flip-card:hover .flip-hint-special { color: rgba(0,44,120,0.5); }
  .flip-close {
    position: absolute; top: 1rem; right: 1.2rem;
    font-size: 1.5rem; font-weight: 300;
    color: rgba(200,215,245,0.4); line-height: 1; z-index: 2;
  }
  .flip-close-special { color: rgba(0,44,120,0.3); }
  .flip-jump {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(200,215,245,0.5); cursor: pointer;
    padding: 0.35rem 1.2rem;
    border: 1px solid rgba(200,215,245,0.25);
    border-radius: 2rem;
    background: rgba(0,20,70,0.6);
    transition: color 0.2s, border-color 0.2s, opacity 0.3s;
    z-index: 3; white-space: nowrap;
  }
  .flip-jump:hover { color: rgba(200,215,245,0.85); border-color: rgba(200,215,245,0.5); }
  .flip-jump.hidden { opacity: 0; pointer-events: none; }
  .program-item.special .flip-jump {
    color: rgba(0,44,120,0.45);
    border-color: rgba(0,44,120,0.25);
    background: rgba(232,238,248,0.8);
  }
  .program-item.special .flip-jump:hover { color: rgba(0,44,120,0.75); border-color: rgba(0,44,120,0.5); }

  /* back content */
  .program-details {
    flex: 1; min-height: 0; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(200,215,245,0.2) transparent;
  }
  .program-details::-webkit-scrollbar { width: 4px; }
  .program-details::-webkit-scrollbar-track { background: transparent; }
  .program-details::-webkit-scrollbar-thumb { background: rgba(200,215,245,0.2); border-radius: 2px; }
  .program-details-special::-webkit-scrollbar-thumb { background: rgba(0,44,120,0.15); }
  .program-details p {
    font-size: 0.88rem; color: rgba(220,228,248,0.6); line-height: 1.7;
    margin-bottom: 0.7rem;
  }
  .program-details h5 {
    font-family: 'Mulish', sans-serif; font-size: 0.78rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(200,215,245,0.5); margin: 0.8rem 0 0.5rem;
  }
  .program-details ul { list-style: none; padding: 0; }
  .program-details li {
    font-size: 0.85rem; color: rgba(220,228,248,0.6); line-height: 1.65;
    padding: 0.3rem 0 0.3rem 1.2rem; position: relative;
  }
  .program-details li::before {
    content: '—'; position: absolute; left: 0; color: rgba(200,215,245,0.3);
  }
  .program-details-special p { color: rgba(0,44,120,0.6); }
  .program-details-special h5 { color: rgba(0,44,120,0.45); }
  .program-details-special li { color: rgba(0,44,120,0.6); }
  .program-details-special li::before { color: rgba(0,44,120,0.3); }

  /* ── SCHEDULE ── */
  .schedule { padding: 6rem 6rem; background: var(--cream2); }
  .schedule-header { margin-bottom: 3rem; }
  .schedule-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  }
  .schedule-month {
    background: white;
    border-top: 3px solid var(--deep);
    padding: 1.8rem 1.5rem;
  }
  .schedule-month-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 500;
    color: var(--deep); margin-bottom: 1.2rem;
  }
  .schedule-note {
    margin-top: 1.5rem;
    background: white;
    border-top: 3px solid var(--deep);
    padding: 1.4rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 500;
    color: var(--deep);
    text-align: center;
  }
  .schedule-list { list-style: none; }
  .schedule-list li {
    display: grid; grid-template-columns: 2.8rem 1fr;
    gap: 0 0.8rem; align-items: start;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--cream2);
    font-size: 0.93rem;
  }
  .schedule-list li:last-child { border-bottom: none; }
  .sl-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem; font-weight: 600;
    color: var(--deep); line-height: 1.3;
  }
  .sl-meta { font-size: 0.84rem; color: var(--muted); grid-column: 2; margin-top: -0.15rem; display: block; }
  .sl-type { font-size: 0.93rem; color: var(--ink); grid-column: 2; font-weight: 500; }
  /* Type colors */
  .sl-lecture .sl-date { color: var(--deep); }
  .sl-lecture .sl-type { color: var(--ink); }
  .sl-iv .sl-date { color: #3a5fa0; }
  .sl-iv .sl-type { color: #3a5fa0; }
  .sl-trainer .sl-date { color: var(--muted); }
  .sl-trainer .sl-type { color: var(--muted); }
  .sl-rj {
    background: rgba(0,44,120,0.06);
    margin: 0.3rem -0.5rem;
    padding: 0.55rem 0.5rem !important;
    border-radius: 2px;
  }
  .sl-rj .sl-date { color: var(--deep); font-weight: 700; }
  .sl-rj .sl-type { color: var(--deep); font-weight: 600; }
  @media (max-width: 1100px) { .schedule-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 768px) { .schedule { padding: 4rem 2rem; } .schedule-grid { grid-template-columns: 1fr; } }

  /* ── FORMAT ── */
  .format { padding: 7rem 6rem; }
  .format-header { margin-bottom: 4rem; max-width: 560px; }
  .format-header p { font-size: 1.02rem; color: var(--muted); margin-top: 1rem; line-height: 1.8; }
  .format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .format-item {
    padding: 2.5rem 2rem;
    background: white;
    border-top: 2px solid var(--cream2);
    transition: border-color 0.25s;
  }
  .format-item:hover { border-top-color: var(--deep); }
  .format-num {
    font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300;
    color: var(--cream2); margin-bottom: 1rem;
  }
  .format-item h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500;
    margin-bottom: 0.6rem; color: var(--ink);
  }
  .format-item p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

  /* ── SPEAKERS ── */
  .speakers { background: var(--ink); padding: 7rem 6rem; }
  .speakers-header { margin-bottom: 4rem; }
  .speakers-header h2 { color: var(--cream); }
  .speakers-header .section-label { color: rgba(232,238,248,0.55); }
  .speakers-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
  .speaker-card {
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    position: relative; overflow: hidden;
    transition: border-color 0.25s;
  }
  .speaker-card:hover { border-color: rgba(91,141,239,0.45); }
  .speaker-card.main { background: rgba(91,141,239,0.1); border-color: rgba(91,141,239,0.25); }
  .speaker-role {
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(200,215,245,0.65); margin-bottom: 1.2rem;
  }
  .speaker-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400;
    color: var(--cream); line-height: 1.2; margin-bottom: 1rem;
  }
  .speaker-card h3.smaller { font-size: 1.25rem; }
  .speaker-card p { font-size: 0.97rem; color: rgba(220,230,250,0.78); line-height: 1.75; }
  .speaker-tag {
    display: inline-block; margin-top: 1.2rem;
    font-size: 0.78rem; letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem; border: 1px solid rgba(91,141,239,0.35);
    color: rgba(200,215,245,0.75);
  }

  /* ── PRICE ── */
  .price { padding: 7rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
  .price-left h2 { margin-bottom: 1rem; }
  .price-left p { font-size: 1.15rem; color: var(--muted); line-height: 1.8; max-width: 400px; margin-bottom: 2rem; }
  .price-note {
    font-size: 0.93rem; color: var(--muted); line-height: 1.7;
    padding: 1.2rem 1.5rem; border-left: 2px solid var(--deep);
  }
  .price-card {
    background: linear-gradient(145deg, #0d1142 0%, #002C78 100%); color: var(--cream);
    padding: 3.5rem; position: relative;
    border: 1px solid rgba(91,141,239,0.2);
  }
  .price-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #5b8def, #002C78);
  }
  .price-label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(200,215,245,0.75); margin-bottom: 1rem; }
  .price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300; color: var(--cream);
    line-height: 1; margin-bottom: 0.3rem;
  }
  .price-amount span { font-size: 1.5rem; vertical-align: super; font-size: 1.8rem; }
  .price-period { font-size: 0.9rem; color: rgba(200,215,245,0.55); margin-bottom: 0.6rem; }
  .price-compare {
    font-size: 0.93rem; color: rgba(200,215,245,0.7); margin-bottom: 2.5rem;
  }
  .price-includes { list-style: none; margin-bottom: 2.5rem; }
  .price-includes li {
    font-size: 1.0rem; color: rgba(220,230,250,0.82);
    padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: flex-start; gap: 0.8rem;
  }
  .price-includes li::before { content: '✓'; color: #7ecfff; flex-shrink: 0; }
  .price-includes li:last-child { border-bottom: none; }

  /* GetCourse widget placeholder */
  .getcourse-widget {
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(168,144,90,0.3);
    padding: 2rem; text-align: center;
    margin-top: 2rem;
    color: rgba(247,243,237,0.4);
    font-size: 0.93rem; letter-spacing: 0.08em;
  }
  .btn-pay {
    width: 100%; font-family: 'Mulish', sans-serif;
    font-size: 0.93rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    padding: 1.1rem 2rem;
    background: var(--deep); color: var(--cream);
    border: none; cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    margin-bottom: 1rem;
  }
  .btn-pay:hover { background: #3a5fa0; transform: translateY(-1px); }
  .btn-pay-secondary {
    display: block; width: 100%; text-align: center;
    font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(247,243,237,0.4); text-decoration: none;
    transition: color 0.2s;
  }
  .btn-pay-secondary:hover { color: var(--gold); }

  /* ── CARE ── */
  .care { padding: 5rem 6rem; background: var(--cream2); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .care h2 { margin-bottom: 1rem; }
  .care > div:first-child p { font-size: 1.02rem; color: var(--muted); line-height: 1.8; }
  .care-contacts { display: flex; flex-direction: column; gap: 1rem; }
  .care-contact {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-left: 3px solid var(--deep);
    text-decoration: none; color: var(--ink);
    transition: transform 0.2s;
  }
  .care-contact:hover { transform: translateX(4px); }
  .care-contact-icon { font-size: 1.4rem; }
  .care-contact-text { font-size: 0.97rem; }
  .care-contact-text strong { display: block; font-weight: 600; margin-bottom: 0.2rem; font-size: 1.0rem; }
  .care-contact-text span { color: var(--muted); font-size: 0.9rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--deep); padding: 3rem 6rem;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream);
  }
  .footer-logo span { color: var(--gold); }
  footer p { font-size: 0.86rem; color: rgba(247,243,237,0.3); letter-spacing: 0.08em; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
  .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-left > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-left > *:nth-child(5) { animation-delay: 0.5s; }
  .hero-right { opacity: 0; animation: fadeUp 0.9s 0.35s ease forwards; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { padding: 2rem 4rem 5rem; }
    .hero-card { max-width: 100%; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .flip-card-special { grid-column: span 2; }
    .speakers-grid { grid-template-columns: 1fr 1fr; }
    .speakers-grid .speaker-card.main { grid-column: span 2; }
  }
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero-left { padding: 4rem 2rem 2rem; }
    .for-whom, .format, .price, .care { padding: 4rem 2rem; grid-template-columns: 1fr; gap: 2rem; }
    .program { padding: 4rem 2rem; }
    .program-header { grid-template-columns: 1fr; gap: 1rem; }
    .program-grid { grid-template-columns: 1fr; }
    .flip-card { min-height: 240px; }
    .flip-card-special { grid-column: span 1; min-height: 320px; }
    .flip-card-special.flipped { min-height: 300px; }
    .program-item.special {
      display: block; padding: 2rem 1.8rem;
    }
    .special .month-num { font-size: 3rem; margin-bottom: 0.2rem; }
    .special-num-wrap { text-align: left; }
    .format-grid { grid-template-columns: 1fr; }
    .speakers { padding: 4rem 2rem; }
    .speakers-grid { grid-template-columns: 1fr; }
    .speakers-grid .speaker-card.main { grid-column: span 1; }
    footer { padding: 2rem; flex-direction: column; gap: 1rem; text-align: center; }
    .for-whom-grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .for-whom-item { padding: 1.2rem 1.4rem; }
    .for-whom-item h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
    .for-whom-item p { font-size: 0.9rem; line-height: 1.5; }
    .start-date { margin-top: 1.2rem; padding-top: 1rem; gap: 0.3rem; }
    .start-date-label { font-size: 0.72rem; }
    .start-date-val { font-size: 1.15rem; }
  }

  /* ── GetCourse Modal ── */
  .gc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(13, 17, 66, 0.7);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
  }
  .gc-modal-overlay.active {
    display: flex;
  }
  .gc-modal {
    position: relative;
    background: #fff;
    border-radius: 1.2rem;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    box-shadow: 0 24px 80px rgba(0, 44, 120, 0.35);
    animation: gcFadeIn 0.3s ease;
  }
  .gc-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
  }
  .gc-modal-close:hover {
    color: var(--ink);
  }
  .gc-modal-body {
    min-height: 200px;
  }
  @keyframes gcFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
