/* === CSS RESET + NORMALIZATION === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.4;
  background: #F2F4F8;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1ED4D8;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #37A8C1;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
strong, b {
  font-weight: 700;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* === BRAND VIBRANT ENERGETIC COLOR PALETTE === */
:root {
  --primary: #18334F; /* dark blue */
  --secondary: #37A8C1; /* cyan */
  --accent: #F2F4F8;  /* light gray */
  --vibrant1: #F72B57; /* electric pink */
  --vibrant2: #FFC533; /* vibrant yellow */
  --vibrant3: #21E6C1; /* neon teal */
  --contrast-bg: #fff;
  --neutral-text: #212A33;
  --card-shadow: 0 4px 28px rgba(18,50,125,0.11);
  --focus-ring: 0 0 0 3px #FFC53350;
}

/* === TYPOGRAPHY FOR VIBRANT/ENERGETIC === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.4rem; margin-bottom: 20px;}
h2 { font-size: 2rem; margin-bottom: 18px;}
h3 { font-size: 1.5rem; margin-bottom: 16px;}
h4 { font-size: 1.25rem; margin-bottom: 14px;}
p, li, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

blockquote.quote-highlight {
  background: var(--vibrant2);
  color: var(--primary);
  font-size: 1.2rem;
  font-style: italic;
  padding: 18px 26px;
  border-left: 5px solid var(--vibrant1);
  border-radius: 20px 36px 20px 8px;
  margin: 0 0 30px 0;
}

/* === LAYOUT === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--contrast-bg);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(55,168,193,0.12),0 2px 6px 0 rgba(247,43,87,0.09);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
  color: #18334F;
  font-size: 1.1rem;
  transition: box-shadow 0.25s, transform 0.15s;
}
.testimonial-card .author {
  font-size: 0.95em;
  color: var(--vibrant1);
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 6px 50px 0 rgba(24,51,79,0.17);
  transform: scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HERO AREA === */
.hero {
  background: linear-gradient(90deg, var(--vibrant2) 0%, var(--vibrant1) 100%);
  color: var(--primary);
  padding: 70px 0 60px 0;
  position: relative;
  border-radius: 0 0 54px 54px;
  margin-bottom: 38px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 620px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 1.25rem;
  color: var(--primary);
}
.hero .cta-button {
  background: var(--vibrant1);
  color: #fff;
}

/* === BUTTONS + CTAs === */
.primary-cta, .cta-button, .cookie-btn, .cookie-settings-btn {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  border: none;
  padding: 0.85em 2.2em;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(90deg, var(--vibrant2) 0%, var(--vibrant1) 100%);
  box-shadow: 0 4px 14px 0 rgba(24,51,79,0.10);
  transition: background 0.19s, box-shadow 0.19s, transform 0.15s;
  cursor: pointer;
  min-height: 46px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.primary-cta:hover, .cta-button:hover, .cookie-btn:hover, .cookie-settings-btn:hover {
  background: linear-gradient(90deg, var(--vibrant1) 0%, var(--vibrant2) 100%);
  color: #fff;
  box-shadow: 0 9px 28px 0 rgba(55,168,193,0.13);
  transform: translateY(-2px) scale(1.03);
}
.primary-cta:focus, .cta-button:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Accent for special sections */
.call-to-action.accent, .section.accent {
  background: linear-gradient(90deg, var(--vibrant3) 0%, var(--vibrant2) 100%);
  color: var(--primary);
  border-radius: 44px;
  margin-bottom: 60px;
  box-shadow: 0 10px 54px -34px var(--vibrant3);
}

/* === NAVIGATION === */
header {
  background: var(--accent);
  border-bottom: 2px solid var(--vibrant2);
  width: 100%;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 70px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 50px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: 30px;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vibrant2);
  color: #fff!important;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--vibrant1);
  color: #fff;
  border-radius: 12px;
  padding: 4px 14px;
  border: none;
  transition: background 0.18s;
  z-index: 150;
}
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #FFC533;
}
.primary-cta {
  margin-left: 18px;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.63,.02,.17,.98), box-shadow 0.23s;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 128px 44px rgba(18,34,81,0.58);
}
.mobile-menu-close {
  font-size: 2.5rem;
  color: var(--vibrant2);
  padding: 24px 0 18px 16px;
  background: transparent;
  border: none;
  align-self: flex-start;
  margin-left: 4px;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 38px 30px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 1.22rem;
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(55,168,193,0.09);
  transition: background 0.1s, color 0.1s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vibrant1);
  color: var(--vibrant2);
}

/* Hide nav on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav, .primary-cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}


/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  flex-direction: row;
  gap: 8px;
  list-style: none;
  font-size: 0.96rem;
  color: var(--vibrant1);
  margin-bottom: 18px;
}
.breadcrumb li:after {
  content: ">";
  color: var(--vibrant2);
  margin: 0 8px;
}
.breadcrumb li:last-child:after { content: ""; }
.breadcrumb a {
  font-weight: 700;
  color: var(--primary);
}

/* === TABLES === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow);
}
thead {
  background: var(--secondary);
  color: #fff;
}
thead th {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 15px 10px;
  border-bottom: 4px solid var(--vibrant2);
}
tbody td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--accent);
  font-family: 'Open Sans', Arial, sans-serif;
}
tbody tr:last-child td {
  border-bottom: none;
}
td, th {
  text-align: left;
  vertical-align: top;
}

/* Simple Styling for List/Features/Profiles */
.features ul, .company-features ul, .statistics ul, .feature-highlights ul, .tech-trends ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.features li, .company-features li, .feature-highlights li, .tech-trends li, .statistics li {
  background: #fff;
  border-left: 8px solid var(--vibrant1);
  box-shadow: 0 2px 12px 0 rgba(55,168,193,0.06);
  border-radius: 14px;
  padding: 18px 22px 18px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--primary);
  transition: box-shadow 0.18s, background 0.18s;
}
.features li img, .statistics li img {
  margin-right: 14px;
  height: 32px;
}
.features li:hover, .company-features li:hover {
  background: var(--accent);
  box-shadow: 0 6px 30px 0 rgba(247,43,87,0.095);
}

/* Profile Grid (Vergleich/Vergleiche) */
.profile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
  margin-bottom: 16px;
}
.company-profile {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 26px 20px;
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 240px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.company-profile:hover {
  box-shadow: 0 0 38px 0 rgba(33,230,193,0.14);
  transform: scale(1.025);
}

/* === SECTION STRUCTURE / CONTENT SPACING === */
.section, .call-to-action, .about, .overview, .statistics, .market-analysis, .testimonials, .opinion, .analysis, .feature-highlights, .comparison-table, .equipment-listing, .explanation, .company-features, .confirmation, .legal, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper, .text-section {
  margin-bottom: 0;
  gap: 20px;
}
.card, .testimonial-card, .company-profile {
  margin-bottom: 20px;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 0 24px 0;
  font-size: 0.97rem;
  border-radius: 56px 56px 0 0;
  box-shadow: 0 -5px 50px 0 rgba(33,174,193,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 1.11rem;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.footer-brand img {
  height: 42px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  opacity: 0.92;
  font-weight: 600;
  border-radius: 14px;
  padding: 6px 12px;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-legal a:hover {
  background: var(--vibrant1);
  color: #fff;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.01rem;
  color: var(--accent);
}
.footer-contact img {
  height: 17px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer-contact a {
  color: var(--vibrant2);
  font-weight: 600;
  text-decoration: underline;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -4px 18px 0 rgba(55,168,193,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 44px;
  z-index: 3500;
  border-radius: 30px 30px 0 0;
  font-size: 1rem;
  transition: transform 0.34s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 1 1 360px;
  color: var(--primary);
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  color: #fff;
  background: var(--vibrant1);
  border-radius: 24px;
  padding: 10px 26px;
  font-size: 1rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  border: none;
  min-width: 130px;
  transition: background 0.14s, color 0.14s;
}
.cookie-btn.cookie-reject {
  background: var(--vibrant2);
  color: var(--primary);
}
.cookie-btn.cookie-reject:hover {
  background: #fffbe4;
}
.cookie-settings-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 18px;
  font-weight: 600;
  min-width: 100px;
  transition: background 0.22s, color 0.12s;
}
.cookie-settings-btn:hover {
  background: var(--vibrant3);
  border-color: var(--vibrant1);
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,51,79,0.56);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.29s;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 28px;
  min-width: 310px;
  max-width: 400px;
  box-shadow: 0 10px 60px 0 rgba(55,168,193,0.17);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in 0.39s cubic-bezier(.62,.2,.18,1);
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: translateY(44px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.33rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.cookie-cat-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 6px;
}
.cookie-cat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
}
.cookie-cat-label {
  flex: 1;
  font-weight: 600;
}
.cookie-toggle {
  margin-right: 0;
  /* Simple styled switch */
  position: relative;
  width: 38px;
  height: 20px;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 38px;
  height: 20px;
  position: absolute;
  left: 0; top: 0;
  z-index: 1;
  cursor: pointer;
}
.cookie-switch {
  display: block;
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: #E4EDF9;
  position: relative;
  transition: background 0.15s;
}
.cookie-toggle input:checked + .cookie-switch {
  background: var(--vibrant3);
}
.cookie-switch:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(0,0,0,0.07);
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left 0.18s;
}
.cookie-toggle input:checked + .cookie-switch:after {
  left: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .modal-close {
  background: none;
  color: var(--vibrant1);
  font-size: 1.7rem;
  border: none;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  transition: color 0.1s;
}
.cookie-modal .modal-close:hover {
  color: var(--primary);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
  .footer-brand img, .logo img { height: 44px; }
}
@media (max-width: 900px) {
  .container { max-width: 800px; }
  .footer-brand img, .logo img { height: 38px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.33rem; }
  .hero { padding: 34px 0 35px 0; border-radius: 0 0 36px 36px; }
  .footer-brand img, .logo img { height: 32px; }
  .container { padding: 0 10px; }
  .section, .call-to-action, .about, .overview, .statistics, .market-analysis, .testimonials, .opinion, .analysis, .feature-highlights, .comparison-table, .equipment-listing, .explanation, .company-features, .confirmation, .legal, .contact { padding: 22px 5px; margin-bottom: 38px; }
  .profile-grid, .card-container, .content-grid { gap: 12px !important; }
  .content-wrapper, .text-section { gap: 13px; }
  .text-image-section, .content-grid, .profile-grid, .card-container {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .testimonial-card { flex-direction: column; gap: 8px;}
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-brand {
    flex-direction: row;
    gap: 11px;
    margin-bottom: 10px;
  }
  .main-nav {
    gap: 14px;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 17px 10px;
    gap: 15px;
    font-size: 0.95rem;
    border-radius: 18px 18px 0 0;
  }
}

@media (max-width: 540px) {
  .hero { padding: 22px 0 22px 0; }
  .profile-grid, .card-container, .content-grid { gap: 8px !important; }
  h1, h2 { font-size: 1.13rem; }
  .card, .testimonial-card, .company-profile, table, thead th, tbody td {
    font-size: 0.95rem !important;
    padding-left: 8px; padding-right: 8px;
  }
}

/* === UTILITIES === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.mt-20 { margin-top: 20px; }
.mb-30 { margin-bottom: 30px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }

/* === ANIMATIONS FOR MICRO-INTERACTIONS === */
.card, .feature-item, .testimonial-card, .company-profile, .cta-button {
  will-change: transform, box-shadow;
}
.cta-button, .primary-cta, .cookie-btn, .cookie-settings-btn {
  transition: background 0.18s, box-shadow 0.13s, transform 0.15s;
}

/* ===== END OF STYLE.CSS ===== */
