/* =============================================
   DepotTrade EU – Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0d1b3e;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-depot  { color: #ffffff; }
.logo-trade  { color: #4ea8de; }
.logo-eu     { color: #a0b4cc; font-size: 1rem; font-weight: 400; }

/* Nav */
nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav ul li a {
  color: #c8d8e8;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #4ea8de;
}

.btn-nav {
  background: #4ea8de;
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.btn-nav:hover {
  background: #2e86c1 !important;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 60%, #1e5799 100%);
  color: #ffffff;
  padding: 100px 0 90px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #b8d0e8;
  max-width: 620px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-block;
  background: #4ea8de;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #2e86c1;
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.bg-light {
  background: #f4f7fb;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  color: #0d1b3e;
}

.section-sub {
  text-align: center;
  color: #5a6a7e;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.02rem;
}

/* --- Cards (Leistungen) --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(13,27,62,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13,27,62,0.13);
}

.card-icon {
  font-size: 1.8rem;
  color: #4ea8de;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1b3e;
}

.card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

/* --- Über uns (Two-Col) --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.col-text h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d1b3e;
}

.col-text p {
  color: #4a5568;
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.col-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  background: #f4f7fb;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  border-left: 4px solid #4ea8de;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0d1b3e;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  color: #5a6a7e;
  margin-top: 4px;
}

/* --- Vorteile --- */
.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(13,27,62,0.06);
}

.adv-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #4ea8de;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}

.adv-item strong {
  display: block;
  font-size: 1rem;
  color: #0d1b3e;
  margin-bottom: 6px;
}

.adv-item p {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.55;
}

/* --- Kontakt --- */
.contact-wrap {
  text-align: center;
}

.contact-box {
  display: inline-block;
  background: #f4f7fb;
  border-radius: 12px;
  padding: 44px 56px;
  margin-top: 10px;
  box-shadow: 0 2px 16px rgba(13,27,62,0.07);
}

.contact-box p {
  color: #4a5568;
  margin-bottom: 16px;
  font-size: 1rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0d1b3e;
  border-bottom: 2px solid #4ea8de;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.contact-email:hover {
  color: #4ea8de;
}

.contact-note {
  margin-top: 20px !important;
  font-size: 0.9rem !important;
  color: #7a8a9e !important;
}

/* --- Footer --- */
footer {
  background: #0d1b3e;
  color: #a0b4cc;
  padding: 44px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-nav a {
  color: #a0b4cc;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #4ea8de;
}

.footer-copy {
  font-size: 0.82rem;
  color: #607080;
}

/* --- Impressum / Datenschutz Seiten --- */
.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 28px 0 10px;
}

.legal-page p,
.legal-page li {
  color: #4a5568;
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 22px;
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: #4ea8de;
  font-weight: 600;
  font-size: 0.95rem;
}

.back-link:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  nav ul {
    gap: 14px;
  }

  nav ul li a {
    font-size: 0.85rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-box {
    padding: 32px 24px;
  }

  .contact-email {
    font-size: 1.1rem;
  }
}

@media (max-width: 520px) {
  nav ul .btn-nav {
    padding: 6px 14px;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .section {
    padding: 56px 0;
  }
}
