/* ========== CSS Reset & Normalize ========== */
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%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F1F3F6;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #233142;
}
*, *:before, *:after { box-sizing: inherit; }
img, picture {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font: inherit;
}

/* ========== Brand Fonts ========== */
@import url('https://fonts.googleapis.com/css?family=PT+Sans:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
h1 { font-size: 2.2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; }
p, li, blockquote {
  color: #233142;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong, b { font-weight: 700; }

/* ========== Color Variables ========== */
:root {
  --primary: #233142;
  --secondary: #007A99;
  --accent: #F1F3F6;
  --cta: #007A99;
  --cta-light: #E6F7FA;
  --heading-gradient-start: #007A99;
  --heading-gradient-end: #233142;
  --shadow: 0 4px 24px rgba(35,49,66,0.12);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 6px;
}

/* ========== Utility Classes ========== */
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(35,49,66,0.18);
}
.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;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  flex-direction: column;
  width: 100%;
}
.testimonial-card p {
  color: #1E232B;
  font-size: 1rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #007A99;
  font-size: 0.97rem;
  font-style: italic;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 22px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 210px;
  max-width: 340px;
  flex-basis: 240px;
  transition: transform 0.17s, box-shadow 0.19s;
}
.feature-item:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px rgba(0,122,153,0.14);
}
.feature-item img {
  height: 36px;
  width: 36px;
}
.feature-item h3 {
  font-size: 1.12rem;
  color: var(--secondary);
}

/* ========== Main Gradient Modern Style ========== */
.hero-section {
  background: linear-gradient(95deg, #E6F7FA 0%, #F1F3F6 100%);
  padding: 46px 0 44px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero-section h1 {
  background: linear-gradient(90deg, #007A99 10%, #233142 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
          color: transparent;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-section p {
  color: #233142;
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.features-section, .about-preview-section, .stats-dashboard-section, .tech-overview-section, .comparison-highlights-section, .trend-analysis-section, .future-outlook-section, .about-section, .values-section, .team-intro-section, .kontakt-section, .contact-info-section, .thank-you-section, .legal-section {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}
.features-section h2, .about-preview-section h2, .trends-preview-section h2, .tech-overview-section h2, .innovation-trends-section h2, .stats-dashboard-section h2, .insights-section h2, .trend-analysis-section h2, .future-outlook-section h2, .about-section h1, .values-section h2, .team-intro-section h2, .kontakt-section h1, .contact-info-section h2 {
  background: linear-gradient(90deg, #007A99 10%, #233142 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
          color: transparent;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

/* ========== Buttons & CTAs ========== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #007A99 60%, #233142 100%);
  color: #fff;
  font-family: 'PT Sans', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  padding: 12px 30px;
  min-width: 160px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,122,153,0.12);
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.22s, box-shadow 0.22s, transform 0.17s;
}
.cta-button.primary {
  background: linear-gradient(90deg, #007A99 80%, #233142 100%);
}
.cta-button.secondary {
  background: linear-gradient(90deg, #233142 10%, #007A99 90%);
  color: #fff;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #00596e 60%, #165777 100%);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 18px rgba(0,122,153,0.18);
  color: #fff;
}

/* ========== Navigation ========== */
header {
  background: #fff;
  border-bottom: 1.5px solid #E6F7FA;
  box-shadow: var(--shadow);
  width: 100%;
  position: relative;
  z-index: 2100;
}
.logo {
  display: flex;
  align-items: center;
  max-height: 60px;
  margin-right: 18px;
  padding: 8px 0;
}
.logo img {
  height: 44px;
  width: auto;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  min-height: 76px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #233142;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E6F7FA;
  color: #007A99;
}
.cta-button.primary {
  margin-left: 10px;
}

/* ========== Mobile Menu ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #007A99;
  cursor: pointer;
  margin-left: 12px;
  z-index: 2201;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #F1F3F6;
  box-shadow: -4px 0 22px rgba(35,49,66,0.18);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  padding: 0 29px;
  transition: transform 0.38s cubic-bezier(.5,.17,.12,.97);
  transform: translateX(0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  left: 0;
  opacity: 1;
  transform: translateX(-100vw);
  pointer-events: auto;
  transition: transform 0.42s cubic-bezier(.54,0,.2,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #233142;
  margin-top: 28px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover {
  color: #007A99;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.mobile-nav a {
  font-size: 1.24rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #233142;
  padding: 12px 0 7px 0;
  border-bottom: 1px solid #E6F7FA;
  transition: background 0.18s, color 0.18s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6F7FA;
  color: #007A99;
}

@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 4px;
  }
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  header .container {
    gap: 6px;
  }
}
@media (max-width: 940px) {
  .main-nav a { font-size: 0.98rem; }
  .cta-button.primary { padding: 10px 14px; }
}
@media (max-width: 768px) {
  .main-nav, .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    left: 0;
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    display: flex;
  }
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .hero-section {
    padding: 32px 0 26px 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .features-section, .about-preview-section, .stats-dashboard-section, .tech-overview-section, .comparison-highlights-section, .trend-analysis-section, .future-outlook-section, .about-section, .values-section, .team-intro-section, .kontakt-section, .contact-info-section, .thank-you-section, .legal-section {
    padding: 24px 5vw;
    border-radius: var(--radius-md);
  }
  .feature-item {
    min-width: 100%;
    max-width: none;
    margin-bottom: 22px;
  }
}

/* ========== Footer ========== */
footer {
  background: #233142;
  color: #fff;
  padding: 32px 0 12px 0;
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-sizing: border-box;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #E6F7FA;
  font-size: 0.99rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.22s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: #007A99;
}
.footer-contact {
  color: #DEF0F6;
  font-size: 0.97rem;
  margin-bottom: 6px;
}
.footer-hours {
  font-size: 0.92rem;
  color: #AAF1FF;
  margin-top: 3px;
}

@media (max-width: 768px) {
  footer .container {
    padding: 0 4vw;
    gap: 10px;
  }
  .footer-nav {
    gap: 14px;
  }
}

/* ========== Flex Pattern Overrides ========== */
.feature-grid, .stats-dashboard-section ul, .innovation-trends-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
@media (max-width: 900px) {
  .feature-grid, .stats-dashboard-section ul, .innovation-trends-section ul {
    flex-direction: column;
    gap: 18px;
  }
}
.compare-table-section .filter-controls ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.compare-table-section .filter-controls li {
  background: #E6F7FA;
  color: #007A99;
  border-radius: var(--radius-sm);
  padding: 7px 18px;
  font-size: 0.98rem;
  font-weight: 500;
}

/* ========== Comparison Table ========== */
.compare-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 16px;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
  padding: 13px 20px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #E6F7FA;
}
.compare-table th {
  background: #007A99;
  color: #fff;
  font-family: 'PT Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.compare-table tr:last-child td {
  border-bottom: none;
}

/* ========== Text Section ========== */
.text-section {
  margin-top: 8px;
  margin-bottom: 12px;
  color: #233142;
  font-size: 1rem;
  line-height: 1.7;
}
blockquote {
  background: #E6F7FA;
  padding: 16px 22px;
  border-left: 4px solid #007A99;
  font-style: italic;
  color: #233142;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 15px;
}

/* ========== Responsive Flex Direction ========== */
.text-image-section {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.about-section .content-wrapper, .legal-section .content-wrapper {
  gap: 20px;
}

/* ========== Team Bio Section ========== */
.team-bios {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.team-bios p {
  font-size: 1rem;
}

/* ========== Contact Details Styling ========== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-details img {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: sub;
}

@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
  }
}

/* ========== Lists ========== */
ul, ol {
  margin-left: 18px;
  margin-bottom: 12px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 1rem;
}
ul li:before {
  content: '\2022';
  color: #007A99;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
/* Remove bullet for nav lists */
nav ul, .footer-nav ul, .main-nav ul, .mobile-nav ul {
  list-style: none;
}

/* ========== Animations & Effects ========== */
.section, .card, .feature-item, .cta-button, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.21s, background 0.23s, transform 0.21s, opacity 0.22s, color 0.2s;
}

/* ========== Cookie Consent Banner & Modal ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #007A99 70%, #233142 100%);
  color: #fff;
  padding: 18px 35px 18px 13px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 16px rgba(35,49,66,0.12);
  z-index: 3000;
  gap: 18px;
  font-size: 1rem;
  opacity: 1;
}
.cookie-banner__text {
  flex: 1 1 auto;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__btn, .cookie-banner__settings {
  font-family: 'PT Sans', Arial, Helvetica, sans-serif;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 21px;
  margin: 2px 0;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(35,49,66,0.09);
}
.cookie-banner__btn {
  background: #fff;
  color: #007A99;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #E6F7FA;
  color: #233142;
}
.cookie-banner__settings {
  background: #007A99;
  color: #fff;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: #233142;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; padding: 18px 6vw; gap: 3px; }
  .cookie-banner__actions { flex-direction: column; gap: 8px; align-items: stretch; width: 100%; }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  padding: 0 6vw;
  background: rgba(35,49,66,0.64);
  z-index: 3500;
  justify-content: center;
  align-items: center;
  overflow: auto;
  animation: fadeIn 0.22s;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,122,153,0.18);
  max-width: 480px;
  width: 100%;
  padding: 28px 35px 24px 35px;
  color: #233142;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #007A99;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover { color: #233142; }
.cookie-modal__title {
  font-family: 'PT Sans';
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #007A99;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 9px 0;
}
.cookie-category h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #233142;
  margin-bottom: 6px;
}
.cookie-category label, .cookie-category input[type="checkbox"] {
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #007A99;
  width: 20px; height: 20px;
  margin-top: 5px;
}
.cookie-category.--essential input[type="checkbox"] {
  accent-color: #007A99;
}
.cookie-category.--essential label,
.cookie-category.--essential {
  color: #233142;
  opacity: 0.66;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal__btn {
  border-radius: var(--radius-sm);
  border: none;
  font-family: 'PT Sans', Arial;
  font-weight: bold;
  padding: 10px 19px;
  background: #007A99;
  color: #fff;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal__btn:hover, .cookie-modal__btn:focus {
  background: #233142;
}
@media (max-width: 600px) {
  .cookie-modal__dialog {
    padding: 22px 2vw 16px 2vw;
    max-width: 95vw;
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========== Thank You Section ========== */
.thank-you-section {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  margin-top: 58px;
  margin-bottom: 58px;
  padding: 48px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ========== Miscellaneous ========== */
a[target="_blank"]:after {
  content: ' ↗';
  color: #007A99;
  font-size: 0.92em;
  opacity: 0.64;
}

/* ----- SCROLLBAR STYLES ---- */
::-webkit-scrollbar {
  width: 10px;
  background: #F1F3F6;
}
::-webkit-scrollbar-thumb {
  background: #E6F7FA;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c3dce1;
}

/* ========== Accessibility ========== */
:focus {
  outline: 2px solid #007A99;
  outline-offset: 0.5px;
}

/* ========== End of Style ========== */
