:root {
  --dark-bg: #080810;
  --darker: #0d0d15;
  --card-bg: #15151f;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-glow: rgba(34, 197, 94, 0.15);
  --text-main: #e8e8ee;
  --text-dim: #a8a8b8;
  --text-faint: #68687a;
  --line: rgba(255, 255, 255, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 38px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.menu-item {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s;
}

.menu-item:hover {
  color: var(--green);
}

.cta-btn {
  background: var(--green);
  color: white;
  padding: 10px 22px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
}

.cta-btn:hover {
  background: var(--green-dark);
  transform: scale(1.05);
}

.hero-section {
  padding: 100px 32px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, var(--darker) 100%);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--green-glow), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 auto 28px;
  letter-spacing: -0.03em;
  max-width: 900px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 8s ease-in-out infinite alternate;
}

.title-highlight {
  background: linear-gradient(90deg, var(--green), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  padding: 0 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--green), #3b82f6);
  opacity: 0.4;
  border-radius: 3px;
  z-index: -1;
  transition: all 0.3s ease;
}

.title-highlight:hover {
  transform: translateY(-2px);
}

.title-highlight:hover::after {
  height: 10px;
  opacity: 0.6;
  bottom: 0;
}

.hero-desc {
  font-size: 22px;
  color: #d1d5db;
  line-height: 1.7;
  margin: 0 auto 50px;
  max-width: 750px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.01em;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.action-primary {
  background: var(--green);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.action-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--green-glow);
}

.action-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--line);
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.action-ghost:hover {
  border-color: var(--green);
  background: rgba(34, 197, 94, 0.05);
}


.services-section {
  padding: 100px 32px;
  background: var(--dark-bg);
}

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

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

.section-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
}

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

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-box {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.service-box:hover {
  border-color: var(--green);
  transform: translateX(4px);
}

.service-box:hover .service-accent {
  width: 100%;
}

.service-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(34, 197, 94, 0.15);
  position: absolute;
  top: 20px;
  right: 24px;
}

.service-content {
  position: relative;
  z-index: 1;
}

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

.service-text {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 15px;
}

.service-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--green);
  transition: width 0.4s ease;
}

.trust-section {
  padding: 100px 32px;
  background: var(--darker);
}

.trust-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.trust-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: var(--card-bg);
  border: 3px solid var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-marker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 50%;
}

.timeline-content {
  padding-top: 12px;
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.timeline-content p {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 16px;
}

.report-section {
  padding: 100px 32px;
  background: var(--dark-bg);
}

.report-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--darker) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.report-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  pointer-events: none;
}

.report-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
  position: relative;
  z-index: 1;
}

.report-description {
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.report-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: white;
  padding: 16px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.report-btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--green-glow);
}

.report-btn svg {
  width: 24px;
  height: 24px;
}

.contact-section {
  padding: 100px 32px;
  background: var(--darker);
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

.contact-text {
  color: var(--text-dim);
  font-size: 18px;
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.contact-box {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-box:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
}

.contact-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.contact-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.site-footer {
  background: var(--darker);
  border-top: 1px solid var(--line);
  padding: 60px 32px 32px;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 15px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--green);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: var(--text-faint);
  font-size: 14px;
  margin-bottom: 10px;
}

.credit-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.credit-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-glow);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.credit-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.credit-name {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.credit-by {
  position: relative;
  z-index: 1;
  color: var(--text-dim);
  font-weight: 500;
  transition: all 0.3s ease;
}

.credit-link:hover .credit-name {
  color: #fff;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.credit-link:hover .credit-by {
  color: #fff;
  transform: translateX(2px);
}

.credit-text {
  position: relative;
  z-index: 1;
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.credit-link:hover + .credit-text {
  color: var(--text-main);
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
}

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

/* Why Us Section */
.why-us-section {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.why-us-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--green);
  transition: height 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.why-us-card:hover::before {
  height: 100%;
}

.why-us-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  color: var(--green);
  font-size: 32px;
  transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
  background: var(--green);
  color: white;
  transform: rotateY(180deg);
}

.why-us-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

.why-us-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.why-us-card:hover .why-us-title::after {
  width: 50px;
}

.why-us-text {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.why-us-card:hover .why-us-text {
  color: #e5e7eb;
}

/* Coming Soon Section */
.coming-soon-container {
  text-align: center;
  margin: 50px auto;
  max-width: 600px;
  padding: 40px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.coming-soon-text {
  font-size: 20px;
  color: var(--text-dim);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.loading-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--green);
  animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
}

.dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% { 
    transform: scale(0);
    opacity: 0.5;
  } 
  40% { 
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .coming-soon-container {
    padding: 30px 20px;
    margin: 30px auto;
  }
  
  .coming-soon-text {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 20px;
  }

  .menu-item {
    display: none;
  }

  .hero-section {
    padding: 120px 20px 80px;
  }

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

  .hero-desc {
    font-size: 17px;
  }

  .stats-box {
    padding: 28px;
  }

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

  .trust-timeline::before {
    left: 20px;
  }

  .timeline-item {
    gap: 24px;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .timeline-marker::before {
    width: 14px;
    height: 14px;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
