/* ============================================================
   DESIGN TOKENS – Navy Blue & Orange
============================================================ */
:root {
  --navy:        #0d1b3e;
  --navy-dark:   #080f24;
  --navy-mid:    #162350;
  --navy-light:  #1e3163;
  --orange:      #f97316;
  --orange-dark: #ea6c0a;
  --orange-light:#ffedd5;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --font:        'Inter', system-ui, sans-serif;
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(13,27,62,.12);
  --shadow-lg:   0 8px 32px rgba(13,27,62,.18);
}

/* ============================================================
   BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  margin: 0;
}
h1,h2,h3,h4,h5,h6 { font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar-rsa {
  background: var(--navy-dark);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.navbar-brand-rsa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white) !important;
  letter-spacing: -0.02em;
}
.navbar-brand-rsa .brand-icon {
  background: var(--orange);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.navbar-brand-rsa .brand-dot {
  color: var(--orange);
}
.nav-link-rsa {
  color: rgba(255,255,255,.75) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem !important;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link-rsa:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,.08);
}
.nav-phone {
  color: rgba(255,255,255,.75);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 0.35rem;
}
.btn-nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .2s, transform .15s;
}
.btn-nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.navbar-toggler-rsa {
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
}
.navbar-toggler-rsa .bi { font-size: 1.2rem; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(249,115,22,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/img/rsa21.jpg') center center / cover no-repeat;
  opacity: 0.15;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 50%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 50%, black 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.4);
  color: #fda96a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--orange); }
.hero-lead {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.hero-features {
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
}
.hero-features li {
  color: rgba(255,255,255,.85);
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.hero-features li .bi {
  color: var(--orange);
  font-size: 1rem;
}
.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,.5);
  color: var(--white);
}
.btn-hero-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}

/* Hero card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero-card-header {

  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-header .badge-seminar {
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}
.hero-card-header .badge-online {
  background: rgb(24 30 65);
color: rgb(255 255 255 / 90%);
font-size: 0.75rem;
font-weight: 500;
padding: 0.3rem 0.7rem;
border-radius: 50px;
}
.hero-card-body { padding: 1.5rem; }
.hero-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}
.hero-card-date {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.hero-card-time {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}
.hero-card-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-card-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
}
.btn-card-book {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  width: 100%;
  font-size: 0.95rem;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.btn-card-book:hover { background: var(--orange-dark); color: var(--white); }
.hero-card-features {
  list-style: none; padding: 0; margin: 0.75rem 0 0;
  display: flex; gap: 1rem;
}
.hero-card-features li {
  font-size: 0.82rem;
  color: var(--gray-600);
  display: flex; align-items: center; gap: 0.3rem;
}
.hero-card-features li .bi { color: var(--orange); }

/* Stats bar */
.stats-bar {
  background: var(--navy-mid);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  margin-top: 0.2rem;
}

/* ============================================================
   USP CARDS
============================================================ */
.usp-section { padding: 3.5rem 0; background: var(--gray-50); }
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}
.usp-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.usp-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.usp-card h5 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--navy); }
.usp-card p { font-size: 0.88rem; color: var(--gray-600); margin: 0; line-height: 1.55; }

/* ============================================================
   SECTION HEADINGS
============================================================ */
.section-heading { text-align: center; margin-bottom: 2.5rem; }
.section-heading .overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-heading p {
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.divider-orange {
  width: 48px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* ============================================================
   CALENDAR / BOOKING SECTION
============================================================ */
.booking-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.booking-section .section-heading h2 { color: var(--white); }
.booking-section .section-heading p { color: rgba(255,255,255,.65); }
.booking-section .overline { color: #fda96a; }

.calendar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.calendar-header {
  background: var(--navy);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.calendar-header h5 {
  color: var(--white);
  margin: 0;
  font-size: 1rem;
}
.btn-cal-nav {
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.btn-cal-nav:hover { background: rgba(255,255,255,.2); }
.calendar-grid { padding: 1rem; }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.cal-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-400);
  padding: 0.4rem 0;
  letter-spacing: .04em;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  color: var(--gray-800);
  transition: background .15s, color .15s;
  position: relative;
}
.cal-day:hover:not(.cal-empty):not(.cal-past) {
  background: var(--orange-light);
  color: var(--orange-dark);
}
.cal-day.cal-has-event {
  background: rgba(249,115,22,.12);
  color: var(--orange-dark);
  font-weight: 700;
}
.cal-day.cal-has-event::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
}
.cal-day.cal-selected {
  background: var(--orange) !important;
  color: var(--white) !important;
}
.cal-day.cal-selected::after { background: var(--white); }
.cal-day.cal-today {
  border: 2px solid var(--orange);
}
.cal-day.cal-past { color: var(--gray-400); cursor: default; }
.cal-day.cal-empty { cursor: default; }
.cal-legend {
  padding: 0.5rem 1rem 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--gray-600);
}
.cal-legend-dot {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
}

/* Booking detail card */
.booking-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 100%;
}
.booking-detail-header {
  background: var(--navy);
  padding: 1rem 1.25rem;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.booking-detail-body { padding: 1.5rem; }
.booking-date-display {
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
}
.booking-time {
  color: var(--gray-600);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.35rem;
  margin-top: 0.25rem;
}
.booking-time .bi { color: var(--orange); }
.participant-control {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 1rem 0;
}
.participant-control label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  flex: 1;
}
.btn-participant {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1.5px solid var(--orange);
  background: transparent;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn-participant:hover { background: var(--orange); color: var(--white); }
.participant-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 24px;
  text-align: center;
}
.form-control-rsa {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color .2s;
  outline: none;
  font-family: var(--font);
}
.form-control-rsa:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.price-summary {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
}
.price-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 0.2rem 0;
}
.price-row.total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  border-top: 1px solid var(--gray-200);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
.price-row.total .price-val { color: var(--orange); }
.btn-book-now {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-book-now:hover { background: var(--orange-dark); color: var(--white); }

/* ============================================================
   LOGOS / TRUST SECTION
============================================================ */
.trust-section {
  padding: 3rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.trust-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}
.trust-label strong { color: var(--navy); }
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.logo-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .04em;
  min-width: 90px;
  text-align: center;
  transition: border-color .2s, color .2s;
}
.logo-item:hover { border-color: var(--orange); color: var(--navy); }

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps-section { padding: 4.5rem 0; background: var(--white); }
.step-card {
  text-align: center;
  padding: 0 1rem;
}
.step-number {
  width: 56px; height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}
.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 16px;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h5 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.step-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }
.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(249,115,22,.2) 100%);
  margin-top: -28px;
}

/* ============================================================
   TARGET GROUPS
============================================================ */
.target-section {
  padding: 4.5rem 0;
  background: var(--gray-50);
}
.target-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.target-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(249,115,22,.12);
  transform: translateY(-3px);
}
.target-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--orange);
  border-radius: 14px;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.target-card h5 { font-size: 0.98rem; color: var(--navy); margin-bottom: 0.35rem; }
.target-card p { font-size: 0.85rem; color: var(--gray-600); margin: 0; line-height: 1.55; }

/* ============================================================
   CONTENT / CURRICULUM
============================================================ */
.curriculum-section { padding: 4.5rem 0; background: var(--white); }
.curriculum-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 4px solid var(--orange);
  height: 100%;
  transition: background .2s, box-shadow .2s;
}
.curriculum-card:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-sm);
}
.curriculum-icon {
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.curriculum-card h6 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.3rem; }
.curriculum-card p { font-size: 0.83rem; color: var(--gray-600); margin: 0; line-height: 1.5; }
.curriculum-note {
  background: rgba(13,27,62,.05);
  border: 1px solid rgba(13,27,62,.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.curriculum-note .bi { color: var(--navy); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   PRICING
============================================================ */
.pricing-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.pricing-section .section-heading h2 { color: var(--white); }
.pricing-section .section-heading p { color: rgba(255,255,255,.65); }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  margin: 0 auto;
}
.pricing-card-header {
  background: var(--orange);
  padding: 1.5rem;
  text-align: center;
}
.pricing-badge {
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.pricing-card-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.pricing-price {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; font-weight: 700; vertical-align: super; }
.pricing-price-sub {
  color: rgba(255,255,255,.8);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.pricing-card-body { padding: 1.75rem; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-800);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .bi-check-circle-fill { color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.btn-pricing {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  margin-top: 1rem;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-pricing:hover { background: var(--navy-light); color: var(--white); }
.inhouse-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}
.inhouse-icon {
  width: 56px; height: 56px;
  background: rgba(249,115,22,.15);
  color: var(--orange);
  border-radius: 14px;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.inhouse-card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.inhouse-card p { color: rgba(255,255,255,.65); font-size: 0.9rem; margin-bottom: 1.25rem; }
.btn-inhouse {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  border-radius: 10px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .2s, color .2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-inhouse:hover { background: var(--orange); color: var(--white); }

/* ============================================================
   FAQ
============================================================ */
.faq-section { padding: 2.5rem 0 4.5rem; background: var(--gray-50); }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--orange); }
.faq-question {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  user-select: none;
}
.faq-question .bi {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question .bi { transform: rotate(180deg); }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  padding: 4rem 0;
  background: var(--orange);
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.cta-section p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}
.btn-cta-white {
  background: var(--white);
  color: var(--orange);
  border: none;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-cta-white:hover { background: var(--orange-light); transform: translateY(-2px); color: var(--orange-dark); }
.btn-cta-ghost-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
  border-radius: 10px;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color .2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-cta-ghost-white:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 3rem 0 1.5rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand .brand-icon {
  background: var(--orange);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.footer-brand .brand-dot { color: var(--orange); }
.footer-tagline {
  color: rgba(255,255,255,.5);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}
.footer-contact {
  margin-top: 1rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.footer-contact a {
  color: rgba(255,255,255,.65);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 0.45rem;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact .bi { color: var(--orange); font-size: 0.95rem; }
.footer-heading {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: 0.88rem;
  transition: color .2s;
  display: flex; align-items: center; gap: 0.35rem;
}
.footer-links a:hover { color: var(--orange); }
.footer-divider {
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 2rem 0 1.25rem;
}
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem;
}
.footer-copyright {
  color: rgba(255,255,255,.35);
  font-size: 0.8rem;
}
.footer-legal {
  display: flex; gap: 1.25rem;
}
.footer-legal a {
  color: rgba(255,255,255,.4);
  font-size: 0.8rem;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero-card { margin-top: 2rem; }
  .step-connector { display: none; }
}
@media (max-width: 767.98px) {
  .hero h1 { font-size: 1.75rem; }
  .stat-value { font-size: 1.3rem; }
}


.payment-selector{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-bottom:20px;
}

.payment-selector input[type="radio"]{
display:none;
}

.payment-card{
display:flex;
align-items:center;
gap:10px;
padding:12px 14px;
border:2px solid var(--gray-200);
border-radius:12px;
background:#fff;
cursor:pointer;
transition:.2s ease;
font-size:.9rem;
font-weight:600;
color:var(--navy);
}

.payment-card i{
font-size:1.1rem;
color:var(--orange);
}

.payment-card:hover{
border-color:var(--orange);
background:var(--orange-light);
}

.payment-selector input:checked + .payment-card{
background:var(--navy);
border-color:var(--navy);
color:#fff;
}

.payment-selector input:checked + .payment-card i{
color:var(--orange);
}
.contact-section{
padding:5rem 0;
background:var(--gray-50);
}

.contact-info-card,
.contact-form-card{
background:#fff;
border-radius:var(--radius-lg);
padding:2rem;
box-shadow:var(--shadow);
height:100%;
}

.contact-item{
display:flex;
gap:1rem;
align-items:flex-start;
margin-bottom:1.5rem;
}

.contact-icon{
width:52px;
height:52px;
background:var(--orange-light);
color:var(--orange);
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
font-size:1.25rem;
flex-shrink:0;
}

.contact-label{
font-size:.75rem;
font-weight:700;
text-transform:uppercase;
letter-spacing:.08em;
color:var(--gray-400);
}

.contact-value{
font-size:1rem;
font-weight:600;
color:var(--navy);
text-decoration:none;
}

.contact-value:hover{
color:var(--orange);
}

.contact-form-card textarea{
resize:none;
min-height:160px;
}
/* ============================================================
LOGIN SECTION
============================================================ */

.login-section{
padding:5rem 0;
background:#fff;
}

.login-card{
background:#fff;
border-radius:var(--radius-lg);
padding:2rem;
border:1px solid var(--gray-200);
box-shadow:var(--shadow);
}

.login-icon{
width:80px;
height:80px;
margin:0 auto 1.5rem;
border-radius:50%;
background:var(--orange-light);
color:var(--orange);
display:flex;
align-items:center;
justify-content:center;
font-size:2.2rem;
}

.login-link{
color:var(--orange);
font-size:.85rem;
font-weight:600;
}

.login-link:hover{
color:var(--orange-dark);
}

.login-divider{
text-align:center;
margin:1.5rem 0;
position:relative;
color:var(--gray-400);
font-size:.85rem;
}

.login-divider:before,
.login-divider:after{
content:'';
position:absolute;
top:50%;
width:40%;
height:1px;
background:var(--gray-200);
}

.login-divider:before{
left:0;
}

.login-divider:after{
right:0;
}

.btn-login-outline{
width:100%;
display:flex;
align-items:center;
justify-content:center;
gap:.5rem;
border:2px solid var(--orange);
color:var(--orange);
padding:.8rem;
border-radius:10px;
font-weight:700;
transition:.2s;
}

.btn-login-outline:hover{
background:var(--orange);
color:#fff;
}
/* ============================================================
LEGAL SECTION
============================================================ */

.legal-section{
padding:5rem 0;
background:var(--gray-50);
}

.legal-card{
background:#fff;
padding:2.5rem;
border-radius:var(--radius-lg);
box-shadow:var(--shadow);
border:1px solid var(--gray-200);
}

.legal-card h5{
color:var(--navy);
margin-top:1.75rem;
margin-bottom:.75rem;
font-weight:700;
}

.legal-card h5:first-child{
margin-top:0;
}

.legal-card p{
color:var(--gray-600);
line-height:1.8;
margin-bottom:1rem;
}
/* ============================================================
DASHBOARD
============================================================ */

.dashboard-section{
padding:5rem 0;
background:var(--gray-50);
}

.dashboard-card{
background:#fff;
border-radius:var(--radius-lg);
padding:2rem;
border:1px solid var(--gray-200);
box-shadow:var(--shadow);
height:100%;
}

.user-avatar{
width:90px;
height:90px;
margin:0 auto 1.5rem;
border-radius:50%;
background:var(--orange-light);
color:var(--orange);
display:flex;
align-items:center;
justify-content:center;
font-size:2.5rem;
}

.user-info-item{
margin-bottom:1rem;
}

.user-label{
font-size:.72rem;
font-weight:700;
text-transform:uppercase;
letter-spacing:.08em;
color:var(--gray-400);
}

.user-value{
font-size:1rem;
font-weight:600;
color:var(--navy);
}

.status-box{
text-align:center;
margin-bottom:1rem;
}

.status-badge{
background:#dcfce7;
color:#15803d;
padding:.6rem 1rem;
border-radius:50px;
display:inline-flex;
gap:.5rem;
align-items:center;
font-weight:600;
}

.btn-dashboard-download{
width:100%;
display:flex;
justify-content:center;
align-items:center;
gap:.5rem;
padding:.85rem;
border-radius:10px;
background:var(--orange);
color:#fff;
font-weight:700;
}

.btn-dashboard-download:hover{
background:var(--orange-dark);
color:#fff;
}

.video-wrapper{
overflow:hidden;
border-radius:14px;
background:#000;
}

.video-wrapper iframe{
width:100%;
aspect-ratio:16/9;
border:0;
}

.video-duration{
background:var(--orange-light);
color:var(--orange-dark);
padding:.4rem .8rem;
border-radius:50px;
font-size:.8rem;
font-weight:600;
}

.video-footer{
margin-top:1.25rem;
}

.progress-label{
font-size:.85rem;
font-weight:600;
margin-bottom:.5rem;
}

.rsa-progress{
height:12px;
border-radius:999px;
overflow:hidden;
background:var(--gray-200);
}

.rsa-progress .progress-bar{
background:var(--orange);
}
.employer-section{
padding:5rem 0;
background:var(--gray-50);
}

.employee-table{
display:flex;
flex-direction:column;
gap:12px;
}

.employee-row{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 16px;
border:1px solid var(--gray-200);
border-radius:12px;
background:#fff;
}

.employee-row strong{
color:var(--navy);
}
.employer-section{
padding:5rem 0;
background:var(--gray-50);
}

.employee-table{
display:flex;
flex-direction:column;
gap:12px;
}

.employee-row{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 16px;
border:1px solid var(--gray-200);
border-radius:12px;
background:#fff;
}

.employee-row strong{
color:var(--navy);
}
display:none;
width:100%;
background:#fff;
position:absolute;
top:100%;
left:0;
z-index:99999;
padding:15px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.mobile-menu-rsa.show{
display:block;
}

.mobile-menu-rsa a{
display:block;
padding:12px 0;
text-decoration:none;
}

.navbar-rsa{
position:relative;
overflow:visible !important;
}
.navbar-toggler-rsa{
    border:none;
    background:#fff;
    color:var(--orange);
    box-shadow:0 4px 16px rgba(0,0,0,.08);
}

.navbar-toggler-rsa i{
    font-size:1.5rem;
}

.navbar-toggler-rsa:hover,
.navbar-toggler-rsa:focus{
    background:#fff;
    color:var(--orange);
    box-shadow:0 6px 20px rgba(0,0,0,.12);
}

.footer-seo{
  margin-top:1.5rem;
}
.footer-bundeslaender{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem 1rem;
  margin-top:.75rem;
}
.footer-bundeslaender a{
  color:var(--gray-600);
  font-size:.85rem;
  text-decoration:none;
}
.footer-bundeslaender a:hover{
  color:var(--orange);
}

/* ============================================================
   SEO SCHULUNG SEITEN
============================================================ */
.seo-breadcrumb{
  font-size:.85rem;
  color:var(--gray-600);
  margin-bottom:1.5rem;
}
.seo-breadcrumb a{
  color:var(--gray-600);
  text-decoration:none;
}
.seo-breadcrumb a:hover{
  color:var(--orange);
}
.seo-breadcrumb i{
  font-size:.7rem;
  margin:0 .35rem;
  vertical-align:middle;
}
.seo-breadcrumb span{
  color:var(--navy);
  font-weight:600;
}

.bundesland-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:1rem;
}
.bundesland-card{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:1.5rem 1rem;
  text-align:center;
  text-decoration:none;
  color:var(--navy);
  font-weight:600;
  transition:all .2s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
}
.bundesland-card i{
  font-size:1.5rem;
  color:var(--orange);
}
.bundesland-card:hover{
  border-color:var(--orange);
  box-shadow:var(--shadow);
  transform:translateY(-2px);
}
.bundesland-card small{
  color:var(--gray-600);
  font-weight:400;
  font-size:.8rem;
}
.bundesland-card.disabled{
  color:var(--gray-600);
  cursor:default;
}
.bundesland-card.disabled i{
  color:var(--gray-200);
}
.bundesland-card.disabled:hover{
  transform:none;
  box-shadow:none;
  border-color:var(--gray-200);
}

.city-list-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  gap:.75rem;
}
.city-list-item{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:.9rem 1.1rem;
  text-decoration:none;
  color:var(--navy);
  font-weight:600;
  display:flex;
  align-items:center;
  gap:.5rem;
  transition:all .2s ease;
}
.city-list-item i{
  color:var(--orange);
}
.city-list-item small{
  margin-left:auto;
  color:var(--gray-600);
  font-weight:400;
  font-size:.8rem;
}
.city-list-item:hover{
  border-color:var(--orange);
  box-shadow:var(--shadow);
  transform:translateY(-2px);
}

.nearby-cities{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:.5rem;
}
.nearby-cities a{
  background:var(--gray-50);
  border:1px solid var(--gray-200);
  border-radius:999px;
  padding:.4rem 1rem;
  font-size:.85rem;
  font-weight:600;
  color:var(--navy);
  text-decoration:none;
  transition:all .2s ease;
}
.nearby-cities a:hover{
  background:var(--orange);
  color:#fff;
  border-color:var(--orange);
}

.footer-seo{
  margin-top:1.5rem;
}
.footer-bundeslaender{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem 1rem;
  margin-top:.75rem;
}
.footer-bundeslaender a{
  color:var(--gray-600);
  font-size:.85rem;
  text-decoration:none;
}
.footer-bundeslaender a:hover{
  color:var(--orange);
}
