/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.46;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181e24;
  color: #f4f7fc;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
button, [type="button"], [type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
:root {
  --primary: #21394e;
  --primary-dark: #181e24;
  --primary-light: #254159;
  --secondary: #f8f9fb;
  --accent: #FF8735;
  --soft-metal: #343a40;
  --steel: #4f5a63;
  --border-metal: #232c34;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* 1. LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
  padding: 16px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* PAGE SECTIONS spacing */
.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FLEX LAYOUTS (MANDATORY PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--primary-dark);
  border: 1px solid var(--border-metal);
  border-radius: 14px;
  box-shadow: 0 3px 24px 0 #12171e49;
  padding: 24px;
  transition: box-shadow 0.22s, border 0.15s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 #12171e6a;
  border: 1.5px solid var(--accent);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 #23304418;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  color: #232c34;
  border: 1.5px solid #d8dde4;
  transition: border 0.18s, box-shadow 0.18s;
  position: relative;
}
.testimonial-card:hover {
  border: 1.5px solid var(--accent);
  box-shadow: 0 6px 30px 0 #aab2be31;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO BANNER */
.hero {
  background: linear-gradient(95deg, #232c34 65%, var(--primary) 100%);
  color: #f8f9fb;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 0 40px 0 #212e3c38 inset;
  margin-bottom: 44px;
  padding: 64px 0 48px 0;
}
.hero h1 {
  font-size: 2.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero .subtitle {
  font-size: 1.2rem;
  font-family: var(--font-body);
  margin-bottom: 28px;
}

/* NAVIGATION (DESKTOP) */
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #dde0e3;
  font-weight: 500;
  opacity: 0.88;
  position: relative;
  padding: 5px 0;
  letter-spacing: 0.1px;
  transition: color 0.18s, opacity 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--accent);
  opacity: 1;
}

.logo-link img {
  height: 44px;
  width: auto;
  filter: brightness(1.15) contrast(1.2);
  display: block;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 32px;
  background: var(--steel);
  color: var(--secondary);
  box-shadow: 0 2px 10px 0 #10151d2d;
  border: 1.5px solid #35414c;
  letter-spacing: 0.08rem;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s, border 0.15s;
  margin-left: 16px;
}
.cta.primary {
  background: var(--accent);
  color: #23292f;
  border: 1.5px solid var(--accent);
  box-shadow: 0 5px 28px -5px #ff87354d;
}
.cta:hover, .cta.primary:hover {
  background: #ed7d2b;
  color: #fafcff;
  border: 1.5px solid #ed7d2b;
  box-shadow: 0 6px 32px -6px #ff873565;
}

/* MOBILE MENU (burger hamburger navigation) */
.mobile-menu-toggle {
  display: none;
  background: var(--soft-metal);
  color: var(--secondary);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 2rem;
  margin-left: 16px;
  z-index: 1601;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 3px 18px 0 #1b253038;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: #1b2632;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #181e2495;
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.77,0,.175,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  background: #fff;
  color: #232c34;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 2.1rem;
  box-shadow: 0 3px 18px 0 #1a253038;
  transition: background 0.13s, color 0.13s;
  z-index: 2002;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accent);
  color: var(--primary-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 96px;
  width: 100%;
  padding: 0 38px;
  z-index: 2001;
}
.mobile-nav a {
  display: flex;
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: #232c34;
  padding: 14px 0;
  border-radius: 6px;
  font-weight: 600;
  background: #f8f9fbe7;
  transition: background 0.17s, color 0.13s;
  box-shadow: 0 1px 9px 0 #232c3438;
  margin-bottom: 12px;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: #23232a;
}
@media (max-width: 1100px) {
  nav.main-nav { gap: 13px; }
}
@media (max-width: 1024px) {
  .header-container {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  nav.main-nav { gap: 7px; }
}
@media (max-width: 768px) {
  nav.main-nav {
    display: none;
  }
  .cta, .cta.primary {
    font-size: 1rem;
    padding: 12px 24px;
    margin-left: 6px;
  }
  .logo-link img {
    height: 32px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section, main > section {
    padding: 28px 10px;
  }
}

@media (max-width: 520px) {
  .container { padding: 0 3vw; }
  .mobile-nav { padding: 0 5vw; }
  .mobile-menu-close { top: 11px; right: 13px; }
}

/* TYPOGRAPHY: INDUSTRIAL MODERN HIERARCHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
}
h1 { font-size: 2.3rem; line-height: 1.13; margin-bottom: 16px; }
h2 { font-size: 1.7rem; line-height: 1.24; margin-bottom: 14px; }
h3 { font-size: 1.24rem; line-height: 1.28; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5, h6 { font-size: 1rem; font-weight: 600; }
p, .subtitle {
  font-family: var(--font-body);
  font-size: 1.03rem;
  color: #e8ebf1;
  max-width: 750px;
}
.subtitle { font-size: 1.15rem; color: #ebeef2; }

/* EMPHASIS TEXTS */
strong { font-weight: bold; color: var(--accent); }
.em, em { font-style: italic; color: #c1c7ce; }

/* GENERAL LINK STYLES */
a {
  text-decoration: none;
  color: var(--accent);
  transition: color 0.16s;
}
a:hover, a:focus {
  color: #fa6f05;
}

/* FEATURE LISTS / SERVICE ICONS */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 14px;
}
.feature-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 210px;
  max-width: 300px;
  background: #21394e24;
  border-radius: 10px;
  padding: 20px 22px 20px 21px;
  border: 1.5px solid #353d47;
  box-shadow: 0 2px 14px 0 #232c3420;
}
.feature-list img {
  width: 44px; height: 44px;
  filter: grayscale(1) brightness(1.2) contrast(1.13);
}

/* SERVICES OVERVIEW */
.services-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  justify-content: flex-start;
}
.services-overview > div {
  background: #232c34;
  border-radius: 12px;
  padding: 28px 20px 28px 20px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 5px 26px 0 #21394e1d;
  border: 1.5px solid #313d46;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.18s, border 0.18s, background 0.13s;
}
.services-overview > div:hover {
  border: 1.5px solid var(--accent);
  box-shadow: 0 14px 34px 0 #ff873537;
  background: #293649;
}
.services-overview img {
  width: 40px; height: 40px; margin-bottom: 10px;
  filter: grayscale(0.5) brightness(1.22) contrast(1.17);
}
.price {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.22rem;
  font-weight: 600;
  margin-top: 13px;
}

/* TESTIMONIAL SLIDER & LISTS */
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.rating-summary, .ratings {
  color: #eceff1;
  font-family: var(--font-body);
  font-size: 1.03rem;
  margin-top: 10px;
}

/* CASE STUDY LISTS (REFERENCE PAGE) */
.case-study-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
}
.case-study-brief {
  background: #293343;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 22px 21px;
  color: #e4ecf7;
  flex: 1 0 260px;
  min-width: 240px;
  box-shadow: 0 2px 14px 0 #21394e14;
}

/* BLOG / ARTICLE */
.blog-list {
  gap: 32px;
}
.blog-list h2 {
  margin-bottom: 8px;
}
.blog-list article {
  background: #222932;
  border: 1.5px solid #313942;
  border-radius: 10px;
  padding: 22px 19px 18px 23px;
  margin-bottom: 20px;
  box-shadow: 0 1px 9px #22304014;
}
.blog-list .read-more {
  color: var(--accent);
  font-weight: 600;
  margin-top: 5px;
  font-size: 1.01rem;
}
.tag {
  background: #2d425c;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.97rem;
  border-radius: 7px;
  padding: 2.5px 13px;
  margin-right: 9px;
  font-weight: 500;
}

/* PRICING TABLES */
.pricing-table, .services-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #232c34;
  border-radius: 13px;
  box-shadow: 0 3px 19px 0 #23304418;
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td, .services-table th, .services-table td {
  text-align: left;
  padding: 17px 12px;
  font-size: 1.08rem;
}
.pricing-table thead th, .services-table thead th {
  background: var(--primary-light);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: 700;
  border-bottom: 2.6px solid var(--accent);
}
.pricing-table tbody tr, .services-table tbody tr {
  border-bottom: 1px solid #35404c;
}
.pricing-table tbody tr:last-child, .services-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table td, .services-table td {
  color: #ebeff4;
}
.pricing-table tr:hover, .services-table tr:hover {
  background: #283344;
}
.pricing-table td:last-child, .services-table td:last-child {
  text-align: right;
}
.services-table td img {
  max-width: 32px;
  margin-right: 0;
}

/* USP & FAQ LISTS */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 12px 0 13px 0;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.faq-item {
  background: #283344;
  border-radius: 9px;
  box-shadow: 0 1.5px 9px 0 #1a252f1b;
  padding: 16px 21px;
  min-width: 210px;
  max-width: 370px;
  flex: 1;
  color: #ecf0f3;
}

/* CONTACT AND MAP SECTION */
.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.07rem;
}
.map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.map-placeholder {
  width: 350px;
  height: 180px;
  background: #273343;
  border-radius: 9px;
  color: #bcc2cb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1rem;
}

/* LIST MARKERS (WHEN NEEDED) */
ul, .usp-list, .text-section ul {
  padding-left: 0;
}
.text-section ul, .usp-list {
  list-style: none;
}
.text-section ul li:before, .usp-list li:before {
  content: "\2022";
  color: var(--accent);
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
}

/* LEGAL PAGES (GDPR, COOKIES) */
.legal-text {
  background: #242c35c4;
  border-radius: 9px;
  padding: 23px 26px 23px 20px;
  color: #dcdbf5;
  margin-top: 10px;
  font-size: 1.03rem;
  line-height: 1.69;
}
.legal-text h2, .legal-text h3 {
  color: var(--accent);
  margin-bottom: 8px;
}
.legal-text h2 { font-size: 1.2rem; }
.legal-text h3 { font-size: 1.04rem; }

/* FOOTER */
footer {
  background: #16242f;
  border-top: 3px solid #223044;
  color: #b8c4d1;
  padding: 40px 0 16px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  justify-content: center;
  margin-bottom: 23px;
}
.footer-nav a {
  color: #e6eaf0;
  font-size: 1.04rem;
  opacity: 0.82;
  font-family: var(--font-body);
  transition: color 0.17s, opacity 0.13s;
}
.footer-nav a:hover {
  color: var(--accent);
  opacity: 1;
}
.footer-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.footer-info img {
  width: 44px; height: auto;
  margin-bottom: 4px;
}
.footer-info p {
  font-size: 0.99rem;
  color: #9ba5b0;
}

/* RESPONSIVE: FLEX DIRECTION AND GAP ADJUSTMENTS */
@media (max-width: 1050px) {
  .feature-list { gap: 14px; }
}
@media (max-width: 880px) {
  .feature-list, .services-overview, .testimonial-slider, .testimonial-list, .case-study-list, .faq-list, .contact-details, .map-section, .content-grid { flex-direction: column; gap: 20px; }
  .services-overview > div, .faq-item, .card, .testimonial-card { max-width: 97vw; min-width: 180px; }
}
@media (max-width: 768px) {
  .hero { padding: 44px 0 32px 0; }
  .hero h1 { font-size: 1.48rem; }
  .section, main > section { margin-bottom: 32px; }
  .content-wrapper, .blog-list { gap: 19px; }
  .footer-nav { gap: 8px; }
  .footer-info img { width: 29px; }
}
@media (max-width: 620px) {
  .services-overview, .feature-list, .testimonial-slider, .testimonial-list, .case-study-list, .faq-list, .contact-details, .map-section, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 430px) {
  .content-wrapper, .blog-list { gap: 9px; }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .feature-list li, .services-overview > div, .faq-item, .testimonial-card, .blog-list article {
  transition: box-shadow 0.18s, border 0.18s, background 0.13s;
}
.cta, .cta.primary, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: background 0.2s, color 0.14s, box-shadow 0.19s;
}
input, textarea, select {
  transition: border 0.17s, box-shadow 0.16s;
  font-family: var(--font-body);
}

/* ENSURE MINIMUM MARGINS BETWEEN CARDS/SECTIONS */
.card, .feature-list li, .services-overview > div, .faq-item, .testimonial-card, .case-study-brief, .blog-list article {
  margin-bottom: 20px;
}
/* Remove last margin in flex containers (mobile) */
.card:last-child, .feature-list li:last-child, .services-overview > div:last-child, .faq-item:last-child, .testimonial-card:last-child, .case-study-brief:last-child, .blog-list article:last-child {
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(95deg, #232c34 82%, #21394e 100%);
  box-shadow: 0 -2px 20px 0 #2028325d;
  color: #f8f9fb;
  padding: 20px 14px 22px 19px;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 1.01rem;
  border-top: 2.5px solid #3e4b5a;
  animation: cookiefadein 0.38s ease-out;
}
@keyframes cookiefadein {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  font-family: var(--font-body);
  color: #f8f9fb;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner .cookie-btn {
  display: flex;
  align-items: center;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.17s, color 0.13s, box-shadow 0.13s;
  margin-right: 3px;
}
.cookie-banner .cookie-btn.accept {
  background: var(--accent);
  color: #232c34;
  box-shadow: 0 3px 18px 0 #ff87352c;
}
.cookie-banner .cookie-btn.reject {
  background: #253344;
  color: #f8f9fb;
  border: 1.5px solid #434e5b;
}
.cookie-banner .cookie-btn.settings {
  background: none;
  color: #f8f9fb;
  border: 1.5px solid #6b7d90;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ff9040;
  color: #181e24;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #222d35;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
@media (max-width: 670px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 13px; padding-top: 12px; }
  .cookie-banner .cookie-actions { flex-wrap: wrap; }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 2200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #08101895;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein 0.22s;
}
.cookie-modal-content {
  background: #232c34;
  border-radius: 13px;
  color: #f8f9fb;
  min-width: 300px; max-width: 96vw;
  padding: 38px 30px 37px 34px;
  box-shadow: 0 7px 50px 0 #2e394b63;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  color: var(--accent);
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  margin-bottom: 11px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 4px;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.cookie-modal-content .essential {
  font-weight: 600;
  color: #83ace3;
}
.cookie-modal-close {
  position: absolute;
  right: 19px; top: 20px;
  font-size: 2rem;
  color: #f8f9fb;
  background: none;
  border: none;
  border-radius: 5px;
  padding: 7px 13px;
  transition: background 0.14s, color 0.13s;
  z-index: 2220;
}
.cookie-modal-close:hover {
  background: #2d425c;
  color: var(--accent);
}
.cookie-modal-content .cookie-actions {
  display: flex;
  gap: 12px;
}

/* COOKIE MODAL RESPONSIVE */
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 23px 6vw 21px 5vw;
    gap: 12px;
  }
}

/* GENERAL RESPONSIVE RULES: FLEX DIRECTION */
@media (max-width: 800px) {
  .hero { padding: 26px 0 24px 0; }
  .section, main > section { margin-bottom: 19px; }
  .testimonial-card { min-width: 95vw; }
}
@media (max-width: 410px) {
  .testimonial-card, .card, .feature-list li, .services-overview > div, .faq-item, .case-study-brief, .blog-list article { padding: 10px 3vw; }
  .cookie-modal-content { min-width: unset; max-width: 100vw; }
}

/* ENSURE NO OVERLAPPING, PROPER Z-INDEX */
.section, main > section, .header-container, .container, .footer-nav, .footer-info {
  z-index: 1;
}
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1999;
}

/* FORM DEFAULTS (if needed) */
input, textarea, select {
  background: #212f41;
  color: #f9f9fa;
  border: 1.5px solid #38444e;
  border-radius: 7px;
  font-size: 1rem;
  padding: 10px 13px;
  margin-bottom: 17px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px #ff803744;
}

/* HIDE SCROLL ON MOBILE MENU/COOKIE MODAL WHEN OPEN */
body.mobile-menu-open, body.cookie-modal-open {
  overflow: hidden !important;
  height: 100vh;
}

/* --- END --- */
