@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

* {
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-sizing: border-box;
}

:root {
  --bg: #0A0A0A;
  --bg-alt: #0F0F0F;
  --orange: #FF5C00;
  --orange-light: #FF8C00;
  --orange-dark: #FF3D00;
  --orange-gradient: linear-gradient(135deg, #FF8C00, #FF3D00);
  --text: #FFFFFF;
  --text-muted: #999999;
  --card-bg: #141414;
  --card-border: rgba(255,92,0,0.12);
  --input-bg: #0D0D0D;
  --input-border: #2A2A2A;
  --shadow-orange: 0 8px 32px rgba(255,92,0,0.12);
  --shadow-dark: 0 8px 32px rgba(0,0,0,0.4);
  --nav-bg: rgba(10,10,10,0.92);
  --footer-bg: #060606;
}

.light-mode {
  --bg: #FFFFFF;
  --bg-alt: #FFF8F5;
  --text: #1A1A1A;
  --text-muted: #666666;
  --card-bg: #FFFFFF;
  --card-border: #FFE8DC;
  --input-bg: #FFF8F5;
  --input-border: #FFD4BC;
  --shadow-orange: 0 8px 32px rgba(255,92,0,0.10);
  --shadow-dark: 0 4px 24px rgba(0,0,0,0.08);
  --nav-bg: rgba(255,255,255,0.92);
  --footer-bg: #FFF3EE;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

::selection {
  background: rgba(255,92,0,0.3);
  color: white;
}

*:focus-visible {
  outline: 2px solid #FF5C00;
  outline-offset: 2px;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb {
  background: #FF5C00;
  border-radius: 3px;
}

.orange-gradient-text {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Logo Styles */
.logo-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
  transform: scale(1);
}

/* Pulse Animation */
.pulse-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  opacity: 0.7;
  animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-container {
    width: 200px;
    height: 200px;
  }
}

/* Splash Screen */
.splash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.splash-container.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ── Navigation Bar ── */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  z-index: 1000;
  transition: background 0.3s ease;
}

.light-mode .navbar {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,92,0,0.15);
  box-shadow: 0 2px 20px rgba(255,92,0,0.08);
}

.light-mode body {
  background: #FEFEFE;
}

.light-mode .services {
  background: linear-gradient(180deg, 
    #FFF5EE 0%, #FFFFFF 100%);
}

.light-mode .services::before {
  background: radial-gradient(ellipse 70% 60% at 50% 30%,
    rgba(255,92,0,0.05) 0%, 
    rgba(255,140,0,0.02) 40%,
    transparent 70%);
}

.light-mode .how-it-works {
  background: linear-gradient(180deg, #FFF3E8 0%, #FFF8F2 100%);
}

.light-mode #partner {
  background: linear-gradient(180deg, #FFF5EC 0%, #FFFFFF 100%);
  position: relative;
}

.light-mode #register {
  background: linear-gradient(180deg, #FFF8F5 0%, #FFFFFF 100%);
  position: relative;
}

.light-mode #register::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,92,0,0.2), transparent);
  pointer-events: none;
}

.light-mode .services-headline {
  text-shadow: none;
}

.nav-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--orange);
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  min-width: 220px;
  padding: 8px 0;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: rgba(255,92,0,0.1);
  color: var(--orange);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: none;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.light-mode .lang-btn {
  border-color: #FF5C00;
  color: #FF5C00;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  min-width: 140px;
  padding: 6px 0;
  z-index: 1000;
  margin-top: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.light-mode .lang-dropdown {
  background: white;
  border-color: #FFE8DC;
  box-shadow: 0 8px 24px rgba(255,92,0,0.1);
}

.lang-menu.show {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lang-option:hover {
  background-color: rgba(255,92,0,0.1);
  color: var(--orange);
}

.light-mode .lang-option {
  color: #444444;
}

.light-mode .lang-option:hover {
  background: #FFF8F5;
  color: #FF5C00;
}

.light-mode .lang-option.active {
  color: #FF5C00;
}

.theme-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background: #0A0A0A;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    z-index: 1000;
    border-bottom: 2px solid rgba(255,92,0,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .light-mode .nav-links {
    background: #FFFFFF;
    border-bottom-color: rgba(255,92,0,0.15);
    box-shadow: 0 8px 24px rgba(255,92,0,0.08);
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .light-mode .nav-links li {
    border-bottom-color: rgba(255,92,0,0.08);
  }

  .nav-links li a {
    display: block;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    width: 100%;
  }

  .light-mode .nav-links li a {
    color: #1A1A1A;
  }

  .nav-links li a:hover {
    color: #FF5C00;
    background: rgba(255,92,0,0.05);
    padding-left: 32px;
    transition: all 0.2s ease;
  }

  .nav-container {
    padding: 0 16px;
    height: 60px;
    gap: 8px;
    position: relative;
  }

  .nav-logo {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .nav-controls {
    gap: 6px;
    margin-left: auto;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 0.78rem;
  }

  .theme-btn {
    font-size: 18px;
    padding: 2px;
  }
}

/* Services Section Styles */
.services {
  position: relative;
  overflow: visible;
  padding: 80px 24px 60px;
  text-align: center;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 55%;
  background: radial-gradient(ellipse 50% 70% at 50% 0%,
    rgba(255,92,0,0.14) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.light-mode .services::before {
  background: radial-gradient(ellipse 50% 60% at 50% 0%,
    rgba(255,92,0,0.04) 0%, transparent 100%);
}

.services > * {
  position: relative;
  z-index: 1;
}

.services-headline {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
  margin-top: 0;
  letter-spacing: -0.5px;
}

.services-highlight {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.light-mode .services-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF8C00, #FF3D00);
  border-radius: 2px;
}

.hero-illustration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
  pointer-events: none;
  color: var(--text);
  transition: opacity 0.3s ease;
  z-index: -1;
  width: 180px;
  height: 198px;
}

.hero-illustration-left {
  left: 2%;
}

.hero-illustration-right {
  right: 2%;
}

.services:hover .hero-illustration {
  opacity: 0.22;
}

.light-mode .hero-illustration {
  opacity: 0.12;
  color: #CC4400;
}

@media (max-width: 1100px) {
  .hero-illustration {
    display: none;
  }
}

.search-row {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto 48px;
  justify-content: center;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  background-color: var(--input-bg);
  border: 1px solid rgba(255,92,0,0.25);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s ease;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,92,0,0.12);
}

.light-mode .search-input {
  background: #FFF8F5;
  border-color: #FFD4BC;
  color: #1A1A1A;
}

.search-btn {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s ease;
}

.search-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(255,92,0,0.35);
}

@media (max-width: 768px) {
  .services {
    padding: 48px 20px 40px;
  }

  .services-headline {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .search-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
    margin: 20px auto 40px;
  }

  .search-input {
    width: 100%;
    min-width: unset;
    padding: 16px 18px;
    font-size: 1rem;
    border-radius: 14px;
  }

  .search-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 1rem;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 4px;
  }

  .service-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .icon-circle {
    width: 46px;
    height: 46px;
    font-size: 22px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .icon-circle i {
    font-size: 22px;
  }

  .card-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .card-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
  }
}

@media (max-width: 360px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service-card {
    padding: 16px 12px;
  }

  .card-title {
    font-size: 0.85rem;
  }

  .card-desc {
    font-size: 0.75rem;
  }
}

.service-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, 
    rgba(255,92,0,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  background: rgba(255,92,0,0.06);
  border-color: rgba(255,92,0,0.3);
  box-shadow: 0 16px 40px rgba(255,92,0,0.10),
              inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-6px);
}

.light-mode .service-card {
  background: white;
  border: 1px solid #FFE8DC;
  box-shadow: 0 4px 20px rgba(255,92,0,0.06);
}

.light-mode .service-card:hover {
  border-color: #FF5C00;
  box-shadow: 0 12px 40px rgba(255,92,0,0.15);
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.service-card:hover .icon-circle {
  transform: scale(1.1) rotate(-3deg);
}

.icon-circle i {
  font-size: 26px;
  color: white;
  line-height: 1;
}

.step-icon i {
  font-size: 2.2rem;
  color: var(--orange);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.light-mode .card-title {
  color: #1A1A1A;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
    font-size: 24px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .card-title {
    font-size: 1.05rem;
  }

  .card-desc {
    font-size: 0.875rem;
  }
}

/* ── How It Works Section ── */
.how-it-works {
  position: relative;
  overflow: visible;
  padding: 80px 24px;
  background: #0E0B09;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50%;
  background: radial-gradient(ellipse 60% 80% at 50% 0%,
    rgba(255,92,0,0.14) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.light-mode .how-it-works {
  background: linear-gradient(180deg, #FFF8F5 0%, #FFF0E8 100%);
}

.light-mode .how-it-works::before {
  background: radial-gradient(ellipse 60% 80% at 50% 0%,
    rgba(255,92,0,0.05) 0%, transparent 100%);
}

.how-heading {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 12px;
}

.how-subheading {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  display: block;
  margin-top: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 48px 20px;
  }

  .how-heading {
    font-size: 1.7rem;
  }

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

.step-card {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  border-color: rgba(255,92,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,92,0,0.15),
              inset 0 1px 0 rgba(255,255,255,0.08);
}

.light-mode .step-card {
  background: white;
  border-color: #FFE8DC;
  box-shadow: 0 4px 16px rgba(255,92,0,0.06);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  position: absolute;
  top: 16px;
  right: 16px;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 0;
}

.light-mode .step-title {
  color: #1A1A1A;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0;
}

/* Tablet responsive */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .how-it-works {
    padding: 48px 24px;
  }

  .how-heading {
    font-size: 1.6rem;
  }

  .how-subheading {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 24px 16px;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-desc {
    font-size: 0.85rem;
  }
}

/* Section 6 - Partner with LOKL */

#partner {
  position: relative;
  overflow: visible ;
  background-color: var(--bg);
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

#partner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 80% 100% at 100% 0%,
    rgba(255,92,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.light-mode #partner {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5EE 100%);
}

.light-mode #partner::before {
  background: radial-gradient(ellipse 80% 100% at 100% 0%,
    rgba(255,92,0,0.04) 0%, transparent 70%);
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtext {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.partner-cards {
  margin-bottom: 80px;
  border-bottom: 1px solid rgba(255,92,0,0.12);
  padding-bottom: 80px;
}

.partner-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.light-mode .partner-cards {
  border-bottom-color: rgba(255,92,0,0.18);
}

@media (max-width: 768px) {
  #partner {
    padding: 48px 20px;
  }

  .section-heading {
    font-size: 1.7rem;
  }

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

.partner-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px 32px 32px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF8C00, #FF3D00);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,92,0,0.25);
  box-shadow: 0 28px 64px rgba(255,92,0,0.18),
              inset 0 1px 0 rgba(255,255,255,0.08);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card-featured {
  border-color: rgba(255,92,0,0.2);
  background: rgba(255,92,0,0.03);
}

.partner-card-featured::before {
  opacity: 1;
  background: linear-gradient(90deg, #FF3D00, #FF8C00, #FF3D00);
}

.light-mode .partner-card {
  background: #FFFFFF;
  border: 1px solid #FFE8DC;
  box-shadow: 0 4px 24px rgba(255,92,0,0.07),
              0 1px 4px rgba(0,0,0,0.04);
}

.light-mode .partner-card:hover {
  border-color: rgba(255,92,0,0.35);
  box-shadow: 0 20px 56px rgba(255,92,0,0.14);
}

.light-mode .partner-card-featured {
  background: linear-gradient(160deg, #FFF8F5, #FFFFFF);
  border-color: rgba(255,92,0,0.25);
}

.partner-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.partner-card-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(255,61,0,0.15));
  border: 1px solid rgba(255,92,0,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF5C00;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-card-icon-wrap {
  background: linear-gradient(135deg, rgba(255,140,0,0.25), rgba(255,61,0,0.25));
  transform: rotate(-4deg) scale(1.05);
}

.light-mode .partner-card-icon-wrap {
  background: linear-gradient(135deg, #FFF0E8, #FFE0D0);
  border-color: #FFD4BC;
}

.partner-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #FF5C00;
  background: rgba(255,92,0,0.1);
  border: 1px solid rgba(255,92,0,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.light-mode .partner-card-tag {
  background: #FFF0E8;
  border-color: #FFD4BC;
}

.partner-card .card-headline {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: var(--text);
}

.partner-card .card-subtext {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 22px 0;
  line-height: 1.6;
}

.partner-card .card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner-card .card-benefits li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  position: relative;
  padding-left: 36px;
  line-height: 1.4;
}

.light-mode .partner-card .card-benefits li {
  background: #FFF8F5;
  border-color: #FFE8DC;
  color: #333;
}

.partner-card .card-benefits li:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23FF5C00" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.partner-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF5C00;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 12px 20px;
  border: 2px solid rgba(255,92,0,0.3);
  border-radius: 12px;
  transition: all 0.25s ease;
  align-self: flex-start;
  margin-top: auto;
}

.partner-card-cta:hover {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  border-color: transparent;
  color: white;
  transform: translateX(4px);
}

.light-mode .partner-card-cta {
  border-color: rgba(255,92,0,0.25);
}

@media (max-width: 768px) {
  .partner-card {
    padding: 24px 20px;
  }
  .partner-card-icon-wrap {
    width: 50px;
    height: 50px;
  }
  .partner-card .card-headline {
    font-size: 1.2rem;
  }
}

/* Part B: Earnings Calculator */
#calculator {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.light-mode #calculator {
  background: linear-gradient(135deg, #FFF8F5, #FFFFFF);
  border-color: #FFD4BC;
}

.calculator-section {
  text-align: center;
}

.sliders-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0 auto 48px;
}

.slider-group {
  text-align: left;
  position: relative;
}

.slider-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.slider-value-display {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.slider-value-bubble {
  position: absolute;
  background: #FF5C00;
  color: white;
  font-weight: bold;
  font-size: 0.85rem;
  padding: 3px 10px;
  border-radius: 12px;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
  bottom: 100%;
  margin-bottom: 8px;
  transform: translateX(-50%);
}

.slider-value-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #FF5C00;
}

.slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #2A2A2A;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FF5C00;
  border: 3px solid white;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.6);
  transition: all 0.15s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 16px rgba(255, 92, 0, 0.8);
}

.slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FF5C00;
  border: 3px solid white;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.6);
  transition: all 0.15s ease;
}

.slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 16px rgba(255, 92, 0, 0.8);
}

.slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #555;
  margin-top: 6px;
}

.calc-inputs-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 200px;
}

.calc-input-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.calc-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,92,0,0.25);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.calc-input-wrapper:focus-within {
  border-color: #FF5C00;
  box-shadow: 0 0 0 3px rgba(255,92,0,0.1);
}

.light-mode .calc-input-wrapper {
  background: #FFF8F5;
  border-color: #FFD4BC;
}

.calc-stepper {
  width: 44px;
  height: 56px;
  background: transparent;
  border: none;
  color: #FF5C00;
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-stepper:hover {
  background: rgba(255,92,0,0.12);
}

.calc-stepper:active {
  background: rgba(255,92,0,0.2);
}

.calc-number-input {
  width: 90px;
  height: 56px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,92,0,0.15);
  border-right: 1px solid rgba(255,92,0,0.15);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  -moz-appearance: textfield;
  padding: 0 4px;
}

.calc-number-input::-webkit-outer-spin-button,
.calc-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.light-mode .calc-number-input {
  color: #1A1A1A;
  border-color: #FFD4BC;
}

.calc-input-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.calc-vs-divider {
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255,92,0,0.4);
  flex-shrink: 0;
  line-height: 1;
  margin: 0;
  align-self: center;
}

@media (max-width: 600px) {
  .calc-inputs-container {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .calc-input-group {
    max-width: 140px;
  }

  .calc-vs-divider {
    font-size: 1.4rem;
    margin: 0;
  }

  .calc-number-input {
    width: 75px;
    font-size: 1.3rem;
    height: 50px;
  }

  .calc-stepper {
    width: 34px;
    height: 50px;
    font-size: 1.2rem;
  }

  .calc-input-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

  .calc-input-hint {
    font-size: 0.72rem;
  }
}

@media (max-width: 380px) {
  .calc-inputs-container {
    gap: 6px;
  }

  .calc-number-input {
    width: 55px;
    font-size: 1.1rem;
  }

  .calc-stepper {
    width: 30px;
  }

  .calc-vs-divider {
    font-size: 1.2rem;
  }
}

.earnings-results {
  background: #080808;
  border: 1px solid rgba(255,92,0,0.15);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 2rem;
  align-items: center;
}

.light-mode .earnings-results {
  background: white;
  border-color: #FFD4BC;
}

.earnings-result-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.earnings-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.earnings-amount {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.earnings-highlight {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.light-mode .earnings-result-item:nth-child(3) .earnings-amount {
  -webkit-text-fill-color: transparent;
}

.light-mode .earnings-amount {
  color: #1A1A1A;
}

.light-mode .earnings-result-item:nth-child(3) .earnings-amount {
  color: #FF5C00;
}

.earnings-divider {
  height: 40px;
  background-color: #2A2A2A;
}

.earnings-note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: #444;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #1E1E1E;
}

@media (max-width: 768px) {
  #calculator {
    padding: 1.5rem;
    border-radius: 18px;
    margin-bottom: 48px;
  }

  .sliders-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .earnings-results {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }

  .earnings-divider {
    display: none;
  }

  .earnings-amount {
    font-size: 1.6rem;
  }
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

/* Part C: Pricing Cards */
#pricing {
  margin-top: 40px;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #pricing {
    margin-top: 40px;
  }

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

.pricing-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,92,0,0.2),
              inset 0 1px 0 rgba(255,255,255,0.08);
}

.pricing-card.featured {
  border: 1px solid rgba(255,92,0,0.35);
  box-shadow: 0 0 0 1px rgba(255,92,0,0.1),
              0 20px 60px rgba(255,92,0,0.15);
}

.light-mode .pricing-card {
  background: white;
  border: 1px solid #FFE8DC;
  box-shadow: 0 4px 24px rgba(255,92,0,0.06);
}

.light-mode .pricing-card.featured {
  border: 2px solid #FF5C00;
  box-shadow: 0 8px 40px rgba(255,92,0,0.15);
}

.savings-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #FF5C00;
  color: white;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(255, 92, 0, 0.5);
  animation: pulse-badge 2s infinite;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-badge.flexible {
  background-color: var(--card-bg);
  border: 2px solid var(--orange);
  color: var(--orange);
}

.price-badge.best-value {
  background-color: var(--orange);
  color: var(--bg);
}

.price-plan-name {
  font-size: 0.85rem;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin: 16px 0 8px 0;
  text-align: center;
}

.pricing-card.featured .price-plan-name {
  color: var(--orange);
}

.price-amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin: 12px 0 24px 0;
}

.price-currency {
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  align-self: flex-start;
  margin-top: 6px;
}

.price-number {
  font-size: 3.2rem;
  font-weight: bold;
  color: white;
  line-height: 1;
}

.light-mode .price-number {
  color: #1A1A1A;
}

.price-period {
  font-size: 0.95rem;
  color: #888;
  font-weight: normal;
  margin-left: 4px;
  align-self: flex-end;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-features li {
  font-size: 0.95rem;
  color: #CCCCCC;
  padding: 10px 0;
  border-bottom: 1px solid #1E1E1E;
  display: flex;
  align-items: center;
  gap: 10px;
}

.light-mode .price-features li {
  color: #444444;
  border-bottom-color: #FFE8DC;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23FF5C00" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 12 4 10"></polyline></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-button {
  padding: 14px 0;
  width: 100%;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button.outline {
  background: transparent;
  border: 2px solid #FF5C00;
  color: #FF5C00;
}

.cta-button.outline:hover {
  background-color: #FF5C00;
  color: white;
}

.cta-button.filled {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  color: white;
  box-shadow: 0 4px 20px rgba(255,92,0,0.35);
}

.cta-button.filled:hover {
  box-shadow: 0 8px 32px rgba(255,92,0,0.5);
  transform: translateY(-1px);
}

.light-mode .cta-button.outline {
  border: 2px solid #FF5C00;
  color: #FF5C00;
  background: transparent;
}

.light-mode .cta-button.outline:hover {
  background: #FF5C00;
  color: white;
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .price-plan-name {
    font-size: 0.85rem;
  }

  .price-currency {
    font-size: 1.2rem;
  }

  .price-number {
    font-size: 2.2rem;
  }

  .price-period {
    font-size: 0.9rem;
  }

  .price-features {
    margin: 20px 0 24px 0;
  }

  .price-features li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .cta-button {
    padding: 12px 0;
    font-size: 0.9rem;
  }

  .savings-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #partner {
    padding: 48px 24px;
  }

  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .section-subtext {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .partner-cards {
    margin-bottom: 60px;
  }

  .partner-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-card {
    padding: 24px 20px;
  }

  .card-icon {
    font-size: 2.2rem;
  }

  .card-headline {
    font-size: 1.2rem;
  }

  .card-subtext {
    font-size: 0.9rem;
  }

  .card-benefits li {
    font-size: 0.85rem;
  }

  #calculator {
    padding: 40px 24px;
    margin-bottom: 60px;
  }

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

  .slider-label {
    font-size: 0.9rem;
  }

  .slider-range-labels {
    font-size: 0.75rem;
  }

  .earnings-results {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .earnings-divider {
    display: none;
  }

  .earnings-label {
    font-size: 0.75rem;
  }

  .earnings-amount {
    font-size: 1.6rem;
  }

  .earnings-note {
    font-size: 0.75rem;
    padding-top: 0;
    border-top: none;
  }

  #pricing {
    margin-top: 40px;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .price-plan-name {
    font-size: 0.85rem;
  }

  .price-currency {
    font-size: 1.2rem;
  }

  .price-number {
    font-size: 2.2rem;
  }

  .price-period {
    font-size: 0.9rem;
  }

  .price-features {
    margin: 20px 0 24px 0;
  }

  .price-features li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .cta-button {
    padding: 12px 0;
    font-size: 0.9rem;
  }

  .savings-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* Section 7 - Register */
.form-panel {}

.form-panel.slide-in {
  animation: slideInForm 0.35s ease forwards;
}

@keyframes slideInForm {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#register {
  position: relative;
  overflow: visible !important;
  padding: 80px 40px;
  max-width: 100% !important;

  background: radial-gradient(ellipse 50% 60% at 50% 50%,
    rgba(255,92,0,0.06) 0%, transparent 100%);
    padding-left: 40px;
  padding-right: 40px;
}

#register .register-tabs,
#register .register-form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

#register::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,92,0,0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

.light-mode #register {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5EC 50%, #FFFFFF 100%);
  position: relative;
}

.light-mode #register::before {
  height: 100%;
  background: radial-gradient(ellipse 70% 60% at 50% 0%,
    rgba(255,92,0,0.04) 0%, transparent 100%);
}

@media (max-width: 768px) {
  #register {
    padding: 48px 16px;
  }
}

.register-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .register-tabs {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .register-tabs {
    gap: 16px;
    padding: 0 8px;
  }
  .register-tab {
    flex: 1;
    min-width: 140px;
    font-size: 0.82rem;
    padding: 11px 16px;
  }
}

.register-tab {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255,92,0,0.4);
  background: transparent;
  color: var(--orange);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.register-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 50px;
  z-index: 0;
}

.register-tab span,
.register-tab {
  position: relative;
  z-index: 1;
}

.register-tab:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,0,0.25);
  color: white;
}

.register-tab:hover::before {
  opacity: 0.15;
}

.register-tab.active {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  border-color: transparent;
  color: #FFFFFF !important;
  box-shadow: 0 6px 24px rgba(255,92,0,0.4);
}

.light-mode .register-tab {
  color: #FF5C00;
  border-color: rgba(255,92,0,0.5);
  background: transparent;
}

.light-mode .register-tab:hover {
  color: #FFFFFF;
  background: rgba(255,92,0,0.1);
  border-color: #FF5C00;
}

.light-mode .register-tab.active {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  color: #FFFFFF !important;
  border-color: transparent;
}

.register-tab.active::before {
  opacity: 0;
}

@keyframes tabGlow {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(255,92,0,0.4),
                0 0 0 0 rgba(255,92,0,0.3);
  }
  50% {
    box-shadow: 0 6px 24px rgba(255,92,0,0.4),
                0 0 0 8px rgba(255,92,0,0);
  }
}

.register-tab:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {
  .register-tab {
    flex: 1;
    text-align: center;
    font-size: 0.82rem;
    padding: 10px 12px;
    min-width: 100px;
  }
}

.register-form {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.05);
  display: none;
}

.light-mode .register-form {
  background: white;
  border-color: #FFE8DC;
  box-shadow: 0 4px 24px rgba(255,92,0,0.06);
}

.register-form.active {
  display: block;
}

@media (max-width: 768px) {
  .register-form {
    padding: 1.5rem;
    border-radius: 18px;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: #AAAAAA;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.register-form input[type="text"],
.register-form input[type="tel"],
.register-form input[type="email"],
.register-form select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s ease;
}

.register-form input:focus,
.register-form select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,92,0,0.1);
}

.light-mode .register-form input[type="text"],
.light-mode .register-form input[type="tel"],
.light-mode .register-form input[type="email"],
.light-mode .register-form select {
  background: #FFF8F5;
  border-color: #FFD4BC;
  color: #1A1A1A;
}

.light-mode .register-form input::placeholder,
.light-mode .register-form input[type="tel"]::placeholder,
.light-mode .register-form input[type="email"]::placeholder {
  color: #BBBBBB;
}

@media (max-width: 768px) {
  .register-form input[type="text"],
  .register-form input[type="tel"],
  .register-form input[type="email"],
  .register-form select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}

.register-form input[type="text"]::placeholder,
.register-form input[type="tel"]::placeholder,
.register-form input[type="email"]::placeholder {
  color: #555;
}

.register-form input.error-border,
.register-form select.error-border {
  border-color: #EF4444 !important;
}

.checkbox-group.error-border {
  border-left: 3px solid #EF4444;
  padding-left: 8px;
  margin-left: -11px;
}

.register-form select {
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 8L10 13L15 8" stroke="%23FF5C00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.register-form select option {
  background-color: #1A1A1A;
  color: white;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.register-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #AAAAAA;
  margin: 0;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label a {
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.checkbox-label a:hover {
  opacity: 0.8;
}

.plan-cards {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .plan-cards {
    flex-direction: column;
    gap: 10px;
  }
}

.plan-card {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--input-border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: var(--input-bg);
}

.plan-card:hover {
  border-color: var(--orange);
}

.plan-card.selected {
  border-color: var(--orange);
  background: rgba(255,92,0,0.06);
}

.light-mode .plan-card {
  background: #FFF8F5;
  border-color: #FFD4BC;
}

.light-mode .plan-card.selected {
  border-color: #FF5C00;
  background: #FFF0E8;
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 0.9rem;
  color: #AAAAAA;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
}

.light-mode .plan-price {
  color: #1A1A1A;
}

.plan-price span {
  font-size: 0.85rem;
  color: #AAAAAA;
}

.error-message {
  display: block;
  color: #EF4444;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 1.2rem;
}

.register-button {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  color: white;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 20px rgba(255,92,0,0.3);
}

.register-button:hover:not(:disabled) {
  box-shadow: 0 8px 32px rgba(255,92,0,0.45);
  transform: translateY(-1px);
}

.register-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .register-button {
    padding: 14px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
}

.success-card {
  background-color: #1A1A1A;
  border: 1px solid #22C55E;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.success-card.partner-success {
  border-color: var(--orange);
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1rem;
}

.success-card.partner-success .success-icon {
  background-color: var(--orange);
}

.success-headline {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin: 0 0 12px 0;
}

.success-text {
  font-size: 0.95rem;
  color: #AAAAAA;
  margin: 0;
  line-height: 1.6;
}

/* Mobile Responsive - Section 7 */
@media (max-width: 768px) {
  #register {
    padding: 48px 24px;
  }

  .register-tabs {
    gap: 12px;
    margin-bottom: 2rem;
  }

  .register-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .register-form {
    padding: 2rem;
  }

  .plan-cards {
    flex-direction: column;
  }

  .register-button {
    padding: 12px;
    font-size: 0.95rem;
  }

  .success-card {
    padding: 2rem;
  }
}
/* Language selector dropdown */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-switcher {
  position: relative;
  z-index: 99999;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  overflow: hidden;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 99999;
}

.light-mode .lang-dropdown {
  background: white;
  border-color: #FFE8DC;
  box-shadow: 0 8px 24px rgba(255,92,0,0.1);
}

.lang-switcher.open .lang-dropdown {
  display: block;
  animation: dropdownFade 0.2s ease forwards;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: #CCCCCC;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lang-option:hover {
  background: #252525;
  color: white;
}

.light-mode .lang-option {
  color: #444444;
}

.light-mode .lang-option:hover {
  background: #FFF8F5;
  color: #FF5C00;
}

.light-mode .lang-option.active {
  color: #FF5C00;
}

/* Mobile Responsive - Tablet and below */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1.5rem 0;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-heading {
    font-size: 0.8rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }
}

/* Mobile Responsive - Small screens */
@media (max-width: 480px) {
  .footer {
    padding: 2rem 1rem 0;
  }

  .social-icon {
    padding: 7px 9px;
  }
}



/* ========================================
   SECTION 8: FOOTER & COOKIE BANNER
   ======================================== */

/* Footer */
.footer {
  position: relative;
  overflow: visible;
  background: var(--footer-bg);
  padding: 4rem 2rem 0;
  border-top: 1px solid rgba(255,92,0,0.15);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40%;
  background: radial-gradient(ellipse 50% 100% at 50% 0%,
    rgba(255,92,0,0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.light-mode .footer {
  background: #FFF3E8;
  border-top-color: #FFD4BC;
}

.light-mode .footer::before {
  background: radial-gradient(ellipse 50% 100% at 50% 0%,
    rgba(255,92,0,0.04) 0%, transparent 100%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #FF5C00;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.footer-tagline {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.light-mode .footer-tagline {
  color: #888;
}

.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #141414;
  border-radius: 10px;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,92,0,0.1);
}

.social-icon:hover {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
  border-color: transparent;
  transform: translateY(-2px);
}

.light-mode .social-icon {
  background: #FFE8DC;
  border-color: #FFD4BC;
}

.footer-heading {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  margin-bottom: 1rem;
}

.light-mode .footer-heading {
  color: #1A1A1A;
}

.footer-contact-heading {
  margin-top: 2rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.light-mode .footer-links a {
  color: #666;
}

.footer-contact-item {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.light-mode .footer-contact-item {
  color: #666;
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding: 1.25rem 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 1rem 0;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}

.footer-bottom-left,
.footer-bottom-right {
  color: #888;
  font-size: 0.85rem;
}

.light-mode .footer-bottom-left,
.light-mode .footer-bottom-right {
  color: #888;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  border-top: 2px solid #FF5C00;
  padding: 1rem 2rem;
  z-index: 99998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.light-mode .cookie-banner {
  background: white;
  border-top: 2px solid #FF5C00;
  box-shadow: 0 -4px 24px rgba(255,92,0,0.08);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .cookie-content {
    flex-direction: column;
    align-items: center;
  }
}

.cookie-text {
  color: #CCCCCC;
  font-size: 0.9rem;
  flex: 1;
}

.light-mode .cookie-text {
  color: #444444;
}

.cookie-text a {
  color: #FF5C00;
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-actions {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.cookie-btn.accept {
  background: #FF5C00;
  color: white;
}

.cookie-btn.accept:hover {
  background: #e05200;
}

.cookie-btn.decline {
  background: transparent;
  color: #888;
  border: 1px solid #333;
}

.cookie-btn.decline:hover {
  border-color: #888;
  color: #CCC;
}

.light-mode .cookie-btn.accept {
  background: linear-gradient(135deg, #FF8C00, #FF3D00);
}

.light-mode .cookie-btn.decline {
  border-color: #FFD4BC;
  color: #888;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem 1.25rem;
  }

  .cookie-text {
    font-size: 0.85rem;
  }

  .cookie-btn {
    flex: 1;
    padding: 11px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .cookie-btn {
    width: 100%;
  }
}

/* Responsive: Tablet (below 768px) */
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer {
    padding: 2rem 2rem 0;
  }

  .footer-columns {
    margin-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

/* Responsive: Mobile (below 480px) */
@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-heading {
    margin-top: 0;
  }

  .footer-column:not(:first-child) .footer-heading {
    margin-top: 0;
  }

  .footer {
    padding: 2rem 1rem 0;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: center;
  }

  .cookie-text {
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ── Section Illustrations ── */
.section-illustration,
.hero-illustration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease;
}

/* All content inside sections must sit above illustrations */
.how-it-works > *:not(.section-illustration),
#register > *:not(.section-illustration),
#partner > *:not(.section-illustration),
.footer-container,
.services > *:not(.hero-illustration),
.partner-cards {
  position: relative;
  z-index: 2;
}

/* Hero section illustrations */
.hero-illustration {
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: white;
}

.hero-illustration-left { left: 2%; }
.hero-illustration-right { right: 2%; }

.services:hover .hero-illustration { opacity: 0.85; }

/* How It Works */
.illustration-howitworks-left {
  left: 1%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: white;
}

.illustration-howitworks-right {
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: white;
}

.how-it-works:hover .illustration-howitworks-left,
.how-it-works:hover .illustration-howitworks-right {
  opacity: 0.32;
}

/* Register */
.illustration-register-left {
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.35;
  color: rgba(255,255,255,0.9);
  z-index: 0 !important;
  pointer-events: none;
}

#register:hover .illustration-register-left {
  opacity: 0.6;
}

/* Partner */
.illustration-partner-right {
  position: absolute;
  right: 2%;
  top: 30%;
  z-index: 0 !important;
  opacity: 0.35;
  color: rgba(255, 255, 255, 0.9);
   pointer-events: none;
}

#partner:hover .illustration-partner-right {
  opacity: 0.6;
}

/* Footer */
.illustration-footer-left {
  left: 2%;
  bottom: 60px;
  opacity: 0;
  color: white;
}

.footer:hover .illustration-footer-left {
  opacity: 0.26;
}

/* LIGHT MODE — black strokes so illustrations are visible on white/warm backgrounds */
.light-mode .hero-illustration {
  color: rgba(0,0,0,0.75);
}

.light-mode .services:hover .hero-illustration {
  opacity: 0.22;
}

.light-mode .section-illustration {
  color: rgba(0,0,0,0.75);
}

.light-mode .how-it-works:hover .illustration-howitworks-left,
.light-mode .how-it-works:hover .illustration-howitworks-right,
.light-mode #register:hover .illustration-register-left,
.light-mode #partner:hover .illustration-partner-right {
  opacity: 0.32;
}

.light-mode .footer:hover .illustration-footer-left {
  opacity: 0.20;
}

/* Always show at low opacity even without hover on desktop */
@media (min-width: 1101px) {
  .hero-illustration { opacity: 0.25; }
  .illustration-howitworks-left,
  .illustration-howitworks-right { opacity: 0.22; }
  .illustration-register-left { opacity: 0.22; }
  .illustration-partner-right { opacity: 0.22; }
  .illustration-footer-left { opacity: 0.22; }

  .light-mode .hero-illustration { opacity: 0.15; }
  .light-mode .illustration-howitworks-left,
  .light-mode .illustration-howitworks-right { opacity: 0.14; }
  .light-mode .illustration-register-left { color: #1A1A1A; opacity: 0.22; }
  .light-mode .illustration-partner-right { color: #1A1A1A; opacity: 0.22; }
  .light-mode .illustration-footer-left { opacity: 0.12; }
}

/* Hide on small screens */
@media (max-width: 1100px) {
  .section-illustration,
  .hero-illustration {
    display: none;
  }
}

/* Illustration visibility fix */
.section-illustration,
.hero-illustration {
  z-index: 0 !important;
  color: rgba(255,255,255,0.9);
}

.light-mode .section-illustration,
.light-mode .hero-illustration {
  color: #1A1A1A !important;
  opacity: 0.25;
}

.how-it-works:hover .section-illustration,
#register:hover .section-illustration,
#partner:hover .section-illustration,
.services:hover .hero-illustration {
  opacity: 0.55;
}

.light-mode .how-it-works:hover .section-illustration,
.light-mode #register:hover .section-illustration,
.light-mode #partner:hover .section-illustration,
.light-mode .services:hover .hero-illustration {
  opacity: 0.45;
}

/* illustration sits outside the form card width */
#register {
  position: relative;
  overflow: visible !important;
}

.illustration-register-left {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3 !important;
  opacity: 0.4;
  color: rgba(255,255,255,0.95);
  pointer-events: none;
}

.light-mode .illustration-register-left {
  color: #1A1A1A;
  opacity: 0.22;
}

#register:hover .illustration-register-left {
  opacity: 0.65;
}

.light-mode #register:hover .illustration-register-left {
  opacity: 0.38;
}

/* Same fix for partner */
#partner {
  position: relative;
  overflow: visible !important;
}

.illustration-partner-right {
  position: absolute;
  right: 20px;
  top: 30%;
  z-index: 3 !important;
  opacity: 0.4;
  color: rgba(255,255,255,0.95);
  pointer-events: none;
}

.light-mode .illustration-partner-right {
  color: #1A1A1A;
  opacity: 0.22;
}

#partner:hover .illustration-partner-right {
  opacity: 0.65;
}

.light-mode #partner:hover .illustration-partner-right {
  opacity: 0.38;
}

/* Center the section tag and heading back to middle */
#register .section-tag,
#register .section-heading,
#register .section-subtext,
#register .register-tabs {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Fix illustration vertical position — show full illustration */
.illustration-register-left {
  top: 40% !important;
  transform: translateY(-40%) !important;
}