html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}
.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;
    min-height: 100vh;
    position: relative;
  }
  .evrnu {
    border-radius: 0;
    background-position: center;
    min-height: 100vh;
  }
}
/* 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: 1400px;
  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.25rem;
  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) {
  .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: 2.5rem;
  }
  .hero-title {
    font-size: 2rem;
    margin-top: 0;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .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: 1079px) {
  .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%;
  }
}
/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
}
.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}
.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  margin-bottom: 1rem;
}
.pricing-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.pricing-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.pricing-card.recommended {
  border-color: #4fd1c5;
  box-shadow: 0 8px 30px rgba(79, 209, 197, 0.2);
}
.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4fd1c5, #38b2ac);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.card-header {
  text-align: center;
  margin-bottom: 2rem;
}
.plan-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.pricing-card.free .plan-badge {
  background: #e2e8f0;
  color: #475569;
}
.pricing-card.basic .plan-badge {
  background: #dbeafe;
  color: #1e40af;
}
.pricing-card.premium .plan-badge {
  background: #fce7f3;
  color: #9f1239;
}
.pricing-card.ultimate .plan-badge {
  background: #f3e8ff;
  color: #6b21a8;
}
.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 1rem 0;
}
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a202c;
}
.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #64748b;
}
.period {
  font-size: 1rem;
  color: #94a3b8;
}
.plan-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.card-features {
  flex: 1;
  margin-bottom: 2rem;
}
.card-features h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #475569;
}
.features-list li i {
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.features-list li .fa-check-circle {
  color: #10b981;
}
.features-list li .fa-times-circle {
  color: #cbd5e1;
}
.features-list li.disabled {
  opacity: 0.5;
}
.card-action {
  margin-top: auto;
}
.btn-plan {
  display: block;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  color: #1a202c;
}
.btn-plan:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
.btn-plan.primary {
  background: #4fd1c5;
  color: #ffffff;
  border-color: #4fd1c5;
}
.btn-plan.primary:hover {
  background: #38b2ac;
  border-color: #38b2ac;
}
@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}
/* Comparison Section */
.comparison-section {
  padding: 5rem 2rem;
  background-color: #ffffff;
}
.comparison-container {
  max-width: 1400px;
  margin: 0 auto;
}
.comparison-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  margin-bottom: 3rem;
}
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}
.comparison-table thead {
  background: #f8f9fa;
}
.comparison-table th {
  padding: 1.5rem 1rem;
  font-weight: 700;
  text-align: center;
  color: #1a202c;
  font-size: 1rem;
  border-bottom: 2px solid #e2e8f0;
}
.comparison-table th.feature-column {
  text-align: left;
  min-width: 250px;
}
.comparison-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s ease;
}
.comparison-table tbody tr:hover {
  background: #f8f9fa;
}
.comparison-table td {
  padding: 1.25rem 1rem;
  text-align: center;
  color: #475569;
}
.comparison-table td.feature-name {
  font-weight: 600;
  text-align: left;
  color: #1a202c;
}
.comparison-table .fa-check.available {
  color: #10b981;
  font-size: 1.25rem;
}
.comparison-table .fa-times.unavailable {
  color: #cbd5e1;
  font-size: 1.25rem;
}
.comparison-table .fa-minus.limited {
  color: #f59e0b;
  font-size: 1.25rem;
}
/* FAQ Section */
.faq-section {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  margin-bottom: 3rem;
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #1a202c;
  transition: background 0.2s ease;
  user-select: none;
}
.faq-question:hover {
  background: #f8f9fa;
}
.faq-question i {
  transition: transform 0.3s ease;
  color: #4fd1c5;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}
/* 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) {
  .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;
  }
}
