/* ─────────────────────────────────────────────────
   Ulpia PRO — Landing Page Styles
   Font: Lexend (Google Fonts)
   Primary: #FF4142  Dark: #333333  Muted: #8C8C8C
───────────────────────────────────────────────── */

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

:root {
  --red:        #FF4142;
  --red-dark:   #e03232;
  --red-light:  #fff0f0;
  --dark:       #333333;
  --cta-bg:     #1f1416;  /* near-black with a warm red undertone */
  --body:       #555555;
  --muted:      #8C8C8C;
  --border:     #E5E7EB;
  --bg:         #F7F7F7;
  --white:      #ffffff;
  --font:       'Lexend', sans-serif;
  --radius:     10px;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --max-width:  1080px;
  --section-pad: 88px 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: var(--font);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  font-weight: 700;
}

/* ─── LAYOUT UTILITIES ───────────────────────────── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.two-col--center {
  align-items: center;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
}

.btn--dark:hover {
  background: #2d2d2d;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 13px 30px;
  font-size: 0.95rem;
}

.btn--white-solid {
  background: #fff;
  color: var(--cta-bg);
  font-weight: 700;
}

.btn--white-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn--white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ─── NAVBAR ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--red);
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 110px 32px 88px;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero__title .accent {
  color: var(--red);
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 22px auto 36px;
  font-weight: 300;
  line-height: 1.75;
}

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

.hero__micro {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

.hero__micro span {
  margin: 0 6px;
}

/* ─── SAVINGS SECTION ────────────────────────────── */
.savings {
  background: var(--bg);
}

.savings__preview-header {
  margin-bottom: 24px;
}

.savings__heading {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin-bottom: 14px;
}

.savings__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--white);
}

.stat-card--highlight {
  background: var(--red);
  border-color: var(--red);
}

.stat-card__label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 6px;
}

.stat-card--highlight .stat-card__label {
  color: rgba(255,255,255,0.75);
}

.stat-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.stat-card--highlight .stat-card__value {
  color: #fff;
}

.stat-card__sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 3px;
}

.stat-card--highlight .stat-card__sub {
  color: rgba(255,255,255,0.7);
}

.events-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.events-list {
  display: flex;
  flex-direction: column;
  max-height: 340px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

.events-list::-webkit-scrollbar {
  width: 4px;
}

.events-list::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 4px;
}

.event-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.event-row__name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
}

.event-row__date {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

.event-row__saving {
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-left: 12px;
}

.events-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.events-total__label {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.events-total__amount {
  font-weight: 700;
  color: var(--red);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.events-cta {
  margin-top: 20px;
  text-align: right;
}

/* ─── WEBINARII SECTION ──────────────────────────── */
.webinarii__heading {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-bottom: 14px;
}

.webinarii__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.7;
}

.specialty-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--body);
  font-weight: 400;
}

.tag-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.lecturers-list {
  display: flex;
  flex-direction: column;
}

.lecturer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.lecturer-row__name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
}

.lecturer-row__spec {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

.play-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.play-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.webinarii-stat {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.webinarii-stat__big {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.webinarii-stat__caption {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

/* ─── REVISTE SECTION ────────────────────────────── */
.reviste { background: var(--bg); }

.reviste__header { margin-bottom: 40px; }

.reviste__heading {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}

.reviste__desc {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 640px;
}

/* Journal table */
.reviste__table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 56px;
}

.reviste-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  padding: 12px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviste-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.9rem;
}

.reviste-table-row--highlighted { background: #fffbfb; }

.reviste-table-row__name {
  font-weight: 500;
  color: var(--dark);
}

.reviste-table-row--highlighted .reviste-table-row__name {
  font-weight: 700;
}

.reviste-table-row__emc {
  color: var(--body);
  font-weight: 400;
}

.reviste-table-row__benefit {
  color: var(--muted);
  font-size: 0.82rem;
}

.reviste-table-row__benefit--full {
  color: var(--red);
  font-weight: 700;
  font-size: 0.82rem;
}

.reviste-table-row__plan {
  color: var(--muted);
  font-size: 0.82rem;
}

.reviste-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--dark);
}

.reviste-total__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.reviste-total__value {
  font-weight: 700;
  color: var(--red);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.reviste__footnote {
  padding: 12px 20px;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  background: var(--white);
}

/* How-to steps */
.reviste__how { margin-bottom: 40px; }

.reviste__how-heading {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  margin-top: 10px;
  max-width: 640px;
  line-height: 1.3;
}

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

.reviste-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.reviste-step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviste-step__title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.reviste-step__desc {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Legal disclaimer */
.reviste__legal {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--muted);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.reviste__legal-text {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .reviste-table-header { display: none; }
  .reviste-table-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 14px 16px;
  }
  .reviste-table-row__emc,
  .reviste-table-row__benefit,
  .reviste-table-row__plan { display: block; font-size: 0.82rem; }
  .reviste-steps { grid-template-columns: 1fr; }
}

/* ─── NOA SECTION ────────────────────────────────── */
.noa__heading {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-bottom: 14px;
}

.noa__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}

.noa-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.noa-step__title {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
}

.noa-step__desc {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

.noa-ui {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.noa-ui__search {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.87rem;
  font-family: var(--font);
  background: var(--bg);
}

.noa-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.noa-row:last-of-type {
  border-bottom: none;
}

.noa-row__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.noa-row__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.noa-row--best .noa-row__check {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.noa-row__distributor {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--dark);
}

.noa-row__best-badge {
  font-size: 0.68rem;
  color: var(--red);
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

.noa-row__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.noa-row--best .noa-row__price {
  color: var(--red);
}

.noa-ui__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}

.noa-ui__count {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 300;
}

.noa-ui__order {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--red);
  text-decoration: none;
}

.noa-ui__order:hover {
  text-decoration: underline;
}

/* ─── QUOTE SECTION ──────────────────────────────── */
.quote {
  background: var(--dark);
  padding: var(--section-pad);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quote-video {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  aspect-ratio: 9/16;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.quote-video__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.quote-video__play {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.quote-video__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 9999px;
}

.quote-eyebrow {
  color: var(--red) !important;
  margin-bottom: 8px;
}

.quote-mark {
  font-size: 4rem;
  color: var(--red);
  line-height: 0.8;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.quote__text {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 28px;
}

.quote-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 24px;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.quote__name {
  font-weight: 600;
  color: #fff;
  font-size: 0.92rem;
}

.quote__title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-top: 2px;
}

@media (max-width: 760px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── PRICING SECTION ────────────────────────────── */
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header__heading {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Base card */
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

/* Dark annual card */
.pricing-card--dark {
  background: var(--dark);
  border-color: var(--dark);
}

.pricing-card__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.pricing-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-card--dark .pricing-card__label {
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

.pricing-card__badge {
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-card--dark .pricing-card__price-row {
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card--dark .pricing-card__price {
  color: #fff;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}

.pricing-card--dark .pricing-card__period {
  color: rgba(255,255,255,0.5);
}

.pricing-card__savings {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 24px;
}

/* CTA buttons */
.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 28px;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.pricing-card__cta:hover {
  transform: translateY(-1px);
}

.pricing-card__cta--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.pricing-card__cta--outline:hover {
  background: var(--dark);
  color: #fff;
}

.pricing-card__cta--solid {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}

.pricing-card__cta--solid:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* Feature lists */
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--body);
  font-weight: 400;
  line-height: 1.5;
}

.pricing-card--dark .pricing-card__feature {
  color: rgba(255,255,255,0.75);
}

.pricing-card__check {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── BENEFITS SECTION ───────────────────────────── */
.benefits__header {
  margin-bottom: 52px;
}

.benefits__heading {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

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

.benefit-card {
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--red);
}

.benefit-card__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 7px;
}

.benefit-card__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── TESTIMONIALS SECTION ───────────────────────── */
.testimonials {
  background: var(--bg);
}

.testimonials__header {
  margin-bottom: 48px;
}

.testimonials__heading {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.testimonial-card__badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 0.77rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

/* ─── CTA SECTION ────────────────────────────────── */
.cta {
  background: var(--cta-bg);
  padding: var(--section-pad);
}

.cta__inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.cta__heading {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 14px;
}

.cta__sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
}

.cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cta__micro {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

/* ─── ANIMATIONS ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
/* ─── HAMBURGER BUTTON ───────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE DRAWER ──────────────────────────────── */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  z-index: 99;
  padding: 24px 24px 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.nav__drawer.is-open {
  display: flex;
}

.nav__drawer a {
  display: block;
  padding: 16px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__drawer a:hover {
  color: var(--red);
}

.nav__drawer .btn {
  margin-top: 24px;
  text-align: center;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --section-pad: 64px 20px;
  }

  .nav {
    padding: 0 20px;
  }

  .nav__links {
    display: none;
  }

  .nav > .btn {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding: 72px 20px 64px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }
}

/* ─── FAQ SECTION ────────────────────────────────── */
.faq {
  background: var(--bg);
}

.faq__header {
  max-width: 600px;
  margin-bottom: 48px;
}

.faq__heading {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.faq__desc {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

.faq__list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.4;
  transition: background 0.15s;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question:hover {
  background: var(--bg);
}

details[open] > .faq-item__question {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s, color 0.15s;
}

details[open] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-item__answer {
  padding: 20px 28px 26px;
  font-size: 0.92rem;
  color: var(--body);
  font-weight: 300;
  line-height: 1.8;
}

.faq__legal {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ─── DISCOVER BUTTON ────────────────────────────── */
.btn-discover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 16px 16px 16px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.2s;
}

.btn-discover:hover {
  background: #1a1a1a;
}

.btn-discover__arrow {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.btn-discover--mt {
  margin-top: 20px;
}

/* ─── EVENTS LIST BLUR HINT ─────────────────────── */
.events-list-wrap {
  position: relative;
}

.events-list-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.events-list--preview {
  max-height: 375px;
  overflow-y: auto;
}

/* ─── GUARANTEE BLOCK ────────────────────────────── */
.guarantee {
  background: var(--bg);
}

.guarantee-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 48px 44px;
  text-align: center;
  box-shadow: var(--shadow);
}

.guarantee-card__icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 20px;
}

.guarantee-card__heading {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.guarantee-card__desc {
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 0;
}

.guarantee-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.guarantee-card__quote {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}

.guarantee-card__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.guarantee-card__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.5;
}

.guarantee-card__check {
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .guarantee-card {
    padding: 32px 24px;
  }
}

/* ─── NOA SEARCH LARGER FONT ─────────────────────── */
.noa-ui__search--lg {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 400;
  padding: 13px 16px;
}

/* ─── NAV BACK LINK ──────────────────────────────── */
.nav__back-pro {
  font-weight: 600;
  color: var(--red) !important;
  font-size: 0.85rem;
}

/* ─── WEBINARII BLUR HINT ────────────────────────── */
.lecturers-list--preview {
  position: relative;
  max-height: 310px;
  overflow: hidden;
}

.lecturers-list--preview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

/* ─── NOA ANIMATED WIDGET ────────────────────────── */
.noa-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.noa-widget__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 400;
  font-family: var(--font);
  min-height: 52px;
}

.noa-widget__typed {
  flex: 1;
}

.noa-widget__cursor {
  color: var(--red);
  font-weight: 300;
  animation: noa-blink 0.75s step-end infinite;
}

@keyframes noa-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.noa-widget__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.noa-widget__stat {
  text-align: center;
  padding: 12px 10px;
  background: var(--bg);
  border-radius: 8px;
}

.noa-widget__stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.2;
}

.noa-widget__stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

.noa-widget__bar-wrap {
  margin-bottom: 16px;
}

.noa-widget__bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.noa-widget__bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 3px;
  width: 0%;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.noa-widget__bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
}

.noa-widget__bar-saving {
  color: var(--red);
  font-weight: 600;
}

.noa-widget__result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark);
  border-radius: 8px;
  padding: 16px 18px;
  transition: opacity 0.3s;
}

.noa-widget__result-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
  font-weight: 300;
}

.noa-widget__result-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  font-family: var(--font);
}

.noa-widget__result-time {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  text-align: right;
}
