/* =====================================================
  CSS RESET & BASE - For consistent rendering (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;
  min-height: 100vh;
  background: #232931; /* deep industrial background */
  color: #F5F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #27AABD;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #21b4ce;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.2em;
}
strong, b {
  font-weight: 700;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1024px) {
  .container { max-width: 92vw; }
}
@media (max-width: 768px) {
  section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
}
/* ================================
  BRAND FONTS & TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  color: #F5F7FA;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #27AABD;
}
.subheadline {
  font-size: 1.13rem;
  color: #B0BAC6;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  margin-bottom: 8px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.6;
  color: #E3E6EA;
  font-size: 1.05rem;
}
@media (max-width:600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}
/* ================================
  HEADER & NAVIGATION
================================ */
header {
  width: 100%;
  background: #181C22;
  box-shadow: 0 4px 12px rgba(17,27,35,0.08);
  position: sticky;
  top: 0; left: 0;
  z-index: 40;
}
.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-nav img {
  height: 38px;
  width: auto;
  filter: grayscale(0%) brightness(1.2) drop-shadow(0 2px 6px #1c2532a0);
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  color: #E3E6EA;
  position: relative;
  letter-spacing: 0.04em;
  padding: 6px 2px;
  transition: color 0.2s;
}
nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #27AABD;
  border-radius: 1px;
  transition: width 0.2s;
  margin-top: 4px;
}
nav a:hover {
  color: #27AABD;
}
nav a:hover:after {
  width: 80%;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  background: #123457;
  color: #F5F7FA;
  padding: 12px 28px;
  border-radius: 32px;
  border: none;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(18,52,87,0.10);
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.20s, color 0.18s, box-shadow 0.28s;
  outline: none;
  margin-left: 16px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #27AABD;
  color: #123457;
  box-shadow: 0 4px 16px #27AABD33, 0 1px 4px #0003;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .logo-nav {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 10px;
  }
}
/* ------------ MOBILE NAVIGATION ------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #27AABD;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 8px;
  z-index: 61;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #199fb2;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 22px;
  }
  .logo-nav {
    justify-content: flex-start;
    gap: 10px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #181c22e6;
  backdrop-filter: blur(4px);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 16px;
  margin-left: 16px;
  background: none;
  border: none;
  color: #F5F7FA;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 122;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #27AABD;
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: flex-start;
  gap: 18px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #E3E6EA;
  padding: 10px 0;
  font-family: 'Montserrat', 'Arial Narrow', sans-serif;
  font-size: 1.20rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 3px;
  width: 85vw;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 2px;
  box-sizing: border-box;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #24344d;
  color: #27AABD;
  padding-left: 7px;
}
@media (min-width:900px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
/* ================================
  HERO / BANNER SECTION
================================ */
.hero, .blog-intro {
  background: linear-gradient(90deg, #161b21 70%, #232931 100%);
  box-shadow: 0 2px 16px #0e151e80;
  border-bottom: 2px solid #293546;
}
.hero .content-wrapper, .blog-intro .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 28px;
}
.hero h1, .blog-intro h1 {
  color: #F5F7FA;
}
/* ================================
  FLEX LAYOUTS (MANDATORY)
================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232931;
  box-shadow: 0 2px 14px #060a1085;
  border: 1.5px solid #293546;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .16s;
}
.card:hover {
  box-shadow: 0 8px 32px #27AABD33, 0 1.5px 6px #0004;
  transform: translateY(-4px) scale(1.02);
}
.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;
    align-items: stretch;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F7FA;
  border-radius: 12px;
  box-shadow: 0 2px 10px #1234570c, 0 0.5px 2px #00000018;
  color: #232931 !important;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 650px;
  border-left: 5px solid #27AABD;
  font-size: 1.05rem;
  transition: box-shadow 0.2s, border-color 0.14s;
}
.testimonial-card:hover {
  border-color: #123457;
  box-shadow: 0 6px 26px #27AABD22, 0 2px 8px #0002;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  color: #27AABD;
  margin-top: 6px;
}
/* For lists of testimonials */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}  
/* Feature / Benefits Cards */
.feature-grid, .service-list, .service-categories, .featured-use-cases, .solution-list, .partner-brands ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex-direction: column;
}
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.benefit-grid > div {
  background: #18202b;
  border-radius: 10px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 8px;
  box-shadow: 0 1px 8px #12345722;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 16px 14px 16px;
  transition: box-shadow 0.16s, transform .14s;
}
.benefit-grid > div:hover {
  box-shadow: 0 6px 26px #27AABD15, 0 2px 8px #0002;
  transform: translateY(-3px) scale(1.01);
}
.benefit-grid strong {
  color: #27AABD;
  font-size: 1.15rem;
  margin-bottom: 5px;
}
@media (max-width: 868px) {
  .benefit-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ================================
  CARDS & CLIENT LOGOS
================================ */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 24px;
}
.client-logos img {
  height: 42px;
  width: auto;
  filter: grayscale(30%) brightness(1.2) contrast(1.08);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.19s;
}
.client-logos img:hover {
  filter: grayscale(0%) drop-shadow(0 2px 8px #27AABD55);
  opacity: 1;
}
.partner-brands ul, .solution-list, .service-list, .service-categories, .featured-use-cases {
  list-style: none;
  padding-left: 0;
}
.partner-brands li, .solution-list li, .service-list li, .service-categories li, .featured-use-cases li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #B0BAC6;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid #27AABD40;
  padding-left: 10px;
}
.partner-brands li strong, .solution-list li strong, .service-list li strong, .service-categories li strong, .featured-use-cases li strong {
  color: #27AABD;
}
/* ================================
  BLOG ARTICLES OVERVIEW
================================ */
.blog-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.blog-overview article {
  background: #232931;
  border-radius: 14px;
  box-shadow: 0 2px 11px #27AABD15, 0 1px 4px #0002;
  padding: 22px 16px;
  min-width: 260px;
  max-width: 344px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.16s, box-shadow 0.19s;
}
.blog-overview article:hover {
  box-shadow: 0 8px 24px #27AABD33, 0 1.5px 7px #0003;
  transform: translateY(-4px) scale(1.018);
}
.blog-overview h2 {
  color: #27AABD;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
/* ================================
  CONTACT SECTION
================================ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details ul {
  list-style: none;
  padding-left: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #D9E1ED;
  margin-bottom: 10px;
  background: #181C22;
  padding: 8px 10px;
  border-radius: 6px;
}
.contact-details li img {
  width: 22px;
  height: 22px;
  margin-right: 2px;
}
.map {
  background: #232931;
  border-radius: 12px;
  color: #DEE7F2;
  padding: 16px 14px;
  font-size: 1.05rem;
  margin-top: 12px;
}
/* ================================
  CTA SECTION
================================ */
.cta {
  background: #123457;
  color: #F5F7FA;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 22px #27AABD14, 0 1.5px 7px #0002;
  margin-bottom: 44px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 14px;
}
.cta-btn {
  margin: 0 auto;
  margin-top: 16px;
  box-shadow: 0 2px 7px #17c9ee33, 0 0.5px 2px #0001;
}
/* ================================
  FOOTER
================================ */
footer {
  background: #181C22;
  border-top: 2px solid #151A1E;
  padding: 32px 0 18px 0;
  box-shadow: 0 -2px 14px #27334330;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
  align-items: center;
  justify-content: center;
}
.footer-menu a {
  color: #B0BAC6;
  font-size: 0.96rem;
  transition: color 0.17s;
}
.footer-menu a:hover {
  color: #27AABD;
}
.brand-logo img {
  height: 30px;
  width: auto;
  filter: grayscale(0%) brightness(1.09);
  margin-bottom: 3px;
}
.contact-info {
  color: #7298b8;
  font-size: 0.98rem;
  word-break: break-word;
  text-align: center;
}
.contact-info a {
  color: #27AABD;
  margin-left: 3px;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.social-links img {
  height: 24px;
  width: 24px;
  opacity: 0.8;
  filter: grayscale(32%) brightness(1.1);
  transition: filter 0.2s, opacity 0.15s;
  cursor: pointer;
}
.social-links img:hover {
  filter: grayscale(0%) drop-shadow(0 1px 4px #27AABD99);
  opacity: 1;
}
@media (max-width: 760px) {
  footer .container { gap: 9px; }
  .footer-menu { flex-direction: column; gap: 7px; }
}
/* ================================
  COOKIE CONSENT BANNER
================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #161b21ee;
  border-top: 2px solid #27AABD;
  color: #F5F7FA;
  padding: 18px 16px 22px 16px;
  z-index: 1900;
  box-shadow: 0 -2px 10px #0009;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: cookieSlideUp .7s cubic-bezier(.16,1,.47,1.32);
  font-size: 1rem;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2 1 200px;
  max-width: 470px;
  margin-bottom: 0;
  color: #ecf0f4;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 140px;
  margin-top: 5px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  background: #27AABD;
  color: #123457;
  cursor: pointer;
  transition: background 0.22s, color 0.18s, box-shadow 0.20s;
  margin-right: 4px;
  box-shadow: 0 1px 7px #12345713;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #123457;
  color: #F5F7FA;
  outline: none;
}
.cookie-settings-btn {
  background: #232931;
  color: #F5F7FA;
  border: 1px solid #27AABD;
  margin-right: 0;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #27AABD;
  color: #123457;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    font-size: 0.98rem;
    padding: 15px 5px 20px 5px;
  }
  .cookie-buttons {
    gap: 8px;
    justify-content: flex-start;
  }
}
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #181c22cc;
  z-index: 1950;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieModalFadeIn 0.32s cubic-bezier(.16,1,.47,1.32);
}
@keyframes cookieModalFadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: #232931;
  color: #F5F7FA;
  border-radius: 18px;
  max-width: 370px;
  min-width: 260px;
  box-shadow: 0 8px 40px #27AABD25, 0 2px 8px #0003;
  padding: 22px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalContentSlide .28s cubic-bezier(.16,1,.47,1.32);
  position: relative;
}
@keyframes cookieModalContentSlide {
  from { transform: translateY(40px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color:#27AABD;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F5F7FA;
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #27AABD;
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
  align-self: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  color: #27AABD;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 1980;
}
.cookie-modal-close:hover {
  color: #F5F7FA;
}
/* ================================
  MISCELLANEOUS UTILITIES & RESPONSIVE
================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media(max-width:800px){
  .section{margin-bottom: 42px; padding: 24px 5px;}
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
/* LIST: Space between all main list items */
ul:not(.feature-grid):not(.service-list):not(.service-categories):not(.featured-use-cases):not(.solution-list):not(.partner-brands ul) > li {
  margin-bottom: 12px;
}
/* Spacing for partner brands list */
.partner-brands ul {
  margin-top: 10px;
}
/* Legal/Privacy Text Section Styling */
.legal {
  background: #232931;
  color: #E3E6EA;
  border-radius: 14px;
  box-shadow: 0 2px 14px #12345710;
}
.legal .text-section h2 {
  font-size: 1.1rem;
  color: #27AABD;
  margin-top: 19px;
  margin-bottom: 6px;
}
.legal .text-section p, .legal .text-section ul {
  color: #B0BAC6;
}
.legal .text-section ul li {
  margin-bottom: 7px;
}
/* Confirmation / Thank you section */
.confirmation {
  background: #123457;
  color: #F5F7FA;
  border-radius: 16px;
  box-shadow: 0 4px 33px #27AABD13, 0 1.5px 7px #0002;
  text-align: center;
  margin-bottom: 44px;
}
.confirmation .content-wrapper {
  align-items: center;
  gap: 12px;
}
.confirmation .cta-btn {
  margin-top: 10px;
}
@media (max-width: 800px) {
  .hero .content-wrapper, .blog-intro .content-wrapper {
    padding-top: 12px;
    padding-bottom: 13px;
    gap: 16px;
  }
  .content-wrapper { gap: 18px; }
  .blog-overview { gap: 12px; }
  .client-logos { gap: 10px; }
}
@media (max-width: 600px) {
  .benefit-grid, .card-container, .content-grid, .footer-menu {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .blog-overview, .client-logos {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .testimonials .testimonial-card, .testimonial-list > .testimonial-card {
    min-width: unset;
    max-width: none;
    width: 100%;
  }
}
/* ================================
  SCROLLBAR & SELECTION (INDUSTRIAL MODERN FEEL)
================================ */
html::-webkit-scrollbar {
  width: 8px;
  background: #161b21;
}
html::-webkit-scrollbar-thumb {
  background: #123457;
  border-radius: 6px;
}
::selection {
  background: #27AABD;
  color: #123457;
}
/* ================================
  ANIMATION HINT (MICRO-EFFECTS)
================================ */
.cta-btn, .cookie-btn, .cookie-settings-btn {
  transition: background 0.2s, color 0.14s, box-shadow 0.22s;
}
.card, .testimonial-card, .benefit-grid > div, .blog-overview article {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .benefit-grid > div:hover, .blog-overview article:hover {
  box-shadow: 0 4px 22px #27AABD33, 0 2px 8px #191d23bb;
  transform: translateY(-6px) scale(1.025);
}
/* ================================
  END OF STYLES
================================ */
