:root {
  --bg-dark: #0a0a0c;
  --bg-card: #151518;
  --bg-card-hover: #1e1e24;
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent-red: #dd2d1d;
  --accent-red-hover: #fa3523;
  --pkg-express: #a1a1aa;
  --pkg-basic: #3b82f6;
  --pkg-premium: #f97316;
  --pkg-exklusiv: var(--accent-red);
  --font-main:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-heading: "Anton", "Inter", sans-serif;
  --transition: all 0.3s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  text-align: center;
}
.highlight-blue {
  color: #3b82f6;
}
.highlight-orange {
  color: #f59e0b;
}
.highlight-red {
  color: var(--accent-red);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--accent-red);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--accent-red-hover);
  box-shadow: 0 0 20px #dd2d1d66;
}
.download-btn-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff0d;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.btn-download:hover {
  background-color: #ffffff1a;
  border-color: #fff3;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  border-color: var(--text-main);
  color: var(--text-main);
}
.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--bg-dark);
}
.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background-color: #1ebe57;
  box-shadow: 0 0 20px #25d36666;
}
.btn .icon {
  margin-right: 8px;
  font-size: 1.2em;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
header.scrolled {
  background-color: #0a0a0cd9;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo img {
  height: 90px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.main-nav a:hover {
  color: var(--accent-red);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-social {
  display: flex;
  gap: 12px;
  margin-right: 5px;
}
.header-social-icon {
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.header-social-icon:hover {
  color: var(--accent-red);
}
.lang-switcher {
  display: flex;
  background: #ffffff1a;
  border-radius: 4px;
  overflow: hidden;
}
.lang-switcher button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.lang-switcher button:hover {
  color: var(--text-main);
}
.lang-switcher button.active {
  background: var(--accent-red);
  color: #fff;
}
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}
.mobile-nav-toggle span {
  width: 30px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 60% -20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(221, 45, 29, 0.25) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #050506, #0b0c0f);
  z-index: -1;
  overflow: hidden;
}
.hero-bg:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5%;
  width: 800px;
  height: 800px;
  background-image: url("/DN%20MINDEM%20LOGO%2003%20(ICO).png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.02;
  transform: translateY(-50%);
  z-index: -1;
}
.hero-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(221, 45, 29, 0.8),
    transparent
  );
  box-shadow: 0 0 20px 2px #dd2d1d66;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  margin-bottom: 50px;
}
.hero-highlights li {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
}
.hero-highlights .icon {
  margin-right: 10px;
  color: var(--accent-red);
  display: flex;
  align-items: center;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
  margin-top: 20px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-chip svg {
  color: var(--accent-red);
}
.why-section {
  padding: 100px 0 50px;
  background-color: var(--bg-dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.why-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: #dd2d1d4d;
  box-shadow: 0 10px 30px #00000080;
}
.why-icon {
  margin-bottom: 20px;
  color: var(--accent-red);
  display: flex;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.services {
  padding: 100px 0;
  background-color: var(--bg-dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.service-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
  border-color: #dd2d1d4d;
  box-shadow: 0 10px 30px #00000080;
}
.card-icon {
  margin-bottom: 20px;
  color: var(--accent-red);
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.pricing-section {
  padding: 100px 0;
}
.pricing-section.alt-bg {
  background-color: #0e0e11;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.package-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: var(--transition);
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #00000080;
}
.pkg-express {
  border-top: 4px solid var(--pkg-express);
}
.pkg-basic {
  border-top: 4px solid var(--pkg-basic);
}
.pkg-premium {
  border-top: 4px solid var(--pkg-premium);
}
.pkg-exklusiv {
  border-top: 4px solid var(--pkg-exklusiv);
}
.pkg-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--accent-red);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}
.pkg-header {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pkg-header h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-main);
}
.pkg-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.pkg-includes li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #d4d4d8;
}
.pkg-includes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: 700;
}
.pkg-includes li .highlight {
  color: var(--text-main);
}
.pkg-includes li:has(.highlight):before {
  content: "+";
}
.pricing-table-wrapper {
  background-color: var(--bg-card);
  border-radius: 8px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.pricing-table th,
.pricing-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child) {
  text-align: center;
}
.pricing-table th {
  background-color: #ffffff05;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td strong {
  font-size: 1.1rem;
  color: var(--text-main);
  display: block;
  margin-bottom: 5px;
}
.pricing-table td .veh-ex {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.mobile-pricing-cards,
.sticky-mobile-cta {
  display: none;
}
.extras-box {
  background-color: #ffffff05;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 30px;
}
.extras-box h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--text-main);
}
.extras-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.extras-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.extras-list li strong {
  color: var(--text-main);
  white-space: nowrap;
}
.feature-banner {
  background: linear-gradient(45deg, #151518, #1a1a20);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0;
}
.feature-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.feature-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.indicator-bulb {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px 2px #22c55e99;
  animation: bulbPulse 1.5s infinite alternate;
  z-index: 2;
}
@keyframes bulbPulse {
  0% {
    box-shadow: 0 0 6px 1px #22c55e4d;
    opacity: 0.7;
  }
  to {
    box-shadow: 0 0 14px 4px #22c55ee6;
    opacity: 1;
  }
}
.feature-icon {
  font-size: 4rem;
  transition: all 0.5s ease;
}
.feature-icon.car-glow-icon {
  animation: carGlow 3s infinite alternate ease-in-out;
}
@keyframes carGlow {
  0%,
  40% {
    color: var(--text-main);
    filter: drop-shadow(0 0 0 rgba(34, 197, 94, 0));
  }
  80%,
  to {
    color: #22c55e;
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.7));
  }
}
.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.feature-content p {
  color: var(--text-muted);
}
.workflow-section {
  padding: 100px 0;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 40px;
}
.workflow-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--accent-red);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px #dd2d1d66;
}
.workflow-step h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-main);
}
.workflow-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.workflow-extra {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.notice-section {
  padding: 40px 0;
  background-color: var(--bg-dark);
}
.notice-box {
  background-color: #dd2d1d1a;
  border-left: 4px solid var(--accent-red);
  padding: 20px;
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.notice-box strong {
  color: var(--accent-red);
}
.contact-section {
  padding: 100px 0;
  background-color: #0e0e11;
}
.contact-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px #00000080;
}
.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.contact-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.address-block {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #d4d4d8;
}
.contact-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.social-links a:hover {
  color: var(--accent-red);
}
.qr-code {
  flex-shrink: 0;
  background: transparent;
  padding: 20px;
  border-radius: 12px;
}
.qr-code img {
  width: 250px;
  height: 250px;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
}
footer {
  background-color: #050505;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo img {
  width: 150px;
}
.footer-address {
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-links a {
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent-red);
}
.mini-qr {
  width: 100px;
  background: transparent;
  padding: 5px;
  border-radius: 8px;
  filter: invert(1);
  mix-blend-mode: screen;
}
.footer-qr-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-social-icons a {
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
}
.footer-social-icons a:hover {
  color: var(--accent-red);
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom .slogan {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.legal-links {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.legal-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legal-links a:hover {
  color: var(--accent-red);
}
.legal-links .separator {
  color: #ffffff1a;
}
@media (max-width: 992px) {
  .logo img {
    height: 60px;
  }
  .main-nav ul {
    gap: 10px;
  }
  .main-nav a {
    font-size: 0.85rem;
  }
  .header-actions {
    gap: 10px;
  }
  .header-social {
    gap: 8px;
  }
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  .contact-buttons,
  .social-links {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .logo img {
    height: 45px;
    max-width: 65vw;
    object-fit: contain;
  }
  .header-container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero h1 {
    font-size: 1.8rem;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .btn {
    width: 100%;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0f0f12fa;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav.active {
    transform: translateY(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .main-nav a {
    font-size: 1.2rem;
  }
  .header-actions .btn-primary,
  .pricing-table-wrapper {
    display: none;
  }
  .mobile-pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .mobile-pricing-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    box-shadow: 0 4px 15px #0003;
  }
  .m-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-align: center;
  }
  .m-card-header h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
  }
  .m-card-header .veh-ex {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  .m-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  .m-price-row:last-child {
    border-bottom: none;
    margin-bottom: 15px;
  }
  .m-pkg-name {
    font-weight: 500;
    color: var(--text-muted);
  }
  .m-price {
    font-weight: 700;
    font-size: 1.1rem;
  }
  .m-duration {
    font-size: 0.85rem;
  }
  .m-duration .m-price {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f0f12f2;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    z-index: 1000;
    gap: 15px;
  }
  .sticky-mobile-cta .btn {
    flex: 1;
    padding: 12px 0;
    font-size: 0.95rem;
  }
  body {
    padding-bottom: 80px;
  }
  .feature-content {
    flex-direction: column;
    text-align: center;
  }
  .contact-buttons {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo img,
  .footer-qr img {
    margin: 0 auto;
  }
}
