/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --et-primary: #1c3d5e;
  --et-primary-dk: #112740;
  --et-accent: #e8500a;
  --et-accent-dk: #c43d00;
  --et-gray-50: #f5f7fa;
  --et-gray-100: #eaecf0;
  --et-gray-400: #9aa4b2;
  --et-gray-600: #5a6474;
  --et-gray-900: #111827;
  --et-white: #ffffff;
  --et-radius-sm: 6px;
  --et-radius: 10px;
  --et-radius-lg: 16px;
  --et-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.06);
  --et-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --et-shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.14);
  --et-transition: 0.25s ease;
}

/* ============================================================
   BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--et-gray-900);
  background: var(--et-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--et-primary);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-et-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--et-accent);
  color: var(--et-white);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--et-transition),
    transform var(--et-transition);
  white-space: nowrap;
}

.btn-et-primary:hover {
  background: var(--et-accent-dk);
  color: var(--et-white);
  transform: translateY(-1px);
}

.btn-et-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--et-white);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--et-transition);
  white-space: nowrap;
}

.btn-et-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--et-white);
  color: var(--et-white);
  transform: translateY(-1px);
}

.btn-et-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--et-primary);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--et-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--et-transition);
}

.btn-et-ghost:hover {
  background: var(--et-primary);
  color: var(--et-white);
}

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
  background: var(--et-white);
  border-bottom: 1px solid var(--et-gray-100);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--et-shadow-sm);
  transition: box-shadow 0.2s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--et-primary);
}

.nav-logo img {
  height: 58px;
  width: auto;
}

.nav-logo span {
  line-height: 1.1;
}

.nav-logo small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--et-gray-400);
  letter-spacing: 0.03em;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--et-gray-600);
  padding: 0.4rem 0.85rem !important;
  border-radius: var(--et-radius-sm);
  transition: color var(--et-transition), background var(--et-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--et-primary);
  background: var(--et-gray-50);
}

.navbar-nav .dropdown-menu {
  border: 1px solid var(--et-gray-100);
  border-radius: var(--et-radius);
  box-shadow: var(--et-shadow);
  padding: 0.5rem;
  min-width: 220px;
}

.navbar-nav .dropdown-item {
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--et-radius-sm);
  color: var(--et-gray-600);
  transition: all var(--et-transition);
}

.navbar-nav .dropdown-item:hover {
  background: var(--et-gray-50);
  color: var(--et-primary);
}

.dropdown-divider {
  margin: 0.35rem 0;
  border-color: var(--et-gray-100);
}

.nav-cta {
  background: var(--et-accent);
  color: var(--et-white) !important;
  border-radius: 8px;
  padding: 0.45rem 1.1rem !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--et-accent-dk);
  color: var(--et-white) !important;
}

.navbar-toggler {
  border: 2px solid var(--et-gray-100);
  border-radius: var(--et-radius-sm);
  padding: 0.35rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231c3d5e' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ============================================================
   HERO
============================================================ */
#hero {
  background: linear-gradient(135deg,
      #2c3f55 0%,
      #1e3a5f 40%,
      #0f2f5c 100%);
  overflow: hidden;
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-panel-right {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-panel-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* Diagonaler Gradient: links dunkel → rechts transparent (relativ zum vollen Viewport) */
.hero-panel-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 39, 64, 0.92) 0%,
    rgba(17, 39, 64, 0.88) 25%,
    rgba(17, 39, 64, 0.55) 48%,
    rgba(17, 39, 64, 0.15) 68%,
    transparent 88%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 80, 10, 0.15);
  border: 1px solid rgba(232, 80, 10, 0.35);
  color: #ff8c5a;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--et-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: normal;
  color: #ff8c5a;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero-usps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-usps li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-usps li i {
  color: #4ade80;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}


/* ============================================================
   TRUST STRIP
============================================================ */
#trust {
  background: var(--et-primary-dk);
  padding: 1.35rem 0;
  border-bottom: 3px solid var(--et-accent);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-list li i {
  color: var(--et-accent);
  font-size: 1.1rem;
}

/* ============================================================
   SECTIONS SHARED
============================================================ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--et-gray-50);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--et-accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--et-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--et-gray-600);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   PRODUCT CARDS
============================================================ */
.prod-card {
  background: var(--et-white);
  border: 1px solid var(--et-gray-100);
  border-radius: var(--et-radius-lg);
  overflow: hidden;
  box-shadow: var(--et-shadow-sm);
  transition: box-shadow var(--et-transition),
    transform var(--et-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  box-shadow: var(--et-shadow-lg);
  transform: translateY(-4px);
}

.prod-card-img {
  overflow: hidden;
  height: 210px;
  background: var(--et-gray-100);
  flex-shrink: 0;
}

.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prod-card:hover .prod-card-img img {
  transform: scale(1.05);
}

.prod-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--et-accent);
  margin-bottom: 0.5rem;
}

.prod-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--et-primary);
  margin-bottom: 0.6rem;
}

.prod-card-text {
  font-size: 0.9rem;
  color: var(--et-gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--et-primary);
  transition: gap var(--et-transition), color var(--et-transition);
  margin-top: auto;
}

.prod-card-link:hover {
  gap: 0.7rem;
  color: var(--et-accent);
}

/* Primary focus card (Profilfüller main) */
.prod-card-featured {
  border-top: 4px solid var(--et-accent);
}

.prod-card-featured .prod-card-tag {
  color: var(--et-accent);
}

/* ============================================================
   USP SECTION
============================================================ */
#usp {
  background: var(--et-primary);
  padding: 5rem 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.usp-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--et-radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--et-transition);
}

.usp-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.usp-icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 80, 10, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.usp-icon i {
  font-size: 1.6rem;
  color: #ff8c5a;
}

.usp-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--et-white);
  margin-bottom: 0.5rem;
}

.usp-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CONTACT CTA BAND
============================================================ */
#cta-band {
  background: var(--et-gray-50);
  border-top: 1px solid var(--et-gray-100);
  padding: 5rem 0;
}

.cta-card {
  background: var(--et-white);
  border: 1px solid var(--et-gray-100);
  border-radius: var(--et-radius-lg);
  padding: 3rem;
  box-shadow: var(--et-shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.cta-card-text h2 {
  font-size: 1.65rem;
  color: var(--et-primary);
  margin-bottom: 0.5rem;
}

.cta-card-text p {
  color: var(--et-gray-600);
  margin: 0;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--et-primary);
  transition: color var(--et-transition);
}

.contact-info a:hover {
  color: var(--et-accent);
}

.contact-info i {
  color: var(--et-accent);
  font-size: 1.1rem;
}

.opening-hours {
  font-size: 0.82rem;
  color: var(--et-gray-400);
  margin-top: 0.25rem;
  padding-left: 1.7rem;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--et-gray-900);
  color: rgba(255, 255, 255, 0.55);
  padding: 4rem 0 0;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--et-white);
  margin-bottom: 0.85rem;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: background var(--et-transition), color var(--et-transition);
}

.footer-social a:hover {
  background: var(--et-accent);
  color: var(--et-white);
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--et-white);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--et-transition);
}

.footer-links a:hover {
  color: var(--et-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 3rem;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .hero-content {
    padding: 4rem 0 3rem;
  }

  #hero {
    min-height: 0;
  }

  .hero-panel-right {
    opacity: 0.25;
  }

  .section {
    padding: 3.5rem 0;
  }

  #usp {
    padding: 3.5rem 0;
  }

  .cta-card {
    padding: 2rem;
  }
}

/* ============================================================
   PAGE HEADER (shared across subpages)
============================================================ */
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1c3d5e 0%, #112740 100%);
}

.page-header-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.page-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-header-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,39,64,0.6) 0%, transparent 30%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
  max-width: 520px;
}

.breadcrumb-et {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.1rem;
  list-style: none;
  padding: 0;
}

.breadcrumb-et a {
  color: rgba(255,255,255,0.45);
  transition: color var(--et-transition);
}

.breadcrumb-et a:hover { color: var(--et-white); }
.breadcrumb-et .sep { color: rgba(255,255,255,0.25); font-size: 0.7rem; }
.breadcrumb-et .current { color: rgba(255,255,255,0.85); }

.page-header-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--et-white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.page-header-title em {
  font-style: normal;
  color: var(--et-accent);
}

.page-header-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.page-header-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--et-accent);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.intro-strip {
  background: var(--et-white);
  border-bottom: 1px solid var(--et-gray-100);
  padding: 2rem 0;
}

.intro-strip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: center;
}

.intro-fact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--et-gray-600);
}

.intro-fact i {
  font-size: 1.1rem;
  color: var(--et-accent);
}

@media (max-width: 991.98px) {
  .page-header-img { display: none; }
  .page-header { min-height: 0; }
  .page-header-content { padding: 3rem 0 2.5rem; max-width: 100%; }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-list {
    gap: 0.5rem 1.5rem;
  }

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

  .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-card-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}
