* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0d98cf;
}

/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  nav {
    padding: 0 8%;
  }
}

@media (min-width: 1280px) {
  nav {
    padding: 0 12%;
  }
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.logo img {
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo span:first-of-type {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0d98cf;
}

.logo span:last-of-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 152, 207, 0.7);
}

/* Navigation Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 40px;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}

.nav-links li a:hover {
  color: #0d98cf;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #0d98cf;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

/* Join Waitlist Button */
.nav-links li:last-of-type a {
  background: #0d98cf;
  color: white;
  border-radius: 100px;
  padding: 10px 24px;
  box-shadow: 0 2px 8px rgba(13, 152, 207, 0.3);
  transition: all 0.2s;
}

.nav-links li:last-of-type a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13, 152, 207, 0.4);
  color: white;
  background: #0b7db3;
}

.nav-links li:last-of-type a::after {
  display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #0d98cf;
  cursor: pointer;
  padding: 8px;
  font-size: 1.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(13, 152, 207, 0.1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 160px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 180px 8% 100px;
  }
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 24px;
}

.hero-gradient {
  background: linear-gradient(135deg, #ffffff, #e0f3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #0d98cf;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid white;
  color: white;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Hero Affiliate Button */
.hero-btn-affiliate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}

.hero-btn-affiliate:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Ticker Band */
.ticker {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 0;
  overflow: hidden;
  margin: 40px 0 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.666%);
  }
}

/* Stats Section */
.stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 48px 24px;
  min-width: 180px;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }
  
  .stat-divider {
    width: 80px;
    height: 1px;
    margin: 0 auto;
  }
  
  .stat-item {
    padding: 32px 24px;
  }
}

/* Services Section */
.services {
  padding: 100px 5%;
  background: white;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d98cf;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0A0E1A;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.service-card {
  background: #F8F9FA;
  padding: 40px 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
  border-color: #0d98cf;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0A0E1A;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
  font-weight: 400;
}

/* Scroll Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Children Animation */
.stagger-child > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-child.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-child.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-child.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-child.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-child.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-child.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-child.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Service Full Sections */
.service-full-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.service-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 5%;
  text-align: center;
  color: white;
}

.service-number {
  font-size: 1rem;
  font-weight: 600;
  color: #0d98cf;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.service-name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 30px;
}

.service-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.service-trigger:hover {
  background: #0d98cf;
  transform: translateY(-2px);
}

.service-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.service-trigger.active .service-arrow {
  transform: rotate(180deg);
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-top: 30px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0 30px;
  text-align: left;
}

.service-details.active {
  max-height: 500px;
  padding: 30px;
}

.service-details p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.service-details ul {
  list-style: none;
  padding: 0;
}

.service-details li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.service-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d98cf;
}

/* Services Header Section */
.services-header-section {
  padding: 100px 5%;
  background: white;
  text-align: center;
}

.services-header-container {
  max-width: 800px;
  margin: 0 auto;
}

.services-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d98cf;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0A0E1A;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
}

/* About Section */
.about {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-content {
  text-align: left;
}

.about-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d98cf;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0A0E1A;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 40px;
}

.about-founder {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(13, 152, 207, 0.3);
  overflow: hidden;
}

.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-info {
  flex: 1;
}

.about-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A0E1A;
  margin-bottom: 4px;
}

.about-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d98cf;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-bio {
  font-size: 0.938rem;
  color: #666;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-contacts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.about-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #0d98cf;
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(13, 152, 207, 0.1);
  border-radius: 100px;
  transition: all 0.2s;
}

.about-contact-link:hover {
  background: #0d98cf;
  color: white;
  transform: translateY(-2px);
}

.about-image {
  position: relative;
  min-height: 400px;
}

.about-image-placeholder {
  background: linear-gradient(135deg, #0d98cf, #0b7db3);
  border-radius: 30px;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-quote {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  font-style: italic;
}

/* FAQ Section */
.faq {
  padding: 100px 5%;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d98cf;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0A0E1A;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #0A0E1A;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f1f3f5;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d98cf;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 0.938rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0d98cf 0%, #0b7db3 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-btn-primary {
  background: white;
  color: #0d98cf;
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 12px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.cta-contacts {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.2s;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
}

.cta-contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
}

/* Hero Investor Button */
.hero-btn-investor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  color: white;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.hero-btn-investor:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* Footer */
.footer {
  background: #0A0E1A;
  color: white;
  padding: 60px 5% 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  }
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
}

.footer-logo span:first-of-type {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
}

.footer-logo span:last-of-type {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.2s;
  font-size: 1.1rem;
}

.social-link:hover {
  background: #0d98cf;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #0d98cf;
}

.footer-contact li:last-child {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #0d98cf;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: #333;
  white-space: nowrap;
  transition: all 0.2s;
}

.dropdown-menu li a:hover {
  background: #f0f7ff;
  color: #0d98cf;
  padding-left: 25px;
}

.dropdown-menu li a::after {
  display: none;
}