/* ═══════════════════════════════════════════════
   שנת הארי — Styles
   RTL · Hebrew · Secular One + Heebo
═══════════════════════════════════════════════ */

/* ── Variables ───────────────────────────── */
:root {
  /* Brand — deep burgundy + warm gold */
  --burgundy:      #4e201c;   /* central dark surface + main titles */
  --burgundy-deep: #3a1714;   /* darker, for gradient depth */
  --burgundy-mid:  #5d2922;   /* lighter burgundy, for gradient highlight */

  --gold:          #c48b42;   /* brand gold — title, borders, large accents */
  --gold-warm:     #d69b4c;   /* brighter gold — gradient ends / hover */
  --gold-deep:     #8c5e20;   /* dark gold — small text on light bg */
  --gold-light:    #e6c07f;   /* light gold — text on dark burgundy */
  --gold-bg:       rgba(196, 139, 66, 0.09);
  --gold-border:   rgba(196, 139, 66, 0.30);

  /* Accents — use sparingly */
  --green:         #455814;
  --green-ink:     #3c4d12;   /* deepened green for small text */
  --olive-light:   #a1c87e;   /* light olive — for text on dark bg */
  --red:           #94340c;
  --teal:          #3a5057;
  --pink:          #c65862;
  --pink-deep:     #b23c46;   /* small headings on light bg */
  --pink-light:    #e89aa0;   /* small headings on dark bg */

  --bg:           #faf6ee;
  --bg-alt:       #f3e9d9;
  --bg-card:      #fffcf5;

  --text:         #1f120d;
  --text-2:       #3f2a20;
  --muted:        #7a6553;
  --border:       #e1d4bd;
  --border-2:     #cdbda3;

  --font-display: 'Secular One', 'Heebo', sans-serif;
  --font-body:    'Heebo', sans-serif;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.05);
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.12);
  --transition:   0.2s ease;
  --max-w:        1080px;
  --pad:          80px;
}

/* ── Reset & Base ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Container ───────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section helpers ─────────────────────── */
.section { padding: var(--pad) 0; }

/* ═══════════════════ BANNER ═══════════════════ */
.course-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(78, 32, 28, 0.20);
}

@media (max-width: 768px) {
  .course-banner-img {
    border-radius: 14px;
  }
}

/* About: square banner beside the text (desktop only) */
.about-banner { margin-bottom: 28px; }

@media (min-width: 901px) {
  .about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    grid-template-areas: "text banner";
    gap: 48px;
    align-items: center;
  }
  .about-inner  { grid-area: text; max-width: none; }
  .about-banner { grid-area: banner; margin-bottom: 0; }
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 14px;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  justify-content: center;
  border: 2px solid transparent;
  min-height: 50px;
  white-space: nowrap;
}
.btn-large { padding: 15px 34px; font-size: 1.05rem; min-height: 56px; }
.btn-full  { width: 100%; }

/* Gold primary */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold) 100%);
  color: #2a1206;
  box-shadow: 0 4px 18px rgba(196,139,66,0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(196,139,66,0.52);
}

/* White outline (on hero) */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.75); }

/* Blue outline (on light bg) */
.btn-outline-blue {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline-blue:hover { background: var(--burgundy); color: #fff; }

/* Ghost (cards) */
.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: rgba(78,32,28,0.28);
  padding: 9px 20px;
  font-size: 0.88rem;
  min-height: 42px;
}
.btn-ghost:hover { background: rgba(78,32,28,0.07); border-color: var(--burgundy); }

.btn-price {
  background: rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.88rem;
}

.lectures-cta {
  text-align: center;
  margin: 28px 0;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 96px;
  background:
    radial-gradient(ellipse 65% 50% at 50% 25%, rgba(196,139,66,0.18) 0%, transparent 60%),
    linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-deep) 55%, var(--burgundy-mid) 100%);
  overflow: hidden;
}


.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 110%,
    rgba(196,139,66,0.045) 0deg,
    transparent 7deg,
    transparent 14deg
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(196,139,66,0.18);
  border: 1px solid rgba(196,139,66,0.45);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(155deg, #fff1c4 0%, #f7d57e 32%, #ecb949 60%, #d59a34 100%);
  filter: drop-shadow(0 2px 14px rgba(214, 155, 76, 0.35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--olive-light);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: clamp(0.92rem, 2vw, 1rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 30px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 34px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.hero-meta-sep { opacity: 0.3; }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 38px;
  background: linear-gradient(180deg, rgba(196,139,66,0.65), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1) translateY(4px); }
}

/* ═══════════════════════════════════════════
   CONTEXT STRIP
═══════════════════════════════════════════ */
.context-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.context-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.context-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 16px;
  border-left: 1px solid var(--border);
}
.context-item:last-child { border-left: none; }

.context-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}

.context-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { background: var(--bg); }

.about-inner { max-width: 760px; }

.about-body { margin-bottom: 40px; }
.about-body p {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.8;
}
.about-body strong { color: var(--text); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow-sm); }

.feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; line-height: 1; }

.feature-text { display: flex; flex-direction: column; gap: 4px; }
.feature-text strong { font-size: 0.92rem; font-weight: 700; color: var(--burgundy); }
.feature-text span  { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   LECTURES
═══════════════════════════════════════════ */
.lectures { background: var(--bg-alt); }

.lectures-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 44px;
}
.lectures-meta-list li {
  font-size: 0.93rem;
  color: var(--muted);
}

.lectures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lecture-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  --accent: var(--pink);
  --accent-ink: var(--pink-deep);
}
.lecture-card:hover {
  box-shadow: 0 12px 36px color-mix(in srgb, var(--accent) 22%, transparent);
  transform: translateY(-3px);
}

/* Pink accent top border */
.lecture-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.lecture-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 16%, transparent);
  padding: 22px 22px 0;
  user-select: none;
}

.lecture-content {
  padding: 6px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lecture-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 50px;
  padding: 4px 13px;
  margin-bottom: 14px;
  width: fit-content;
}
.lecture-weekday { font-size: 0.76rem; font-weight: 700; color: var(--accent-ink); }
.lecture-date    { font-size: 0.76rem; color: var(--muted); }

.lecture-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  color: var(--burgundy);
  margin-bottom: 5px;
  line-height: 1.25;
}

.lecture-subtitle-text {
  font-size: 0.83rem;
  color: var(--accent-ink);
  font-weight: 600;
  margin-bottom: 12px;
}

.lecture-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}

.lecture-card--tentative::after {
  content: 'תוכן ייקבע לפי המציאות';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 2px 9px;
}

/* ═══════════════════════════════════════════
   INSTRUCTOR
═══════════════════════════════════════════ */
.instructor { background: var(--bg); }

.instructor-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.instructor-photo-wrap { position: sticky; top: 40px; }

.instructor-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-alt);
}

.instructor-photo-credit {
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.instructor-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: var(--burgundy);
  margin-bottom: 8px;
}

.instructor-tagline {
  font-size: 0.97rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.45;
}

.instructor-text p {
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 12px;
}
.instructor-text strong { color: var(--text); }

.instructor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.credential {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing { background: var(--bg-alt); }

.pricing .section-subtitle {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 44px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: box-shadow var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow); }

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(196,139,66,0.32), var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  color: #2a1206;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(196,139,66,0.35);
}

.pricing-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 5px;
}
.pricing-card-header p { font-size: 0.83rem; color: var(--muted); }

.pricing-card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-was {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-now-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--burgundy);
}

.pricing-card--featured .price-amount { color: var(--gold); }

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
}

.price-save {
  font-size: 0.76rem;
  font-weight: 700;
  color: #3c4d12;
  background: rgba(69,88,20,0.10);
  border-radius: 50px;
  padding: 3px 10px;
  width: fit-content;
  border: 1px solid rgba(69,88,20,0.28);
}

.pricing-features { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pricing-features li { font-size: 0.86rem; color: var(--text-2); }

.pricing-note {
  font-size: 0.73rem;
  color: var(--muted);
  text-align: center;
}

/* Future price note inside pricing cards */
.price-future-note {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
}
.price-future-note::before {
  content: '↑';
  font-size: 0.72rem;
  opacity: 0.75;
}

/* btn-outline-dark */
.btn-outline-dark {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline-dark:hover { background: var(--burgundy); color: #fff; }

/* Single-lecture picker (dropdown) */
.lecture-select { position: relative; }
.lecture-select > summary {
  list-style: none;
  position: relative;
}
.lecture-select > summary::-webkit-details-marker { display: none; }
.lecture-select > summary::after {
  content: '▾';
  font-size: 0.8rem;
  margin-inline-start: 8px;
  transition: transform var(--transition);
}
.lecture-select[open] > summary::after { transform: rotate(180deg); }

.lecture-select-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid rgba(78,32,28,0.16);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(78,32,28,0.12);
  animation: lectureSelectIn 0.18s ease;
}
@keyframes lectureSelectIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lecture-select-heading {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pink-deep);
  text-align: center;
  padding: 6px 4px 8px;
}
.lecture-select-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: start;
  transition: background var(--transition);
}
.lecture-select-menu a:hover { background: rgba(78,32,28,0.06); }
.lecture-select-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
  text-align: center;
}
.lecture-select-text { display: flex; flex-direction: column; line-height: 1.3; }
.lecture-select-text strong { font-size: 0.95rem; color: var(--burgundy); }
.lecture-select-text span { font-size: 0.78rem; color: var(--text-2); }

/* ═══════════════════════════════════════════
   URGENCY COUNTDOWN
═══════════════════════════════════════════ */
.urgency-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  border: 1px solid rgba(196, 139, 66, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(58, 22, 18, 0.30);
}

.urgency-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
}

.urgency-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.5));
}

.urgency-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.urgency-copy strong {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.35;
}
.urgency-copy span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  direction: ltr;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 52px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}

.countdown-label {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.countdown-colon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(196, 139, 66, 0.55);
  margin-bottom: 14px;
  align-self: flex-start;
  padding-top: 9px;
}

/* Hero countdown — to series start */
.hero-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 0 36px;
}
.hero-countdown-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works { background: var(--burgundy); }

.how-it-works .section-kicker { color: var(--pink-light); }
.how-it-works .section-title  { color: #fff; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  padding: 26px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  position: relative;
  transition: background var(--transition);
}
.step:hover { background: rgba(255,255,255,0.09); }

.step:not(:last-child)::after {
  content: '←';
  position: absolute;
  left: -13px;
  top: 28px;
  font-size: 1rem;
  color: rgba(230, 192, 127, 0.4);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  opacity: 0.75;
  line-height: 1;
  margin-bottom: 10px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--bg); text-align: center; }
.contact-inner { max-width: 560px; margin: 0 auto; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--burgundy);
  margin-bottom: 8px;
}
.contact-subtitle { font-size: 0.93rem; color: var(--muted); margin-bottom: 32px; }

.contact-channels { display: flex; flex-direction: column; gap: 12px; align-items: center; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 440px;
  transition: all var(--transition);
  text-align: right;
}
.contact-channel:hover {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(78,32,28,0.08);
}

.contact-channel-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-channel div  { display: flex; flex-direction: column; gap: 2px; }
.contact-channel strong { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.contact-channel span   { font-size: 0.8rem; color: var(--muted); direction: ltr; text-align: right; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--burgundy);
  border-top: 1px solid rgba(196,139,66,0.22);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-title  { font-family: var(--font-display); font-size: 1rem; color: var(--gold-light); }
.footer-subtitle { font-size: 0.78rem; color: rgba(255,255,255,0.38); }

.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.42); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.78); }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ═══════════════════════════════════════════
   RESPONSIVE — 900px
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .instructor-inner { grid-template-columns: 200px 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .step:not(:last-child)::after { display: none; }
  .context-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .context-item:nth-child(2) { border-left: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 768px Mobile
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad: 52px; }

  .hero { padding: 72px 20px 76px; }
  .hero::before { font-size: 55vw; }

  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn-large { width: 100%; }

  .hero-meta { flex-direction: column; gap: 5px; }
  .hero-meta-sep { display: none; }

  .context-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .context-item { border-left: none; }
  .context-item:nth-child(odd) { border-left: 1px solid var(--border); }

  .about-features { grid-template-columns: 1fr; }

  .lectures-grid { grid-template-columns: 1fr; gap: 14px; }
  .lecture-card--tentative::after { display: none; }

  .instructor-inner { grid-template-columns: 1fr; gap: 28px; }
  .instructor-photo-wrap { position: static; max-width: 320px; margin: 0 auto; }
  .instructor-credentials { flex-direction: column; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }

  .urgency-countdown { flex-direction: column; gap: 16px; padding: 18px 20px; }
  .countdown-timer { width: 100%; justify-content: center; }
  .urgency-left { min-width: unset; }

  .steps-grid { grid-template-columns: 1fr; gap: 10px; }
  .step:not(:last-child)::after { display: none; }

  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-links { justify-content: center; }
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════ */
:focus-visible { outline: 3px solid var(--gold-warm); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero-scroll-indicator { display: none; }
}

/* ═══════════════════ WHATSAPP BUTTON (contact) ═══════════════════ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  min-height: 54px;
  padding: 16px 24px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 9px 24px rgba(37, 211, 102, 0.48);
  transform: translateY(-2px);
}
.btn-whatsapp .whatsapp-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  direction: ltr;
}
