:root {
  --primary: #f4c45a;
  --secondary: #2dd4bf;
  --dark: #0b1420;
  --dark-2: #152536;
  --dark-3: #1c3348;
  --text: #f3f6fb;
  --text-muted: #b7c3d4;
  --success: #2ec27e;
  --border: rgba(244, 196, 90, 0.16);
}

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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  background:
    radial-gradient(1200px 480px at 10% -10%, rgba(45, 212, 191, 0.12), transparent 50%),
    radial-gradient(900px 420px at 100% 0%, rgba(244, 196, 90, 0.08), transparent 46%),
    var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fixed Header */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11, 20, 32, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  z-index: 1000;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
  max-width: 88px;
  overflow: hidden;
}

.logo-wrapper picture {
  display: block;
  width: 80px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--dark-2);
  color: var(--primary);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background: var(--dark);
  color: var(--primary);
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #e8b84a);
  color: #132033;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 196, 90, 0.35);
}

.btn-success {
  background: linear-gradient(135deg, var(--success), #26a96d);
  color: #062016;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
}

/* Hero Section - Grid Layout */
.hero-area {
  min-height: 100vh;
  width: 100%;
  padding: 150px 0 80px;
  position: relative;
}

.hero-area .container-fluid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(45, 212, 191, 0.12), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(244, 196, 90, 0.1), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: var(--dark-2);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

/* Hero Image Container */
.hero-visual {
  position: relative;
  z-index: 2;
}

.image-showcase {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark-2);
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(45, 212, 191, 0.12);
  transition: all 0.4s ease;
}

.image-showcase:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(45, 212, 191, 0.16);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-caption {
  padding: 20px;
  background: linear-gradient(180deg, transparent, var(--dark-2));
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.trust-badges {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-item {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Features Grid */
.features-section {
  padding: 80px 0;
  background: var(--dark-2);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 40px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu.mobile-active {
    display: flex;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    align-items: stretch;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .nav-menu.mobile-active .nav-link {
    justify-content: space-between;
  }

  .nav-menu.mobile-active .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
    display: none;
  }

  .nav-menu.mobile-active .nav-item.active .nav-dropdown {
    display: block;
  }
}

@media (max-width: 968px) {
  .hero-area .container-fluid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-area {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .header-actions {
    flex-direction: row;
    gap: 8px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

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

  .hero-cta .btn,
  .cta-section .btn {
    width: 100%;
  }

  .header-content {
    gap: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .section-title {
    font-size: 26px;
  }

  .cta-title {
    font-size: 28px;
  }

  .brand-text {
    display: none;
  }

  .container-fluid {
    padding: 0 14px;
  }
}
