/* RESET & NORMALIZE (Industrial Modern base) */
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, main,
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #1A2126;
  color: #F2F6F9;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #ECA82F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD569;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* BRAND FONTS (Industrial Accent) */
h1, h2, h3, h4, .brand-logo, .btn {
  font-family: 'Inter', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  color: #F2F6F9;
  line-height: 1.15;
}
h2 {
  font-size: 2.0rem;
  color: #ECA82F;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.24);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #F2F6F9;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ECA82F;
}
p, li, td, th, small, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #DCE0E3;
  font-size: 1rem;
}
small {
  font-size: 0.96rem;
  color: #A4A8AD;
}
strong {
  font-weight: bold;
  color: #FFD569;
}

/* SPACING & LAYOUT */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #22282E;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(15, 22, 29, 0.16);
}
@media (max-width: 768px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #232832;
  border: 1px solid #292E34;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 26px rgba(10,20,34,0.16);
  margin-bottom: 20px;
  position: relative;
  min-width: 280px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, border 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 6px 40px rgba(50,80,120,0.23);
  border: 1.5px solid #ECA82F;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* Testimonials, Features, Cards */
.testimonial-card {
  background: #F8F9FA;
  color: #222931;
  border: 1.5px solid #BCBCC1;
  border-radius: 15px;
  box-shadow: 0 3px 18px rgba(19,21,25,0.11);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  max-width: 650px;
  position: relative;
}
.testimonial-card h3 {
  color: #19324D;
  margin-bottom: 10px;
}
.testimonial-card p {
  color: #373D45;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #8B909B;
  font-style: italic;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
    max-width: 100%;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #242C33;
  border-radius: 10px;
  border: 1px solid #31363C;
  padding: 22px;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature-item:hover {
  border: 1.5px solid #FDBA3B;
  box-shadow: 0 6px 28px rgba(80,72,50,0.11);
}

/* Brand/Industrial Modern Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  padding: 12px 32px;
  border-radius: 24px 6px 24px 6px;
  border: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
  letter-spacing: 0.01em;
  margin-right: 16px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 9px rgba(28,38,49,0.09);
}
.btn:last-child { margin-right: 0; }
.btn-primary {
  background: linear-gradient(90deg, #19324D 90%, #293C51 100%);
  color: #F2F6F9;
  border: 1.5px solid #ECA82F;
  text-shadow: 0 2px 8px #22293144;
}
.btn-primary:hover, .btn-primary:focus {
  background: #223E66;
  color: #FFD569;
  border-color: #FFD569;
  box-shadow: 0 4px 18px #ECA82F33;
}
.btn-secondary {
  background: #F2F6F9;
  color: #19324D;
  border: 1.5px solid #ECA82F;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFD569;
  color: #19324D;
  border-color: #FFD569;
}

/* HEADER & NAVIGATION */
header {
  background: #1A2126;
  border-bottom: 2px solid #232F3E;
  box-shadow: 0 1.5px 9px rgba(22,32,46,0.04);
  z-index: 20;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
  position: relative;
}
.brand-logo img {
  height: 48px;
  min-width: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: #F2F6F9;
  font-size: 1.09rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 10px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ECA82F;
  color: #19324D;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* HERO / PROMO */
.hero {
  background: linear-gradient(132deg,#19324D 70%, #232931 100%) no-repeat;
  border-radius: 0 0 28px 28px;
  padding: 70px 0 52px 0;
  margin-bottom: 30px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.hero h1 {
  color: #F2F6F9;
  font-size: 2.55rem;
  font-family: 'Inter', Arial, sans-serif;
  text-shadow: 0 4px 22px #0006;
}
.hero p {
  color: #FFD569;
  font-size: 1.25rem;
}

/* NAVIGATION RESPONSIVE/MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #FFD569;
  background: #232832;
  border-radius: 6px;
  padding: 6px 13px;
  box-shadow: 0 2px 6px #292e3450;
  margin-left: 20px;
  transition: background 0.2s;
  z-index: 51;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ECA82F;
  color: #19324D;
}
@media (max-width: 980px) {
  .main-nav,
  .cta-buttons {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: #212631;
  border-left: 2.5px solid #ECA82F;
  box-shadow: -8px 0 44px #191d2370;
  z-index: 110;
  transition: transform 0.33s cubic-bezier(.85,0,.24,1), right 0.2s;
  transform: translateX(100%);
}
.mobile-menu.open {
  right: 0;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #313338;
  border-radius: 50%;
  font-size: 2.1rem;
  margin: 18px 16px 4px 0;
  color: #FFD569;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD569;
  color: #19324D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 16px 28px 20px 28px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Inter', Arial, sans-serif;
  color: #FFD569;
  padding: 12px 6px;
  border-radius: 5px;
  display: block;
  transition: background 0.17s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD569;
  color: #19324D;
}
@media (max-width: 530px) {
  .mobile-menu {
    width: 95vw;
  }
}

/* FEATURE & SERVICE LISTS (e.g., index, services) */
.feature-grid, .service-list, .download-list, .case-study-list, .blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item, .download-list>div, .blog-grid>article, .case-study-list>div {
  background: #232832;
  border: 1.5px solid #31363C;
  border-radius: 13px;
  box-shadow: 0 3px 14px rgba(32,42,52,0.13);
  padding: 24px 20px;
  color: #F2F6F9;
  min-width: 265px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: border 0.18s, box-shadow 0.18s;
}
.service-item h2,
.download-list h3 {
  color: #FFD569;
  font-size: 1.24rem;
  margin-bottom: 6px;
}
.service-list .service-price, .service-item .service-price {
  font-size: 1.05rem;
  color: #ECA82F;
  font-weight: 600;
  margin-top: 8px;
}
.service-item:hover, .download-list>div:hover, .blog-grid>article:hover {
  border: 1.5px solid #ECA82F;
  box-shadow: 0 8px 32px #ECA82F23;
}
@media (max-width: 768px) {
  .feature-grid,
  .service-list,
  .download-list,
  .case-study-list,
  .blog-grid {
    flex-direction: column;
    gap: 14px;
  }
  .service-item, .download-list>div, .blog-grid>article, .case-study-list>div {
    min-width: 0;
    width: 100%;
  }
}

/* FOOTER */
footer {
  background: #1A2126;
  border-top: 2px solid #232F3E;
  padding: 38px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer .content-wrapper > div {
  min-width: 180px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer img {
  width: 46px;
  margin-bottom: 4px;
}
footer a {
  color: #FFD569;
  font-size: 0.99rem;
}
footer a:hover {
  color: #ECA82F;
  text-decoration: underline;
}
.footer-utility {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  font-size: 0.97rem;
  color: #8B909B;
}
.footer-utility a img {
  width: 26px;
  height: 26px;
  opacity: 0.85;
  transition: opacity 0.14s, filter 0.14s;
}
.footer-utility a:hover img {
  opacity: 1;
  filter: drop-shadow(0 1px 4px #ECA82F45);
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .footer-utility {
    flex-direction: row;
    gap: 9px;
  }
}

/* BLOG, CATEGORIES */
.categories {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.categories li {
  background: #19324D;
  color: #FFD569;
  border-radius: 6px;
  font-size: 0.97rem;
  padding: 5px 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.categories li:hover {
  background: #ECA82F;
  color: #19324D;
  cursor: pointer;
}

/* CREDENTIALS, ICONIC ACCENTS */
.credentials ul, .team-overview ul, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credentials li, .team-overview li, .contact-info li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.credentials img, .team-overview img, .contact-info img {
  width: 28px;
  height: 28px;
}

/* CLIENT LOGOS (Index, Slider) */
.client-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.client-logos img {
  width: 70px;
  filter: grayscale(1) contrast(1.2) brightness(0.86);
  transition: filter 0.18s;
}
.client-logos img:hover {
  filter: grayscale(0.3) contrast(1.4) brightness(1.03) drop-shadow(0 2px 8px #ECA82F55);
}
@media (max-width: 650px) {
  .client-logos {
    gap: 19px;
  }
  .client-logos img {
    width: 55px;
  }
}

/* TEXT/INFO SECTIONS */
.text-section, .intro-session, .downloads {
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .text-section{
    font-size: 0.97rem;
  }
}

/* CONTACT PAGE */
.contact-info li a {
  color: #FFD569;
  text-decoration: underline dotted;
}
.contact-info li a:hover {
  color: #ECA82F;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232832;
  color: #F2F6F9;
  box-shadow: 0 -4px 28px #19324D44;
  padding: 25px 12px 14px 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
  z-index: 2000;
  animation: cookieBannerIn 0.5s cubic-bezier(.6,0,.19,1);
  transition: transform 0.28s;
}
@keyframes cookieBannerIn { from { transform: translateY(80px); opacity: 0;} to { transform: translateY(0); opacity:1; } }
.cookie-banner .cookie-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.cookie-banner .btn {
  min-width: 125px;
  font-size: 1.01rem;
}
.cookie-banner .btn-primary { background: #ECA82F; color: #19324D; border-color: #FFD569;}
.cookie-banner .btn-primary:hover { background: #FFD569; color: #1A2126; }
.cookie-banner .btn-secondary { background: #31363C; color: #FFD569; border-color: #ECA82F; }
.cookie-banner .btn-secondary:hover { background: #222931; color: #FFD569; border-color: #FFD569; }
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px 5px 12px 5px; }
  .cookie-banner .cookie-buttons { width: 100%; margin-left: 0; justify-content: flex-start; gap: 10px; }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,36,43,0.84);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeInModalBg 0.27s;
}
@keyframes fadeInModalBg { from {opacity: 0;} to {opacity: 1;} }
.cookie-modal {
  background: #232832;
  color: #F2F6F9;
  border-radius: 14px;
  box-shadow: 0 10px 34px #10141860;
  padding: 34px 26px;
  max-width: 380px;
  min-width: 250px;
  width: 90vw;
  position: relative;
  animation: modalIn 0.34s cubic-bezier(.62,.07,.3,1.20); 
}
@keyframes modalIn { from {transform: scale(0.96) translateY(40px); opacity:0;} to {transform: scale(1) translateY(0); opacity:1;}}
.cookie-modal h4 { color: #FFD569; font-size: 1.23rem; margin-bottom: 12px;}
.cookie-categories { display: flex; flex-direction: column; gap: 12px; margin: 12px 0;}
.cookie-category {
  display: flex; align-items: center; gap: 14px; padding: 11px 0;
  border-bottom: 1px solid #31363C;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label { color: #F2F6F9; font-size: 1rem; }
.cookie-toggle {
  width: 40px; height: 22px;
  background: #31363C;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle[data-checked='true'] { background: #ECA82F; }
.cookie-toggle-knob {
  display: block; position: absolute; top: 2px; left: 3px;
  width: 16px; height: 16px;
  background: #fff; border-radius: 50%; transition: left 0.18s, background 0.2s;
}
.cookie-toggle[data-checked='true'] .cookie-toggle-knob {
  left: 21px;
  background: #19324D;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  min-width: 110px;
}
.cookie-modal .btn-primary { background: #ECA82F; color: #19324D;}
.cookie-modal .btn-primary:hover { background: #FFD569; color: #1A2126;}
.cookie-modal .btn-secondary { background: #31363C; color: #FFD569;}
.cookie-modal .btn-secondary:hover { background: #232931; color: #FFD569;}
.cookie-modal .btn-close {
  position: absolute; right: 11px; top: 10px;
  border-radius: 50%; background: #31363C;
  color: #FFD569; font-size: 1.24rem;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.cookie-modal .btn-close:hover, .cookie-modal .btn-close:focus { background: #FFD569; color: #1A2126; }

/* Micro Animations for Cards/Buttons */
.card, .feature-item, .service-item, .testimonial-card, .btn {
  transition: box-shadow 0.16s, border 0.15s, transform 0.11s, background 0.16s, color 0.16s;
}
.card:active, .btn:active, .feature-item:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* GENERAL RESPONSIVE */
@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.09rem; }
}
@media (max-width: 415px) {
  .container { padding: 0 6px; }
  footer .container, header .container { padding: 0 6px; }
  .hero { padding: 32px 0 24px 0; }
}

/* ACCESSIBILITY */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2.5px solid #FFD569;
  outline-offset: 1.5px;
  box-shadow: 0 0 0 2px #19324D44;
  z-index: 12;
}

/* Miscellaneous & Utility */
.hr { height: 1.5px; background: #2c3037; border: 0; margin: 16px 0; width: 100%; }
.hide { display: none !important; }
.show { display: block !important; }

/* Ensured Flexbox Compliance - NO Grid/Columns Used */
