/* ========== CSS RESET & 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #23242b;
  color: #f3f3f4;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.13s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ========== BRAND TYPOGRAPHY ========== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #F6C700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.12;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #8D99AE;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #F6C700;
  margin-bottom: 8px;
  line-height: 1.18;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #8D99AE;
  margin-bottom: 8px;
}
p, li, blockquote, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #E0E0E3;
  letter-spacing: 0.01em;
}
strong {
  color: #fff;
  font-weight: 700;
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #242733;
  border-radius: 14px;
  box-shadow: 0 4px 32px 0 rgba(43,45,66,0.11);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #23242b;
  border-bottom: 2px solid #2B2D42;
  box-shadow: 0 3px 17px 0 rgba(0,0,0,0.09);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F6C700;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.15s, color 0.15s;
}
nav a:hover,
nav a:focus {
  color: #fff;
  border-bottom: 2px solid #8D99AE;
}
nav .cta-btn {
  margin-left: 12px;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  background: #F6C700;
  color: #23242b;
  border-radius: 6px;
  box-shadow: 0 2px 8px 0 rgba(246,199,0,0.12);
  padding: 12px 28px;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.12s, box-shadow 0.25s;
  position: relative;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #FFD600;
  color: #23242b;
  box-shadow: 0 4px 16px 0 rgba(246,199,0,0.18);
}

.mobile-menu-toggle {
  display: none;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2B2D42;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  box-shadow: 8px 0 32px 0 rgba(27,27,44,0.56);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F6C700;
  font-size: 2rem;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  margin-bottom: 32px;
  padding: 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  padding: 14px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F6C700;
  border-bottom: 2px solid #F6C700;
}

@media (max-width: 1060px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2.3rem;
    color: #F6C700;
    cursor: pointer;
    z-index: 220;
    margin: 0 0 0 8px;
    padding: 4px 8px;
    transition: color 0.2s;
  }
  .cta-btn {
    padding: 12px 12px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.1rem;
    padding: 12px 0;
  }
  .mobile-menu-close {
    font-size: 1.75rem;
  }
}

/* ========== HERO SECTIONS ========== */
.hero {
  background: #222329;
  background-image: linear-gradient(90deg, #222329 0%, #23242b 70%);
  border-bottom: 1px solid #2B2D42;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 0 0 40px 0;
}
.hero .container {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 20px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  align-items: flex-start;
  margin-top: 42px;
  margin-bottom: 42px;
  gap: 18px;
}
.hero h1 {
  color: #F6C700;
  margin-bottom: 12px;
}
.hero p {
  color: #E0E0E3;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.hero .cta-btn {
  margin-top: 11px;
}

@media (max-width: 768px) {
  .hero {
    padding: 0 0 24px 0;
    min-height: 240px;
  }
  .hero .content-wrapper {
    margin-top: 28px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ========== FLEX-BASED LAYOUT UTILS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23242b;
  border-radius: 9px;
  box-shadow: 0 2px 16px 0 rgba(100,102,128,0.20);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  flex: 1 1 250px;
  min-width: 240px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 26px 0 rgba(246,199,0,0.19);
  transform: translateY(-3px) scale(1.012);
}
.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;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #23242B;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(43,45,66,0.16);
  margin-bottom: 20px;
  flex: 1 1 330px;
  min-width: 250px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0 rgba(38,37,32,0.19);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p, .testimonial-card strong {
  color: #222329;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #8D99AE;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 28px 0 0 0;
}
.feature-grid > div {
  background: #2B2D42;
  border-radius: 10px;
  padding: 26px 22px 18px 22px;
  min-width: 220px;
  max-width: 330px;
  box-shadow: 0 2px 18px 0 rgba(139,137,165,0.10);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border: 1.5px solid #393b4a;
  transition: box-shadow 0.16s, border-color 0.13s;
}
.feature-grid > div:hover {
  border-color: #F6C700;
  box-shadow: 0 6px 32px 0 rgba(246,199,0,0.15);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  filter: brightness(90%) contrast(1.2);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0;
}
.service-list > div {
  background: #2B2D42;
  border-radius: 10px;
  padding: 22px;
  min-width: 250px;
  max-width: 365px;
  box-shadow: 0 2px 14px 0 rgba(139,137,165,0.10);
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, border-color 0.13s;
  border: 1.5px solid #393b4a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.service-list > div:hover {
  border-color: #F6C700;
  box-shadow: 0 7px 28px 0 rgba(246,199,0,0.12);
}

.benefit-list {
  margin: 14px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #F6C700;
}
.benefit-list li::before {
  content: '\2022';
  color: #8D99AE;
  font-size: 1.2em;
  margin-right: 10px;
  font-weight: bold;
}
.industry-list, .blog-categories ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-left: 20px;
}
.industry-benefit-list {
  margin-top: 22px;
}

.job-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 14px 0 18px 0;
}
.job-listings > div {
  background: #2B2D42;
  border: 1.5px solid #393b4a;
  border-radius: 9px;
  padding: 22px 17px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 330px;
  box-shadow: 0 2px 14px 0 rgba(139,137,165,0.07);
}

.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.blog-post-list > div {
  background: #2B2D42;
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(80,82,110,0.09);
  padding: 18px 16px 14px 16px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 16px;
  transition: box-shadow 0.13s;
}
.blog-post-list > div:hover {
  box-shadow: 0 4px 24px 0 rgba(246,199,0,0.09);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.contact-details > div {
  background: #2B2D42;
  border-radius: 8px;
  padding: 12px 13px;
  min-width: 225px;
  box-shadow: 0 2px 12px 0 rgba(146,148,168,0.07);
  display: flex;
  align-items: center;
  gap: 11px;
  color: #F6C700;
  font-size: 1rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.map {
  background: #242733;
  border-radius: 8px;
  min-height: 120px;
  margin-bottom: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.notice {
  background: #23242b;
  color: #F6C700;
  border-left: 4px solid #8D99AE;
  border-radius: 4px;
  padding: 16px 18px;
  margin: 16px 0 0 0;
  font-size: 0.98rem;
}

@media (max-width: 1024px) {
  .feature-grid,
  .service-list,
  .job-listings,
  .blog-post-list,
  .card-container,
  .testimonial-list,
  .contact-details {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature-grid > div,
  .service-list > div,
  .blog-post-list > div {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 24px 3vw;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 10px;
  }
  .testimonial-list,
  .card-container,
  .feature-grid,
  .service-list,
  .job-listings,
  .blog-post-list {
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 15px 10px;
  }
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
  .map {
    padding: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 5vw;
  }
}

/* ========== FOOTER ========== */
footer {
  background: #23242b;
  border-top: 2px solid #2B2D42;
  box-shadow: 0 -2px 18px 0 rgba(0,0,0,0.07);
  padding: 38px 0 15px 0;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-brand img {
  width: 50px;
  height: auto;
  margin-bottom: 9px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.98rem;
  color: #8D99AE;
}
footer nav a {
  color: #8D99AE;
  transition: color 0.14s;
  padding: 0 4px;
}
footer nav a:hover {
  color: #F6C700;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  color: #E0E0E3;
  font-size: 0.98rem;
  align-items: center;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(55%) brightness(1.2) drop-shadow(0 1px 4px #22232975);
  transition: filter 0.17s, transform 0.15s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0%) brightness(1.2) drop-shadow(0 2px 8px #F6C70066);
  transform: scale(1.07);
}
footer small {
  margin-top: 11px;
  color: #8D99AE;
  font-size: 0.93rem;
}

@media (max-width: 900px) {
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========== BUTTONS & FORMS ========== */
button, .button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #F6C700;
  color: #23242b;
  border-radius: 6px;
  border: none;
  padding: 12px 28px;
  margin: 0 8px 0 0;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(246,199,0,0.10);
  transition: background 0.14s, color 0.11s, box-shadow 0.22s;
  display: inline-block;
}
button:hover, .button:hover, button:focus, .button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #FFD600;
  color: #23242b;
  box-shadow: 0 4px 18px 0 rgba(246,199,0,0.18);
}

/* ========== COOKIES BANNER & MODAL ========== */
#cookie-banner,
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2B2D42;
  color: #fff;
  z-index: 2500;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 60px 20px 32px;
  box-shadow: 0 -2px 20px 0 rgba(82,82,110,0.20);
  font-size: 1rem;
  animation: cookie-slidein 0.61s cubic-bezier(.75,0,.24,1);
}
@keyframes cookie-slidein {
  0% { transform: translateY(100%); opacity: 0; }
  84% { transform: translateY(0); opacity: 1; }
  100% {opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin: 0 16px 0 0;
  flex: 1 1 300px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-banner button, .cookie-banner .button {
  font-size: 1rem;
  padding: 8px 18px;
  background: #F6C700;
  color: #23242b;
  border-radius: 5px;
  border: none;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #FFD600;
  color: #23242b;
}
.cookie-banner .cookie-settings-btn {
  background: #8D99AE;
  color: #23242b;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #b2b8c7;
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(43,45,66,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3400;
  animation: fade-in-modal 0.25s;
}
@keyframes fade-in-modal {
  from {opacity: 0; }
  to {opacity: 1; }
}
.cookie-modal {
  background: #23242b;
  border-radius: 14px;
  padding: 30px 24px;
  max-width: 420px;
  width: 96vw;
  color: #fff;
  position: relative;
  box-shadow: 0 8px 50px 0 rgba(41,43,66,0.25);
  animation: slide-modal-in 0.34s cubic-bezier(.8,0,.28,1);
}
@keyframes slide-modal-in {
  from {transform: translateY(30px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-modal h3 {
  color: #F6C700;
  margin-bottom: 14px;
  font-size: 1.38rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  margin-bottom: 13px;
}
.cookie-modal .cookie-description {
  color: #8D99AE;
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  color: #F6C700;
  border: none;
  font-size: 1.24rem;
  cursor: pointer;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 16px;
    gap: 19px;
    font-size: 0.97rem;
  }
}
/* ========== UTILITY & DECORATIVE ACCENTS ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #2B2D42;
}
::-webkit-scrollbar-thumb {
  background: #393b4a;
  border-radius: 6px;
}
::-webkit-selection {
  background: #FFD600;
  color: #23242b;
}
::selection {
  background: #FFD600;
  color: #23242b;
}

/* ========== MICRO ANIMATIONS ========== */
a, button, .cta-btn, .card, .service-list > div,
.testimonial-card, .footer-social a img, nav a, .feature-grid > div, .blog-post-list > div {
  transition: box-shadow 0.13s, transform 0.13s, color 0.17s, border 0.13s, background 0.13s;
}

/* ========== VISUAL DIVIDERS ========== */
hr {
  border: none;
  border-top: 2px solid #393b4a;
  margin: 32px 0;
}

/* ========== END ========== */
