@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CUSTOM VARIABLES & DESIGN SYSTEM --- */
:root {
  /* Colors */
  --bg-dark: #0A0A0B;
  --bg-dark-sec: #121214;
  --bg-light: #FFFFFF;
  --bg-light-sec: #F8F9FA;
  
  --text-dark: #0E0F0F;
  --text-dark-muted: #52525B;
  --text-light: #F4F4F5;
  --text-light-muted: #A1A1AA;
  
  --accent-blue: #fbae17;
  --accent-purple: #ea580c;
  --accent-gradient: linear-gradient(135deg, #fbae17 0%, #ea580c 100%);
  --accent-gradient-hover: linear-gradient(135deg, #f59e0b 0%, #c2410c 100%);
  --accent-glow: rgba(251, 174, 23, 0.15);
  
  --border-light: rgba(14, 15, 15, 0.08);
  --border-dark: rgba(244, 244, 245, 0.08);
  
  /* Glassmorphism */
  --glass-light-bg: rgba(255, 255, 255, 0.7);
  --glass-light-border: rgba(255, 255, 255, 0.5);
  --glass-dark-bg: rgba(10, 10, 11, 0.75);
  --glass-dark-border: rgba(255, 255, 255, 0.05);
  
  /* Fonts */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1280px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Custom Selection */
::selection {
  background-color: var(--accent-blue);
  color: var(--bg-light);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light-sec);
}
.section-dark-scroll::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--text-dark-muted);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* --- TYPOGRAPHY & LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .section-title { font-size: 48px; }
}

.section-description {
  font-size: 18px;
  color: var(--text-dark-muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-dark .section-description {
  color: var(--text-light-muted);
}

/* --- DYNAMIC CUSTOM CURSOR --- */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}
.custom-cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--accent-purple);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}
.custom-cursor.hovered {
  width: 50px;
  height: 50px;
  background-color: rgba(251, 174, 23, 0.1);
  border-color: var(--accent-purple);
}
@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-dot {
    display: none;
  }
}

/* --- ALTERNATING SECTIONS (BLACK & WHITE THEME) --- */
.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}

/* Grid helper */
.grid {
  display: grid;
  gap: 32px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(251, 174, 23, 0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient-hover);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-fast);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 174, 23, 0.45);
}
.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}
.section-dark .btn-secondary {
  color: var(--text-light);
  border-color: var(--border-dark);
}
.btn-secondary:hover {
  background: rgba(14, 15, 15, 0.05);
  transform: translateY(-2px);
}
.section-dark .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- CARDS (GLASSMORPHISM) --- */
.card {
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.card-light {
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  box-shadow: 0 10px 30px rgba(14, 15, 15, 0.03);
  backdrop-filter: blur(12px);
}
.card-light:hover {
  transform: translateY(-8px);
  border-color: rgba(251, 174, 23, 0.3);
  box-shadow: 0 20px 40px rgba(14, 15, 15, 0.08);
}

.card-dark {
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}
.card-dark:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Glow highlights */
.card-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.card-glow:hover::after {
  opacity: 1;
}

/* --- STICKY GLASSMORPHIC HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  height: 70px;
  background: var(--glass-light-bg);
  border-bottom: 1px solid var(--glass-light-border);
  box-shadow: 0 10px 30px rgba(14, 15, 15, 0.04);
  backdrop-filter: blur(15px);
}
body.section-dark-scroll .header.scrolled,
.header.scrolled-dark {
  background: var(--glass-dark-bg);
  border-bottom: 1px solid var(--glass-dark-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 42px;
  width: auto;
  transition: var(--transition-fast);
}

.nav {
  display: none;
}
@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark-muted);
  position: relative;
  padding: 8px 0;
}
.header.scrolled-dark .nav-link,
.header-dark-state .nav-link {
  color: var(--text-light-muted);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: var(--text-dark);
}
.header.scrolled-dark .nav-link:hover,
.header-dark-state .nav-link:hover {
  color: var(--text-light);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  /*color: var(--text-dark);*/
  font-weight: 600;
}
.header.scrolled-dark .nav-link.active,
.header-dark-state .nav-link.active {
  color: var(--text-light);
}
.nav-link.active::after {
  width: 100%;
}

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
}
@media (min-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.header.scrolled-dark .mobile-nav-toggle span,
.header-dark-state .mobile-nav-toggle span {
  background-color: var(--text-light);
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-light);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: var(--transition-smooth);
}
.mobile-menu.dark {
  background: var(--bg-dark);
}
.mobile-menu.open {
  right: 0;
}

.mobile-menu .nav-link {
  font-size: 24px;
  font-weight: 700;
}

/* --- MODERN FOOTER --- */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr repeat(3, 1fr); }
}

.footer-logo {
  margin-bottom: 24px;
}
.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-info p {
  color: var(--text-light-muted);
  font-size: 15px;
  max-width: 320px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
}
.social-icon:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-light-muted);
  font-size: 15px;
}
.footer-links a:hover {
  color: var(--text-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: var(--text-light-muted);
  font-size: 14px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  color: var(--text-light-muted);
  font-size: 14px;
}
.footer-legal-links a:hover {
  color: var(--text-light);
}

/* --- FORMS & INPUTS --- */
.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-primary);
  font-size: 15px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  background: transparent;
  outline: none;
  transition: var(--transition-fast);
  color: var(--text-dark);
}
.section-dark .form-input {
  border-color: var(--border-dark);
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(251, 174, 23, 0.1);
}
.section-dark .form-input:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.15);
}

.form-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--text-dark-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}
.section-dark .form-label {
  color: var(--text-light-muted);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  background-color: var(--bg-light);
  color: var(--accent-blue);
  transform: translateY(-50%) scale(0.9);
  left: 15px;
}
.section-dark .form-input:focus ~ .form-label,
.section-dark .form-input:not(:placeholder-shown) ~ .form-label {
  background-color: var(--bg-dark);
  color: var(--accent-purple);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}
textarea.form-input ~ .form-label {
  top: 24px;
}

/* --- ACCORDION (FAQ) --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
  overflow: hidden;
}
.section-dark .faq-item {
  border-color: var(--border-dark);
  background: var(--bg-dark-sec);
}

.faq-question {
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
}
.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-dark-muted);
}
.section-dark .faq-answer p {
  color: var(--text-light-muted);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-dark);
  transition: transform 0.3s;
}
.section-dark .faq-icon::before, .section-dark .faq-icon::after {
  background-color: var(--text-light);
}
.faq-icon::before {
  width: 14px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.open {
  border-color: var(--accent-blue);
  box-shadow: 0 4px 20px rgba(251, 174, 23, 0.05);
}
.section-dark .faq-item.open {
  border-color: var(--accent-purple);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.1);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-item.open .faq-icon::after {
  transform: scaleY(0);
}

/* --- LOADER / PAGE TRANSITIONS --- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
  margin-bottom: 20px;
  animation: pulse 1.5s infinite ease-in-out;
}
.loader-logo img {
  height: 60px;
}

.loader-bar {
  width: 150px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: var(--accent-gradient);
  position: absolute;
  top: 0;
  left: 0;
  animation: load 2s forwards cubic-bezier(0.1, 0.8, 0.2, 1);
}

@keyframes pulse {
  0% { transform: scale(0.98); opacity: 0.8; }
  50% { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(0.98); opacity: 0.8; }
}

@keyframes load {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- NAVIGATION DROPDOWN MENU --- */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
  vertical-align: middle;
  transition: var(--transition-fast);
  display: inline-block;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 320px;
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px rgba(14, 15, 15, 0.08);
  backdrop-filter: blur(20px);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header.scrolled-dark .dropdown-menu,
.header-dark-state .dropdown-menu {
  background: var(--glass-dark-bg);
  border-color: var(--glass-dark-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  color: var(--text-dark) !important;
  text-align: left;
}

.header.scrolled-dark .dropdown-item,
.header-dark-state .dropdown-item {
  color: var(--text-light) !important;
}

.dropdown-item:hover {
  background: rgba(251, 174, 23, 0.08);
}
.header.scrolled-dark .dropdown-item:hover,
.header-dark-state .dropdown-item:hover {
  background: rgba(251, 174, 23, 0.12);
}

.dropdown-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  background: rgba(251, 174, 23, 0.1);
  color: var(--accent-blue);
  flex-shrink: 0;
}
.header.scrolled-dark .dropdown-item-icon,
.header-dark-state .dropdown-item-icon {
  background: rgba(251, 174, 23, 0.15);
  color: var(--accent-blue);
}

.dropdown-item-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
}
.header.scrolled-dark .dropdown-item-info h4,
.header-dark-state .dropdown-item-info h4 {
  color: var(--text-light);
}

.dropdown-item-info p {
  font-size: 11px;
  color: var(--text-dark-muted);
}
.header.scrolled-dark .dropdown-item-info p,
.header-dark-state .dropdown-item-info p {
  color: var(--text-light-muted);
}

/* --- MOBILE DROPDOWN --- */
.mobile-dropdown-parent {
  width: 100%;
  text-align: center;
}
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-dropdown-sub {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.02);
  padding: 12px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
}
.mobile-menu.dark .mobile-dropdown-sub {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-dark);
}
.mobile-dropdown-sub.open {
  display: flex;
}
.mobile-dropdown-sub a {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--text-dark-muted) !important;
}
.mobile-menu.dark .mobile-dropdown-sub a {
  color: var(--text-light-muted) !important;
}

/* --- HERO VIDEO BACKGROUND --- */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 20%, rgba(10, 10, 11, 0.85) 90%);
  z-index: 2;
}

/* --- LOGO MARQUEE TICKER --- */
.logo-ticker {
  padding: 36px 0;
  overflow: hidden;
  background: var(--bg-light-sec);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}
.logo-ticker-dark {
  background: var(--bg-dark-sec);
  border-color: var(--border-dark);
  color: var(--text-light-muted);
}

.logo-ticker-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll-ticker 20s linear infinite;
}

.logo-ticker-item {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-ticker-item svg {
  height: 32px;
  fill: var(--text-dark-muted);
  opacity: 0.45;
  transition: var(--transition-fast);
}
.logo-ticker-dark .logo-ticker-item svg {
  fill: var(--text-light-muted);
}

.logo-ticker-item:hover svg {
  opacity: 1;
  fill: var(--accent-blue);
  filter: drop-shadow(0 0 8px rgba(251, 174, 23, 0.3));
}

@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 5)); }
}

/* ==========================================================================
   GET STARTED PLANNER FORM
   ========================================================================== */

.progress-track {
  width: 100%;
  height: 4px;
  background: var(--border-light);
  border-radius: 4px;
  margin-bottom: 40px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--accent-gradient);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-container {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.step-container.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.selection-card {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-fast);
  position: relative;
}

.selection-card:hover {
  border-color: var(--accent-blue);
  background: rgba(251, 174, 23, 0.02);
}

.selection-card input[type="checkbox"],
.selection-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selection-card.selected {
  border-color: var(--accent-blue);
  background: rgba(251, 174, 23, 0.05);
  box-shadow: 0 0 0 1px var(--accent-blue);
}

.selection-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--text-dark);
}

.selection-card p {
  font-size: 13px;
  color: var(--text-dark-muted);
  line-height: 1.4;
}

/* Floating label inputs */
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 16px;
  padding-top: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: var(--transition-fast);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(251, 174, 23, 0.1);
}

.form-label {
  position: absolute;
  top: 18px;
  left: 16px;
  font-size: 15px;
  color: var(--text-dark-muted);
  transition: var(--transition-fast);
  pointer-events: none;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 8px;
  font-size: 11px;
  color: var(--accent-blue);
  font-weight: 600;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark-muted);
}

.badge-item svg {
  color: var(--accent-purple);
}

