html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  background-color: #f8f9fa;
  font-family: Arial, sans-serif;
}
/* Navigation */
.nav {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 1;
}
.evrnu {
  border-radius: 0.75rem;
  background-image: url("/img/content.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .nav {
    padding: 0.4rem;
  }
  .evrnu {
    border-radius: 0.6rem;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 0;
    height: auto;
  }
  .evrnu {
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
}
/* Hero Section */
.hero-section {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 2rem;
  padding-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  z-index: 10;
}
.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  margin-top: -3rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.btn-hero-register {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #4fd1c5;
  color: #0a1f1c;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(79, 209, 197, 0.3);
}
.btn-hero-register:hover {
  background: #5ee7da;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(79, 209, 197, 0.4);
}
.promo-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid rgba(79, 209, 197, 0.3);
  border-radius: 0.75rem;
  margin-top: 1rem;
  max-width: 100%;
  box-sizing: border-box;
}
.promo-box i {
  font-size: 1.5rem;
  color: #4fd1c5;
  flex-shrink: 0;
}
.promo-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
}
.contact-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}
.contact-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 209, 197, 0.5);
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(79, 209, 197, 0.2) 0%,
    rgba(79, 209, 197, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 209, 197, 0.3);
}
.stat-icon i {
  font-size: 1.5rem;
  color: #4fd1c5;
}
.stat-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
@media (max-width: 768px) {
  .nav {
    padding: 0;
    height: auto;
  }
  .evrnu {
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  .hero-section {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 2rem 1.5rem 2rem;
    min-height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-left {
    gap: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-right {
    display: flex;
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.5rem;
    margin-top: 0;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  .btn-hero-register {
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  .contact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-stat-card {
    padding: 1.5rem 1rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1040px) {
  .hero-section {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 3rem 1.5rem 2rem;
    min-height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-left {
    gap: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-right {
    display: flex;
    width: 100%;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.5rem;
    margin-top: 0;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .contact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
  }
}
/* Roadmap Intro Section */
.roadmap-intro-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #4fd1c5, #38b2ac);
}
.intro-container {
  max-width: 1200px;
  margin: 0 auto;
}
.intro-content {
  text-align: center;
  color: #ffffff;
}
.intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.intro-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.intro-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
}
.intro-stat i {
  font-size: 2.5rem;
  color: #ffffff;
}
.stat-info strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.stat-info span {
  font-size: 0.9rem;
  opacity: 0.9;
}
/* Roadmap Section */
.roadmap-section {
  padding: 5rem 2rem;
  background-color: #ffffff;
}
.roadmap-container {
  max-width: 1000px;
  margin: 0 auto;
}
.roadmap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.roadmap-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}
.roadmap-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid #e2e8f0;
  background: transparent;
  border-radius: 0.5rem;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: #4fd1c5;
  color: #4fd1c5;
}
.filter-btn.active {
  background: #4fd1c5;
  border-color: #4fd1c5;
  color: #ffffff;
}
/* Timeline */
.timeline {
  position: relative;
}
.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.marker-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  z-index: 2;
  position: relative;
}
.marker-icon.completed {
  background: linear-gradient(135deg, #10b981, #059669);
}
.marker-icon.in-progress {
  background: linear-gradient(135deg, #4fd1c5, #38b2ac);
  animation: pulse 2s infinite;
}
.marker-icon.planned {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.marker-icon.idea {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.marker-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(to bottom, #e2e8f0, transparent);
  margin-top: 0.5rem;
}
.timeline-item:last-child .marker-line {
  display: none;
}
.timeline-content {
  flex: 1;
  padding-bottom: 2rem;
}
.timeline-card {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}
.timeline-card:hover {
  border-color: #4fd1c5;
  box-shadow: 0 8px 30px rgba(79, 209, 197, 0.15);
}
.timeline-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(79, 209, 197, 0.05),
    rgba(56, 178, 172, 0.05)
  );
  border-color: #4fd1c5;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.header-left {
  flex: 1;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.status-badge.completed {
  background: #d1fae5;
  color: #059669;
}
.status-badge.in-progress {
  background: #ccfbf1;
  color: #0d9488;
}
.status-badge.planned {
  background: #fef3c7;
  color: #d97706;
}
.status-badge.idea {
  background: #ede9fe;
  color: #7c3aed;
}
.item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  line-height: 1.3;
}
.quarter {
  padding: 0.4rem 1rem;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.card-body {
  color: #475569;
}
.item-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
/* Progress Bar */
.progress-bar {
  margin-bottom: 1.5rem;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
}
.progress-label strong {
  color: #4fd1c5;
  font-weight: 700;
}
.progress-track {
  height: 8px;
  background: #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4fd1c5, #38b2ac);
  border-radius: 1rem;
  transition: width 0.3s ease;
}
.item-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.feature-tag {
  padding: 0.4rem 0.85rem;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
/* Milestones */
.item-milestones {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
.item-milestones h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 1rem 0;
}
.milestones-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.milestones-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #475569;
}
.milestones-list li i {
  font-size: 1.1rem;
}
.milestones-list li.completed i {
  color: #10b981;
}
.milestones-list li.in-progress i {
  color: #4fd1c5;
}
.milestones-list li.pending i {
  color: #cbd5e1;
}
.item-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #64748b;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.meta-item i {
  color: #94a3b8;
}
/* Suggest Feature Section */
.suggest-feature-section {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
}
.suggest-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.suggest-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}
.suggest-description {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.suggest-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #e2e8f0;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #4fd1c5;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-submit-idea {
  width: 100%;
  padding: 1rem;
  background: #4fd1c5;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.btn-submit-idea:hover {
  background: #38b2ac;
  transform: translateY(-2px);
}
.popular-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.popular-title i {
  color: #f59e0b;
}
.popular-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.popular-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid #e2e8f0;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}
.popular-item:hover {
  border-color: #4fd1c5;
  transform: translateX(5px);
}
.popular-votes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #4fd1c5;
}
.popular-votes i {
  font-size: 1.25rem;
}
.popular-votes strong {
  font-size: 1.25rem;
  font-weight: 700;
}
.popular-content {
  flex: 1;
}
.popular-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 0.5rem 0;
}
.popular-content p {
  color: #64748b;
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
}
.popular-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
}
.popular-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
@media (max-width: 968px) {
  .suggest-container {
    grid-template-columns: 1fr;
  }
}
/* Newsletter Section */
.newsletter-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a1f1c 0%, #1a3a35 100%);
}
.newsletter-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.newsletter-content {
  flex: 1;
  color: #ffffff;
}
.newsletter-icon {
  font-size: 3rem;
  color: #4fd1c5;
  margin-bottom: 1rem;
}
.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.newsletter-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.newsletter-form {
  flex: 1;
  display: flex;
  gap: 0.75rem;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95rem;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-input:focus {
  outline: none;
  border-color: #4fd1c5;
  background: rgba(255, 255, 255, 0.15);
}
.btn-newsletter {
  padding: 1rem 2rem;
  background: #4fd1c5;
  color: #0a1f1c;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-newsletter:hover {
  background: #5ee7da;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .timeline-item {
    gap: 1rem;
  }
  .marker-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .newsletter-container {
    flex-direction: column;
    gap: 2rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
}
/* Trust Section */
.trust-section {
  background: #f8f9fa;
  padding: 3rem 2rem;
  margin: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
}
.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 1px solid #e0e0e0;
}
.trust-item p {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}
/* Mobile responsive styles */
@media (max-width: 768px) {
  .nav {
    padding: 0;
    height: auto;
    min-height: 100vh;
  }
  .evrnu {
    border-radius: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .trust-section {
    padding: 2rem 1rem;
    margin: 0;
    border-radius: 0;
  }
  .trust-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .trust-item {
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding: 1rem 0 0 0;
  }
  .trust-item:first-child {
    border-top: none;
  }

  .timeline-item {
    padding-left: 2rem;
  }
  .timeline::before {
    left: 0.5rem;
  }
  .timeline-marker {
    left: 0.25rem;
  }
}
@media (max-width: 480px) {
  .timeline-marker {
    display: none;
  }
  .timeline-item {
    padding-left: 0;
    margin-bottom: 0;
  }
}
