/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F6F8;
  color: #1B2328;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* FONTS & BASE TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F4F6F8;
  color: #1B2328;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; }
p, li, td, th, blockquote, cite, dd {
  font-size: 1rem;
  line-height: 1.7;
  color: #1B2328;
}
strong { font-weight: 700; }

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

/* SECTIONS & SPACING */
section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 24px 0 rgba(27,35,40,0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 32px 10px;
    margin-bottom: 32px;
  }
}

/* HEADER */
header {
  width: 100%;
  background: linear-gradient(90deg, #1B2328 0%, #40566a 100%);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(27,35,40,0.09);
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: rgba(245,176,65,0.14);
}
header img {
  height: 40px;
  margin-right: 10px;
}
.cta-btn {
  background: linear-gradient(90deg,#F5B041 0%, #ecd378 100%);
  color: #1B2328;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  border-radius: 16px;
  padding: 12px 28px;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(245,176,65,0.15);
  transition: box-shadow 0.18s, transform 0.16s, background 0.3s;
  cursor: pointer;
  border: none;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#ecd378 0%, #F5B041 100%);
  box-shadow: 0 4px 16px rgba(245,176,65,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  min-width: 48px;
  min-height: 48px;
  margin-left: 8px;
  color: #F5B041;
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1202;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: rgba(245,176,65,0.07);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(108deg, #232b33 68%, #1B2328 100%);
  box-shadow: 0 0 48px 0 rgba(27,35,40,0.32);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.83,0,0.17,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #F5B041;
  background: none;
  border: none;
  border-radius: 8px;
  align-self: flex-end;
  margin: 18px 24px 2px 0;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(245,176,65,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 46px 32px 0 32px;
  width: 82%;
  flex: 1;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  background: none;
  border-radius: 10px;
  padding: 12px 10px;
  transition: background 0.15s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(245,176,65,0.14);
  color: #F5B041;
}
/* Responsive menu visibility */
@media (max-width: 992px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FLEXBOX GRID SYSTEM */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #F4F6F8;
  border-radius: 18px;
  flex: 1 1 240px;
  min-width: 220px;
  padding: 28px 18px;
  box-shadow: 0 2px 8px 0 rgba(120,130,140,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(245,176,65,0.13);
}
.feature-grid img {
  height: 38px;
  margin-bottom: 6px;
}

/* CARD & FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(27,35,40,0.08);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s;
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(245,176,65,0.09);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAFAFC;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(27,35,40,0.07);
  margin-bottom: 20px;
}
.testimonial-card .testimonial-text {
  color: #222;
  font-size: 1.08rem;
}
.testimonial-card cite {
  color: #666;
  font-size: 1rem;
  font-style: normal;
  margin-left: 16px;
}

/* TABLES */
table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(27,35,40,0.08);
  margin: 18px 0 20px 0;
  overflow: hidden;
  font-size: 1rem;
}
th, td {
  text-align: left;
  padding: 14px 8px;
  border-bottom: 1px solid #f0eded;
}
th {
  background: #F4F6F8;
  font-weight: 700;
  color: #222;
}
tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  th, td {
    padding: 10px 6px;
  }
  tr {
    margin-bottom: 12px;
  }
}

/* LISTS & DETAILS */
ul, ol {
  margin-left: 1.1em;
  margin-bottom: 14px;
}
ul li, ol li {
  margin: 7px 0;
  padding-left: 6px;
}
dt { font-weight: 600; margin-top: 14px; }
dd { margin-left: 10px; margin-bottom: 12px; }

/* BLOCKQUOTES */
blockquote {
  position: relative;
  background: #F4F6F8;
  color: #1B2328;
  border-left: 5px solid #F5B041;
  margin: 0 0 24px 0;
  padding: 20px 28px 18px 23px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
blockquote cite {
  display: block;
  margin-top: 10px;
  color: #888;
  font-size: 1rem;
}

/* COMPANY CARDS & PROFILE LISTS */
.company-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.company-card {
  background: #F8FAFE;
  border: 1.5px solid #E8E9EB;
  border-radius: 14px;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 340px;
  padding: 28px 20px 24px 20px;
  box-shadow: 0 2px 8px rgba(27,35,40,0.07);
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.17s;
}
.company-card:hover {
  box-shadow: 0 6px 22px rgba(245,176,65,0.11);
  border-color: #F5B041;
}

.company-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.company-filters label {
  font-weight: 600;
}
.company-filters input, .company-filters select {
  background: #F4F6F8;
  border: 1px solid #d9dadb;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 1rem;
  margin-left: 2px;
  margin-right: 2px;
  transition: border-color 0.19s, box-shadow 0.18s;
}
.company-filters input:focus, .company-filters select:focus {
  border-color: #F5B041;
  box-shadow: 0 0 1px #F5B041;
}

.company-highlights, .technology-highlights, .trend-analyses {
  background: #F8FAFE;
  border-left: 3.5px solid #F5B041;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 16px 0;
}

.sort-options {
  margin-top: 16px;
  font-weight: 600;
}
.sort-options a {
  color: #F5B041;
  font-weight: 700;
  margin: 0 6px;
  transition: text-decoration 0.15s;
}
.sort-options a:hover {
  text-decoration: underline;
}

.equipment-categories ul, .equipment-list ul, .explanation-snippets ul {
  list-style: disc inside;
  color: #1B2328;
}
.explanation-snippets ul li {
  margin-left: 0;
  color: #1B2328;
}

/* CONTACT & MAP */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  color: #1B2328;
  font-size: 1rem;
}
.contact-details img {
  width: 18px;
  vertical-align: middle;
  margin-right: 8px;
}
.map {
  background: #F4F6F8;
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 16px;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #1B2328;
  color: #fff;
  padding: 36px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid #333942;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #F5B041;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s;
}
footer nav a:hover {
  color: #ecd378;
}
footer .contact-details {
  font-size: 0.99rem;
  color: #fff;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 14px;
  }
  footer {
    margin-top: 36px;
    padding-top: 16px;
  }
}

/* RESPONSIVE CONTENT LAYOUT */
@media (max-width: 900px) {
  .feature-grid, .company-card-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.04rem; }
}

/* BUTTONS & INPUTS */
button, .button, input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background-color: #F5B041;
  color: #232b33;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
}
button:hover, .button:hover, input[type="submit"]:hover {
  background: #ecd378;
  color: #1B2328;
  box-shadow: 0 3px 18px #f5b04122;
}

input[type="text"], input[type="email"], select, textarea {
  border: 1px solid #dcdcdc;
  background: #F4F6F8;
  border-radius: 7px;
  padding: 10px 12px;
  margin-bottom: 12px;
  transition: border 0.15s, box-shadow 0.14s;
}
input[type="text"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
  border: 1.5px solid #F5B041;
  box-shadow: 0 0 0 2px #F5B04122;
}

/* HOVER EFFECTS & TRANSITIONS */
a, button, input[type="submit"], .cta-btn, .card, .feature-grid > div, .company-card {
  transition: background 0.18s, box-shadow 0.17s, color 0.14s, transform 0.12s;
}
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #F5B041;
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS */
.card:hover, .company-card:hover, .feature-grid > div:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 8px 40px 0 rgba(245,176,65,0.12);
}

/* COOKIE BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2222;
  background: linear-gradient(90deg, #22292f 0%, #505a64 100%);
  color: #f5f5f7;
  box-shadow: 0 -2px 16px rgba(27,35,40,0.11);
  padding: 22px 20px 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  min-height: 54px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  animation: cookiebannerin 0.45s;
}
@keyframes cookiebannerin {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner .cookie-text {
  flex: 2 1 300px;
  color: #fff;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-consent-banner button {
  margin: 0 2px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 18px;
  background: #F5B041;
  color: #232b33;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.14s;
}
.cookie-consent-banner button.cookie-settings {
  background: #F4F6F8;
  color: #222;
  border: 1.5px solid #F5B041;
  margin-left: 5px;
  transition: background 0.13s, color 0.13s;
}
.cookie-consent-banner button.cookie-settings:hover {
  background: #ecd378;
  color: #1B2328;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #ecd378;
  color: #1B2328;
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px;
    font-size: 0.96rem;
    gap: 12px;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,35,40,0.35);
  z-index: 2223;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: cookiemodalin 0.28s;
}
@keyframes cookiemodalin { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #FFF;
  border-radius: 18px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  padding: 28px 22px 20px 22px;
  box-shadow: 0 6px 32px rgba(27,35,40,0.16);
  color: #1B2328;
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: cookiemodalcontentpop 0.24s;
}
@keyframes cookiemodalcontentpop {
  from { transform: scale(0.92); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1 1 120px;
  font-weight: 600;
}
.cookie-toggle {
  width: 38px; height: 22px;
  border-radius: 18px;
  background: #d7dbe0;
  position: relative;
  cursor: pointer;
  transition: background 0.22s;
}
.cookie-toggle input {
  appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.16s;
  box-shadow: 0 1px 5px #eee;
}
.cookie-toggle input:checked + .slider {
  transform: translateX(16px);
  background: #F5B041;
}
.cookie-category .cookie-toggle input:checked {
  background: #F5B041;
}
.cookie-category .cookie-essential {
  color: #888;
  font-size: 0.95em;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  background: #F5B041;
  color: #232b33;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: #ecd378;
  color: #1B2328;
}
/* Hide scrollbar in modal for better look */
.cookie-modal {
  overflow-y: auto;
}

/* ACCESSIBILITY & UTILITIES */
.sr-only {
  position: absolute;
  left: -999em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* VISUAL EFFECTS */
hr {
  border: none;
  border-top: 1px solid #e9e9f0;
  margin: 28px 0;
}

/* SUMMARIES & QUICK INFO */
.comparison-summary, .key-facts {
  background: #F8FAFE;
  border-left: 3.5px solid #F5B041;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 14px 0 18px 0;
}

/* Extra spacing for comparison table */
.comparison-table {
  margin-bottom: 32px;
}

/* SUCCESS/DANGER BADGES FOR TABLES */
td, th {
  vertical-align: top;
}
tr td:last-child {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
tr td:last-child:contains('✓') {
  color: #5DBA4A;
}
tr td:last-child:contains('✗') {
  color: #EF6767;
}

/* MISC */
::-webkit-input-placeholder { color: #b4b4b8; }
::-moz-placeholder { color: #b4b4b8; }
:-ms-input-placeholder { color: #b4b4b8; }
::placeholder { color: #b4b4b8; }

div[hidden], section[hidden] { display: none !important; }

/* END OF STYLE.CSS */
