/* LBN Connect - Main Stylesheet */

:root {
  --color-primary: #c8102e;
  --color-primary-dark: #a00d25;
  --color-primary-light: #e8324a;
  --color-dark: #1a1a2e;
  --color-dark-soft: #2d2d44;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-text-light: #999999;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-bg-dark: #1a1a2e;
  --color-border: #e0e0e0;
  --color-success: #28a745;
  --color-error: #dc3545;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --container-width: 1200px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

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

.btn-light:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
}

.logo-mark {
  background: var(--color-primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 18px;
  letter-spacing: 1px;
}

.logo-text {
  color: var(--color-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all 0.3s;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 50%, #3d1a24 100%);
  color: #fff;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200, 16, 46, 0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

/* Stats Bar */
.stats-bar {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 48px;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.intro-section {
  background: var(--color-bg-alt);
}

.how-it-works {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.how-it-works p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 15px;
}

/* Chapter Finder */
.chapter-finder-card {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  color: #fff;
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.chapter-finder-card h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.chapter-finder-card p {
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.region-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.region-form-row {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.region-form select {
  flex: 1;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 15px;
  background: #fff;
  color: var(--color-text);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  padding: 40px 32px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-2px);
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.3;
  display: block;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.benefit-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Experience */
.experience-section {
  background: var(--color-bg-alt);
}

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

.experience-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.experience-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.experience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.experience-card p {
  color: var(--color-text-muted);
  font-size: 15px;
}

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

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.testimonial-card p {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card strong {
  color: var(--color-dark);
}

.testimonial-card span {
  font-size: 14px;
  color: var(--color-text-light);
}

/* CTA Banner */
.cta-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 60px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.cta-banner p {
  opacity: 0.9;
}

/* FAQs */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-dark);
  transition: background 0.2s;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: var(--color-bg-alt);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-hero-sm {
  padding: 60px 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
}

/* Join Steps */
.join-steps {
  max-width: 800px;
  margin: 0 auto;
}

.join-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.join-step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.join-step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.join-step-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Rules */
.rules-section {
  background: var(--color-bg-alt);
}

.rules-list {
  list-style: none;
  max-width: 800px;
}

.rules-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  color: var(--color-text);
}

.rules-list li:last-child {
  border-bottom: none;
}

.rule-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Registration Form */
.registration-section {
  background: var(--color-bg-alt);
}

.registration-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.registration-header {
  text-align: center;
  margin-bottom: 32px;
}

.registration-header h2 {
  font-size: 1.75rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.registration-header p {
  color: var(--color-text-muted);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-dark);
  font-size: 14px;
}

.required {
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  text-align: center;
  margin-top: 8px;
}

/* Alerts */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 15px;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--color-error);
}

.alert-error ul {
  margin-top: 8px;
  margin-left: 20px;
}

/* Success Card */
.success-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--color-success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

.success-card h2 {
  font-size: 1.75rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.success-card > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.success-details {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.detail-value {
  color: var(--color-dark);
  font-weight: 600;
  text-align: right;
  word-break: break-all;
  max-width: 60%;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Content Pages */
.content-page {
  max-width: 800px;
}

.content-page h2 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin: 32px 0 12px;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-list {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--color-text-muted);
}

.content-list li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-cta {
  margin-top: 40px;
  text-align: center;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 1.75rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-card {
  background: var(--color-bg-alt);
  padding: 32px;
  border-radius: var(--radius-lg);
}

.contact-card h3 {
  margin-bottom: 20px;
  color: var(--color-dark);
}

.contact-card .btn {
  margin-bottom: 12px;
}

/* Footer */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

/* Admin Styles */
.admin-body {
  background: var(--color-bg-alt);
  min-height: 100vh;
}

.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-login-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  width: 100%;
  max-width: 420px;
}

.admin-login-header {
  text-align: center;
  margin-bottom: 32px;
}

.admin-login-header .logo-mark {
  display: inline-block;
  margin-bottom: 16px;
}

.admin-login-header h1 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.admin-login-header p {
  color: var(--color-text-muted);
  font-size: 14px;
}

.admin-login-form .form-group {
  margin-bottom: 16px;
}

.admin-login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
}

.admin-header {
  background: var(--color-dark);
  color: #fff;
  padding: 16px 0;
}

.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
}

.admin-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-header .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.admin-header .btn-outline:hover {
  background: #fff;
  color: var(--color-dark);
}

.admin-main {
  padding: 40px 0;
}

.admin-page-header {
  margin-bottom: 32px;
}

.admin-page-header h1 {
  font-size: 1.75rem;
  color: var(--color-dark);
}

.admin-page-header p {
  color: var(--color-text-muted);
  margin-top: 4px;
}

.admin-empty {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--color-text-muted);
}

.admin-table-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th {
  background: var(--color-bg-alt);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap;
  border-bottom: 2px solid var(--color-border);
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: top;
}

.admin-table tr:hover td {
  background: var(--color-bg-alt);
}

.admin-table .nowrap {
  white-space: nowrap;
}

.admin-table .message-cell {
  max-width: 200px;
  word-break: break-word;
}

.admin-table a {
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid,
  .benefits-grid,
  .experience-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-nav ul li {
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav ul a {
    display: block;
    padding: 14px 0;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .registration-card {
    padding: 24px;
  }

  .region-form-row {
    flex-direction: column;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .success-actions {
    flex-direction: column;
  }

  .join-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
