/* Scrolled Header States */
.scrolled-header {
  background-color: white !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.scrolled-header .nav-link,
.scrolled-header a[href^="#"] {
  color: #202226 !important;
}

.scrolled-header .nav-link:hover,
.scrolled-header a[href^="#"]:hover {
  color: #ed8e00 !important;
}

.scrolled-header .language-selector {
  border-color: #9ca3af !important;
  color: #202226 !important;
}

.scrolled-header .dtp-logo {
  filter: brightness(0) !important;
}

.scrolled-header #mobile-menu-button {
  color: #202226 !important;
}

.scrolled-header #mobile-menu-button:hover {
  background-color: #f3f4f6 !important;
}

#mobile-menu-button {
  color: #ffffff;
}

#mobile-menu-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Slider Styles */
.slider-container {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  visibility: hidden;
  min-height: 500px;
}

.slider-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 1s ease-in-out;
  min-height: 500px;
}

.slider-nav {
  opacity: 0;
  transform: translate(0, -50%) scale(0.9);
  transition: all 0.3s ease-in-out;
}

.slider-container:hover .slider-nav {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.slider-dot.active {
  opacity: 1;
  transform: scale(1.2);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, Roboto, Helvetica, sans-serif;
  background: #fff;
  color: #202226;
  line-height: 1.5;
}

/* Header */
.header {
  background: #04357c;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-box {
  width: 100px;
  height: 100px;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 4px;
}

.logo-box svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #04357c;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 0;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ed8e00;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  height: 4px;
  background: #f8b84a;
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-trial {
  padding: 10px 20px;
  border-radius: 4px;
  background: #2ecc71;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-trial:hover {
  background: #27ae60;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.language-selector:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dtp-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #7f61f8 0%, #9b7fff 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight-purple {
  color: #04357c;
}

.hero-title .highlight-red {
  color: #ed8e00;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #ed8e00;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.btn-register {
  padding: 14px 32px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ed8e00 0%, #ffaa33 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(237, 142, 0, 0.3);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 142, 0, 0.4);
}

.hero-image {
  flex: 1;
  max-width: 600px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Products Section */
.products-section {
  background: linear-gradient(135deg, #f8c06f 0%, #ffa94d 100%);
  padding: 80px 40px;
}

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

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto 60px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #04357c 0%, #0555b8 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.product-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #202226;
  margin-bottom: 10px;
}

.product-card-title .highlight {
  color: #ed8e00;
}

.management-banner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.management-title {
  background: #04357c;
  padding: 20px 40px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.management-subtitle {
  background: #ed8e00;
  padding: 20px 40px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Features Section */
.features-section {
  background: #f7f9fc;
  padding: 80px 40px;
}

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

.features-header h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #04357c;
  margin-bottom: 15px;
}

.features-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #202226;
}

.features-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.features-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.feature-tab {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid transparent;
}

.feature-tab:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-tab.active {
  background: #fff;
  border-color: #04357c;
  box-shadow: 0 8px 24px rgba(4, 53, 124, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #04357c 0%, #0555b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
}

.feature-name {
  font-size: 18px;
  font-weight: 600;
  color: #202226;
}

.feature-tab.active .feature-name {
  color: #04357c;
}

.features-preview {
  flex: 1;
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.preview-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #202226;
  margin-bottom: 30px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #f7f9fc;
  border-radius: 12px;
}

.feature-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #04357c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 40px;
  background: #fff;
}

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

.pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #04357c;
  margin-bottom: 15px;
}

.pricing-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #202226;
}

.pricing-header h2 .highlight {
  color: #ed8e00;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.pricing-card-header {
  background: linear-gradient(135deg, #04357c 0%, #0555b8 100%);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pricing-card-icon {
  font-size: 32px;
}

.pricing-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.pricing-card-body {
  padding: 32px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  color: #ed8e00;
  text-align: center;
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: #888;
}

.pricing-note {
  font-size: 14px;
  font-weight: 500;
  color: #04357c;
  text-align: center;
  margin-bottom: 24px;
}

.pricing-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
  margin: 24px auto;
}

.pricing-features {
  margin-bottom: 24px;
}

.pricing-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.pricing-feature-icon {
  color: #2ecc71;
  font-size: 20px;
  flex-shrink: 0;
}

.pricing-feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.pricing-cta {
  text-align: center;
}

.btn-buy {
  padding: 14px 32px;
  border-radius: 40px;
  background: #ed8e00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(237, 142, 0, 0.3);
}

.btn-buy:hover {
  background: #d17d00;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 142, 0, 0.4);
}

/* Trial Form Section */
.trial-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.trial-header {
  text-align: center;
  margin-bottom: 30px;
}

.trial-header h4 {
  font-size: 28px;
  font-weight: 700;
  color: #ed8e00;
  text-transform: uppercase;
}

.trial-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 12px 40px rgba(237, 142, 0, 0.15);
  padding: 8px;
  display: flex;
  gap: 8px;
}

.trial-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 40px;
  border: 1px solid #e8ecee;
  font-size: 15px;
  font-weight: 500;
  color: #202226;
}

.trial-input::placeholder {
  color: #aaa;
}

.btn-trial-submit {
  padding: 16px 32px;
  border-radius: 40px;
  background: #ed8e00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-trial-submit:hover {
  background: #d17d00;
}

/* Contact Section */
.contact-section {
  padding: 80px 40px;
  background: #f7f9fc;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.contact-form h3 {
  font-size: 32px;
  font-weight: 700;
  color: #202226;
  margin-bottom: 30px;
}

.contact-form h3 .highlight {
  color: #ff6337;
}

.form-group {
  margin-bottom: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  font-weight: 500;
  color: #202226;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #04357c;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 14px 32px;
  border-radius: 40px;
  background: #ed8e00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: #d17d00;
}

.contact-info {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #202226;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: #ed8e00;
  flex-shrink: 0;
}

.contact-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Footer */
.footer {
  background: #383d48;
  padding: 60px 40px 30px;
  color: #fff;
}

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

.footer-logo {
  margin-bottom: 40px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 12px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: #fff;
  color: #383d48;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0 20px;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* Utility Classes */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-section-title {
  width: calc(100% - 32px);
  max-width: 610px;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, calc(-50% + 1px));
  top: 0;
}

.contact-note-small {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.contact-note-large {
  font-size: 16px;
  font-weight: 600;
  color: #ff6337;
}

/* Animations */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.animate-marquee {
  animation: marquee 55s linear infinite;
}

.group:hover .animate-marquee {
  animation-play-state: paused;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

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

  .features-content {
    flex-direction: column;
  }

  .features-sidebar {
    width: 100%;
  }

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

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: auto;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-box {
    width: 70px;
    height: 70px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-section {
    padding: 40px 20px;
  }

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

  .products-section,
  .features-section,
  .pricing-section,
  .contact-section {
    padding: 60px 20px;
  }

  .section-title h2,
  .features-header h2,
  .pricing-header h2 {
    font-size: 28px;
  }

  .trial-form {
    flex-direction: column;
  }

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