/* ============================================================
   bbravee LMS — Brand Design System
   Learn • Practice • Grow
   ============================================================ */

/* --- Google Fonts: Multi-script support --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&family=Noto+Sans+Sinhala:wght@400;600;700&family=Noto+Sans+Tamil:wght@400;600;700&display=swap');

:root {
  /* Dynamic Palette derived from the tenant's chosen primary color */
  --bbr-blue:        var(--site-primary, #2563eb);
  --bbr-blue-dark:   color-mix(in srgb, var(--site-primary, #2563eb) 85%, #000);
  --bbr-navy:        color-mix(in srgb, var(--site-primary, #2563eb) 12%, #0f172a);
  --bbr-indigo:      color-mix(in srgb, var(--site-primary, #2563eb) 65%, #1e1b4b);
  --bbr-gold:        #f59e0b;
  --bbr-gold-light:  #fbbf24;
  --bbr-orange:      #f97316;

  /* Semantic aliases (keeps existing block templates working) */
  --site-primary-rgb: 37, 99, 235; /* fallback, overridden by inline header config */
  --site-secondary:   var(--bbr-indigo);
  --site-dark:        var(--bbr-navy);
  --site-text:        #334155;
  --site-muted:       #64748b;
  --site-light-bg:    color-mix(in srgb, var(--site-primary, #2563eb) 5%, #f8fafc);
  --site-border:      #e2e8f0;
  --header-h:         72px;

  /* Gradients based dynamically on the tenant's primary color */
  --bbr-gradient:        linear-gradient(135deg, var(--site-primary, #2563eb) 0%, var(--bbr-indigo) 60%, var(--site-dark) 100%);
  --bbr-gradient-gold:   linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --bbr-gradient-soft:   linear-gradient(135deg, color-mix(in srgb, var(--site-primary, #2563eb) 4%, #fff) 0%, color-mix(in srgb, var(--site-primary, #2563eb) 8%, #fff) 100%);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  color: var(--site-text);
  font-family: 'Plus Jakarta Sans', 'Inter', 'Noto Sans Sinhala', 'Noto Sans Tamil', system-ui, sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Sinhala / Tamil script rendering */
:lang(si), .lang-si { font-family: 'Noto Sans Sinhala', 'Plus Jakarta Sans', sans-serif; }
:lang(ta), .lang-ta { font-family: 'Noto Sans Tamil',   'Plus Jakarta Sans', sans-serif; }

h1, h2, h3, h4, h5, h6 {
  color: var(--site-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: all 0.3s ease;
  box-shadow: 0 1px 16px rgba(37, 99, 235, 0.06);
}

.bbr-logo-img {
  height: 42px;
  object-fit: contain;
}

.brand-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.625rem;
  background: var(--bbr-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.site-header .nav-link {
  color: #374151;
  font-weight: 600;
  font-size: 0.925rem;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--bbr-blue);
  background-color: rgba(37, 99, 235, 0.07);
}

/* ---- Buttons ---- */
.btn-primary-theme {
  background: var(--bbr-gradient);
  border: none;
  color: #ffffff;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.38);
}
.btn-primary-theme:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.48);
}

.btn-gold-theme {
  background: var(--bbr-gradient-gold);
  border: none;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.38);
  transition: all 0.25s ease;
}
.btn-gold-theme:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px;
  padding: 3px;
  gap: 2px !important;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--site-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--bbr-blue);
}

.lang-btn.active {
  background: var(--bbr-gradient);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.lang-flag { font-size: 0.9rem; }
.lang-label { font-size: 0.7rem; letter-spacing: 0.02em; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-block-modern {
  position: relative;
  padding: 5.5rem 0 7rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(67, 56, 202, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 70%),
    #f8faff;
  overflow: hidden;
}

.hero-block-modern::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float-orb 8s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: var(--bbr-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: var(--bbr-blue);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37,99,235,0.7); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 9px rgba(37,99,235,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--site-dark);
}

.hero-title-highlight {
  background: var(--bbr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-card-preview {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 24px 48px rgba(30, 27, 75, 0.1);
  padding: 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 1;
}
.hero-card-preview:hover { transform: translateY(-6px); box-shadow: 0 32px 60px rgba(30,27,75,0.14); }

/* Watch Demo button */
.btn-watch-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(37, 99, 235, 0.2);
  color: var(--bbr-navy);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}
.btn-watch-demo:hover {
  border-color: var(--bbr-blue);
  color: var(--bbr-blue);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.18);
  transform: translateY(-2px);
}
.btn-watch-demo .play-circle {
  width: 34px; height: 34px;
  background: var(--bbr-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  box-shadow: 0 4px 10px rgba(37,99,235,0.4);
  flex-shrink: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-floating-bar {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 12px 36px rgba(30, 27, 75, 0.07);
  padding: 1.75rem 2.5rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.stat-icon-box {
  width: 50px; height: 50px;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-icon-blue   { background: rgba(37,99,235,0.1);  color: var(--bbr-blue); }
.stat-icon-purple { background: rgba(99,102,241,0.1); color: #6366f1; }
.stat-icon-emerald{ background: rgba(16,185,129,0.1); color: #10b981; }
.stat-icon-amber  { background: rgba(245,158,11,0.1); color: var(--bbr-gold); }

.stat-number { font-size: 1.85rem; font-weight: 900; color: var(--site-dark); line-height: 1.1; }
.stat-label-text { font-size: 0.78rem; font-weight: 600; color: var(--site-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-grid-section { background: var(--bbr-gradient-soft); }

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}

.feature-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  background: var(--bbr-gradient-soft);
  border: 1px solid rgba(37,99,235,0.12);
}

.feature-icon-wrap.gold { background: linear-gradient(135deg, #fff7ed, #fef3c7); border-color: rgba(245,158,11,0.2); }
.feature-icon-wrap.blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); border-color: rgba(37,99,235,0.2); }
.feature-icon-wrap.green { background: linear-gradient(135deg, #ecfdf5, #d1fae5); border-color: rgba(16,185,129,0.2); }
.feature-icon-wrap.purple { background: linear-gradient(135deg, #f5f3ff, #ede9fe); border-color: rgba(99,102,241,0.2); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-section { background: var(--bbr-navy); }
.how-it-works-section h2 { color: #ffffff; }

.step-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.step-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(37,99,235,0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.step-number-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bbr-gradient);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(37,99,235,0.5);
}

.step-icon-wrap {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.step-connector {
  position: absolute;
  top: 40px;
  right: -18px;
  z-index: 2;
  color: rgba(37,99,235,0.6);
  font-size: 1.5rem;
}

@media (max-width: 991px) { .step-connector { display: none; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: linear-gradient(180deg, #f8faff 0%, #eef2ff 100%); }

.testimonial-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.25rem;
  border: 1px solid rgba(37,99,235,0.08);
  box-shadow: 0 8px 32px rgba(30,27,75,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.2);
}

.testimonial-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--bbr-blue);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: -0.5rem;
  display: block;
}

.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(37,99,235,0.15);
}

.testimonial-avatar-fallback {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bbr-gradient);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-stars { color: var(--bbr-gold); font-size: 0.9rem; }

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  color: var(--bbr-blue);
  border: 1px solid rgba(37,99,235,0.15);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section-wrapper { background: var(--bbr-gradient-soft); }

.video-embed-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(30,27,75,0.18);
}
.video-embed-container iframe,
.video-embed-container video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 1.25rem;
}

/* Modal video */
.video-modal-container { position: relative; }
.video-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,30,0.92);
  display: flex; align-items: center; justify-content: center;
  animation: fade-in 0.25s ease;
}
.video-modal-inner { width: 90%; max-width: 900px; position: relative; }
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1;
}

@keyframes fade-in { from { opacity:0; } to { opacity:1; } }

/* ============================================================
   COURSE CARDS
   ============================================================ */
.course-card-modern {
  background: #ffffff;
  border: 1px solid var(--site-border);
  border-radius: 1.1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; height: 100%;
}
.course-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.3);
}

.course-thumb-wrapper {
  position: relative; width: 100%; height: 200px; overflow: hidden;
  background: var(--site-light-bg); flex-shrink: 0;
}
.course-thumb-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.course-card-modern:hover .course-thumb-img { transform: scale(1.06); }

.category-pill {
  position: absolute; top: 12px; left: 12px;
  background: rgba(30,27,75,0.8); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 999px;
}

.course-card-body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }

.price-tag-modern { font-weight: 900; font-size: 1.15rem; color: var(--bbr-blue); }
.price-tag-modern.free { color: #10b981; }

/* ---- Legacy Course Card compatibility for class.php ---- */
.course-card {
  background: #ffffff;
  border: 1px solid var(--site-border);
  border-radius: 1.1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.3);
}
.course-card .course-thumb {
  width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: cover;
  display: block;
}
.course-card .course-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card .price-badge {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--bbr-blue);
}
.course-card .price-badge.free {
  color: #10b981;
}

/* ---- Category filter pills ---- */
.filter-btn-pill {
  border: 1px solid var(--site-border);
  background: #ffffff;
  color: var(--site-muted);
  font-weight: 600; font-size: 0.85rem;
  padding: 0.45rem 1.15rem; border-radius: 999px;
  transition: all 0.2s ease;
}
.filter-btn-pill:hover, .filter-btn-pill.active {
  background: var(--bbr-gradient);
  border-color: var(--bbr-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion-modern .accordion-item {
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 0.9rem !important;
  overflow: hidden; margin-bottom: 0.85rem; background: #fff;
}
.accordion-modern .accordion-button {
  font-weight: 700; color: var(--site-dark);
  font-size: 1rem; padding: 1.2rem 1.4rem;
  background: #fff; box-shadow: none !important;
}
.accordion-modern .accordion-button:not(.collapsed) {
  color: var(--bbr-blue);
  background: rgba(37,99,235,0.04);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-banner-modern {
  background: var(--bbr-gradient);
  border-radius: 1.75rem;
  padding: 5rem 2rem;
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 48px rgba(37,99,235,0.32);
}
.cta-banner-modern::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.cta-banner-modern::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(245,158,11,0.12);
  border-radius: 50%;
}
.cta-banner-modern h2 { color: #fff; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; }
.section-subtitle { color: var(--site-muted); font-size: 1.05rem; line-height: 1.7; max-width: 640px; margin: 0 auto; }

.section-label-badge {
  display: inline-block;
  background: rgba(37,99,235,0.08);
  color: var(--bbr-blue);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-label-badge.gold {
  background: rgba(245,158,11,0.1);
  color: #b45309;
  border-color: rgba(245,158,11,0.25);
}
.section-label-badge.dark {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bbr-navy); color: #94a3b8; padding: 4rem 0 2rem; }
.site-footer h6 { color: #ffffff; font-weight: 700; margin-bottom: 1.25rem; }
.site-footer a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.site-footer a:hover { color: #ffffff; }

.footer-tagline {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.footer-social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.footer-social-icon:hover { background: var(--bbr-blue); color: #fff; transform: translateY(-2px); }

/* ============================================================
   REGISTER PAGE — 2-PANEL
   ============================================================ */
.register-page-wrap { min-height: 100vh; display: flex; }
.register-left-panel {
  background: var(--bbr-gradient);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3.5rem 2.5rem;
  position: relative; overflow: hidden;
}
.register-left-panel::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
}
.register-left-panel::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  background: rgba(245,158,11,0.1); border-radius: 50%;
}

.register-right-panel {
  background: #ffffff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 2.5rem;
  overflow-y: auto;
}

.register-benefit-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.875rem;
  padding: 0.875rem 1.1rem;
  backdrop-filter: blur(8px);
  margin-bottom: 0.75rem;
}
.register-benefit-icon {
  width: 40px; height: 40px; border-radius: 0.625rem;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff; flex-shrink: 0;
}

/* ============================================================
   WELCOME PAGE
   ============================================================ */
.welcome-page-bg {
  min-height: 100vh;
  background: var(--bbr-gradient);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1rem;
}
.welcome-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  max-width: 680px; width: 100%;
  box-shadow: 0 40px 80px rgba(30,27,75,0.25);
  text-align: center;
}
.welcome-step-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(37,99,235,0.04);
  border: 1px solid rgba(37,99,235,0.08);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: left;
}
.welcome-step-num {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%; background: var(--bbr-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .register-left-panel { display: none; }
  .register-right-panel { width: 100%; min-height: 100vh; }
  .hero-block-modern { padding: 4rem 0 5rem; }
  .stats-floating-bar { margin-top: 2rem; }
}

@media (max-width: 767px) {
  .lang-label { display: none; }
  .hero-title { font-size: 2.1rem; }
  .welcome-card { padding: 2.5rem 1.75rem; }
  .step-card { padding: 1.75rem 1.25rem; }
}
