/* ============================================
   COURSLY – Warm Modern Theme
   ============================================ */

:root {
  --primary: #E8522A;
  --primary-dark: #C4411B;
  --primary-light: #FDF1EC;
  --primary-gradient: linear-gradient(135deg, #E8522A 0%, #F06A3A 100%);
  --secondary: #F5A623;
  --secondary-light: #FFF8E6;
  --dark: #1C1209;
  --dark-2: #2E1A0A;
  --text: #2C1A0E;
  --text-secondary: #7A6355;
  --text-light: #A8917E;
  --bg: #F5F0EB;
  --bg-warm: #EDE5DB;
  --bg-white: #FFFFFF;
  --border: #E5D9CF;
  --border-light: #EDE4DA;
  --shadow-sm: 0 1px 2px rgba(44,26,14,0.05);
  --shadow: 0 4px 6px -1px rgba(44,26,14,0.08), 0 2px 4px -1px rgba(44,26,14,0.04);
  --shadow-md: 0 10px 15px -3px rgba(44,26,14,0.08), 0 4px 6px -2px rgba(44,26,14,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(44,26,14,0.1), 0 10px 10px -5px rgba(44,26,14,0.04);
  --shadow-colored: 0 10px 40px rgba(232,82,42,0.25);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: 200ms ease;
  --transition-slow: 400ms ease;
  --max-width: 1200px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }
p { color: var(--text-secondary); line-height: 1.8; }

/* ---- Layout ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.section-header .tag {
  display: inline-block;
  padding: 4px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.0625rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-colored);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(232,82,42,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
/* Outlined white – for use on dark/colored backgrounds */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
/* Solid white – for use on colored backgrounds */
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
/* Ghost – same as outline-white alias */
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  font-size: 0.9375rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile .btn { margin-top: 1.5rem; justify-content: center; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, #1C1209 0%, #2E1A0A 50%, #3A1F08 100%);
  position: relative;
  overflow: hidden;
}
.hero-blob-1 {
  position: absolute; top: -15%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,82,42,0.3) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -10%; left: -5%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(232,82,42,0.15);
  border: 1px solid rgba(232,82,42,0.35);
  border-radius: var(--radius-full);
  color: #F5A98A;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero h1 .hl {
  color: var(--primary);
  font-style: italic;
}
.hero > .container .hero-inner .hero-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.125rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat .val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}
.hero-stat .lbl { color: rgba(255,255,255,0.4); font-size: 0.8125rem; margin-top: 2px; }

/* ---- Phone Mockup ---- */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-wrap {
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}
.phone {
  width: 272px; height: 568px;
  background: #1C1209;
  border-radius: 44px;
  border: 9px solid #3A2010;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #1C1209;
  border-radius: 0 0 16px 16px;
  z-index: 10;
  border: 2px solid #3A2010;
  border-top: none;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  overflow: hidden;
  padding-top: 28px;
}
.phone-header {
  background: var(--primary);
  padding: 14px 14px 18px;
}
.phone-title {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  color: white; margin-bottom: 10px;
}
.phone-search {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}
.phone-chips {
  display: flex; gap: 6px;
  padding: 10px 14px;
  background: white;
}
.chip {
  background: var(--bg);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.chip.active { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.phone-cards { padding: 8px 14px; display: flex; flex-direction: column; gap: 9px; background: var(--bg); }
.pcard {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44,26,14,0.08);
}
.pcard-img {
  height: 54px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.pcard-img.c1 { background: linear-gradient(135deg, #E8522A, #F5A623); }
.pcard-img.c2 { background: linear-gradient(135deg, #C4411B, #E8522A); }
.pcard-img.c3 { background: linear-gradient(135deg, #F5A623, #F5C35A); }
.pcard-body { padding: 7px 10px; background: white; }
.pcard-name { font-size: 11px; font-weight: 700; color: var(--text); font-family: var(--font-heading); }
.pcard-meta { font-size: 10px; color: var(--text-secondary); display: flex; justify-content: space-between; margin-top: 2px; }
.pcard-price { font-weight: 700; color: var(--primary); }

/* Floating cards */
.float-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(44,26,14,0.15);
  display: flex; align-items: center; gap: 10px;
}
.float-badge-1 { left: -100px; top: 22%; animation: floatY 3s ease-in-out infinite; }
.float-badge-2 { right: -90px; top: 48%; animation: floatY 3s ease-in-out infinite 1s; }
.float-badge-3 { left: -80px; bottom: 18%; animation: floatY 3s ease-in-out infinite 2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fb-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.fb-title { font-weight: 700; font-size: 0.8125rem; color: var(--text); }
.fb-sub { font-size: 0.6875rem; color: var(--text-secondary); }

/* ---- Features ---- */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::after { transform: scaleX(1); }
.feat-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.0625rem; margin-bottom: 0.625rem; }

/* ---- Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 2rem);
  right: calc(16.67% + 2rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.2;
}
.step { text-align: center; }
.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 700;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(232,82,42,0.3);
  position: relative; z-index: 1;
}
.step h3 { margin-bottom: 0.75rem; }

/* ---- Stats ---- */
.stats-section {
  background: linear-gradient(135deg, #1C1209 0%, #2E1A0A 55%, #1E1005 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,82,42,0.18) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative; z-index: 1;
  text-align: center;
}
.stat-val {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-val span { color: var(--primary); }
.stat-lbl { color: rgba(255,255,255,0.45); font-size: 0.875rem; }

/* ---- Provider CTA ---- */
.provider-section { background: var(--bg); }
.provider-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.provider-tag {
  display: inline-block;
  padding: 4px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.provider-content h2 { margin-bottom: 1rem; }
.provider-content > p { font-size: 1.0625rem; margin-bottom: 2rem; }
.benefit-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.benefit-row { display: flex; align-items: flex-start; gap: 12px; }
.check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}
.benefit-row p { font-size: 0.9375rem; color: var(--text); }
.provider-card {
  background: linear-gradient(150deg, #E8522A 0%, #C4411B 50%, #1C1209 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.provider-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.provider-card::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.provider-card .pc-emoji { font-size: 3.5rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.provider-card h3 { color: white; font-size: 1.5rem; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.provider-card p { color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; position: relative; z-index: 1; }

/* ---- App Store Section ---- */
.app-section { text-align: center; background: white; }
.app-section h2 { margin-bottom: 1rem; }
.app-section > .container > p { max-width: 500px; margin: 0 auto 2rem; font-size: 1.0625rem; }
.store-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  transition: all var(--transition);
  min-width: 180px;
}
.store-btn:hover { background: var(--dark-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-icon { font-size: 1.75rem; }
.store-small { font-size: 0.6875rem; opacity: 0.65; display: block; }
.store-big { font-size: 1rem; font-weight: 700; }

/* ---- Footer ---- */
.footer { background: var(--dark); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.9375rem; max-width: 280px; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-mark { background: var(--primary); }
.footer-logo .logo-name { color: white; }
.footer-col h4 { color: white; font-family: var(--font-heading); font-size: 1rem; margin-bottom: 1.25rem; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: rgba(255,255,255,0.4); font-size: 0.9375rem; transition: color var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ---- Page Hero (subpages) ---- */
.page-hero {
  background: linear-gradient(135deg, #2E1A0A 0%, #E8522A 60%, #F5A623 100%);
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(255,255,255,0.07) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.page-hero h1 { color: white; max-width: 820px; margin: 0 auto 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 560px; margin: 0 auto 2rem; }
.page-hero .hero-actions { justify-content: center; }

/* ---- Benefits (anbieter page) ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition-slow);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bc-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}
.benefit-card h3 { margin-bottom: 0.75rem; }

/* ---- Process steps ---- */
.process-list { max-width: 780px; margin: 0 auto; }
.process-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}
.process-item::after {
  content: '';
  position: absolute;
  left: 27px; top: 80px;
  width: 2px; bottom: 0;
  background: var(--border);
  opacity: 0.8;
}
.process-item:last-child::after { display: none; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.125rem; font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(232,82,42,0.3);
  position: relative; z-index: 1;
}
.process-body { flex: 1; padding-top: 8px; }
.process-body .badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.badge-orange { background: var(--primary-light); color: var(--primary); }
.badge-green { background: #EDF7ED; color: #2E7D32; }
.badge-purple { background: var(--primary-light); color: var(--primary); }
.process-body h3 { margin-bottom: 0.5rem; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(232,82,42,0.35); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.faq-q.open { color: var(--primary); }
.faq-arrow { transition: transform var(--transition); color: var(--text-light); font-style: normal; font-size: 1.25rem; line-height: 1; }
.faq-q.open .faq-arrow { transform: rotate(45deg); color: var(--primary); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; color: var(--text-secondary); line-height: 1.8; }
.faq-a.open { display: block; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #1C1209 0%, #E8522A 60%, #F5A623 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner h2 { color: white; max-width: 600px; margin: 0 auto 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.0625rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Registration Page ---- */
.reg-layout { min-height: 100vh; background: var(--bg); padding-top: var(--nav-height); }
.reg-hero {
  background: var(--primary);
  padding: 3rem 0;
  text-align: center;
}
.reg-hero h1 { color: white; font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }
.reg-hero p { color: rgba(255,255,255,0.8); font-size: 1.0625rem; }
.reg-body { max-width: 680px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }

/* Progress */
.progress-track { display: flex; margin-bottom: 2.5rem; }
.prog-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; }
.prog-step::after {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  width: 100%; height: 2px;
  background: var(--border);
  z-index: 0;
}
.prog-step:last-child::after { display: none; }
.prog-step.done::after { background: var(--primary); }
.prog-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700;
  color: var(--text-secondary);
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.prog-step.active .prog-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(232,82,42,0.15);
}
.prog-step.done .prog-dot { background: var(--text); border-color: var(--text); color: white; }
.prog-lbl { font-size: 0.75rem; font-weight: 500; color: var(--text-secondary); text-align: center; }
.prog-step.active .prog-lbl { color: var(--primary); font-weight: 600; }

/* Form */
.form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-step { display: none; }
.form-step.active { display: block; }
.step-head { margin-bottom: 2rem; }
.step-head h2 { font-size: 1.5rem; margin-bottom: 0.375rem; }
.step-head p { font-size: 0.9375rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-weight: 500; font-size: 0.875rem; color: var(--text); margin-bottom: 6px; }
label .req { color: var(--primary); margin-left: 2px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: white;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,82,42,0.1);
}
input.error, select.error, textarea.error {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,82,42,0.1);
}
input::placeholder, textarea::placeholder { color: var(--text-light); }
textarea { resize: vertical; min-height: 90px; }
.hint { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 4px; }

/* Category checkboxes */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cat-item { position: relative; }
.cat-item input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.cat-lbl {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: white;
}
.cat-lbl .ci { font-size: 1.5rem; }
.cat-item input:checked + .cat-lbl { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.cat-lbl:hover { border-color: rgba(232,82,42,0.4); background: var(--primary-light); }

/* Radio cards */
.radio-cards { display: flex; flex-direction: column; gap: 12px; }
.rcards-item { position: relative; }
.rcards-item input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.rc-label {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: white;
}
.rcards-item input:checked + .rc-label { border-color: var(--primary); background: var(--primary-light); }
.rc-label:hover { border-color: rgba(232,82,42,0.4); }
.rc-icon { font-size: 1.75rem; flex-shrink: 0; }
.rc-title { font-weight: 600; color: var(--text); margin-bottom: 4px; }
.rc-desc { font-size: 0.875rem; color: var(--text-secondary); }

/* Checkbox */
.cb-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.cb-row input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: var(--primary); }
.cb-row label { font-size: 0.875rem; color: var(--text-secondary); font-weight: 400; margin: 0; cursor: pointer; }
.cb-row label a { color: var(--primary); text-decoration: underline; }

/* Form nav */
.form-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Success */
.success-box { display: none; text-align: center; padding: 3rem 2rem; }
.success-box.show { display: block; }
.success-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(232,82,42,0.3);
}
.success-box h2 { margin-bottom: 1rem; }
.success-box p { max-width: 420px; margin: 0 auto 2rem; }

/* ---- Animations ---- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 4rem 0; }
  .hero-visual { display: none; }
  .hero > .container .hero-inner .hero-content p { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .features-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-secondary { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid, .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 1.5rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .listing-types { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .float-badge { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
