/* ==== CSS 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181C22;
  color: #F9F9F9;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
  margin: 0 0 0 1.2em;
  padding: 0;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
a {
  color: #F4B400;
  background: none;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff06d;
  outline: none;
}

/* ==== FONT IMPORTS ==== */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ==== BRAND COLOR VARIABLES ==== */
:root {
  --color-primary: #165B8A;
  --color-secondary: #F4B400;
  --color-accent: #F9F9F9;
  --color-bg-dark: #181C22;
  --color-bg-card: #22252B;
  --color-metal: #495560;
  --color-text-base: #F9F9F9;
  --color-text-muted: #B1B4B6;
  --color-btn-bg: #212D36;
  --color-btn-hover: #F4B400;
  --color-btn-text: #F9F9F9;
  --color-success: #1AC888;
  --color-danger: #B93F4C;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2.0rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-text-base);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
strong, b {
  font-weight: bold;
  color: var(--color-secondary);
}
blockquote {
  border-left: 4px solid var(--color-secondary);
  margin: 0 0 12px 0;
  padding: 0 0 0 16px;
  color: #23272b;
  background: #F9F9F9;
  font-style: italic;
  border-radius: 6px;
}

/* ==== CONTAINER / LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 36px;
  }
}

/* ==== FLEXBOX PATTERNS (MANDATORY) ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  background: var(--color-bg-card);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(38,42,47,0.13),0 1.5px 0 0 #28303a inset;
  margin-bottom: 20px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(38,42,47,0.12);
  border-radius: 10px;
  margin: 0 0 24px 0;
  min-width: 0;
  color: #22252B;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  color: #20304A;
}
.testimonial-card .stars {
  color: #F4B400;
  font-size: 1.35rem;
  font-family: 'Oswald', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== NAVIGATION ==== */
header {
  width: 100%;
  background: #16191D;
  box-shadow: 0 2px 10px 0 rgba(20,24,30,0.11);
  position: relative;
  z-index: 90;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}
nav img {
  height: 40px;
  margin-right: 8px;
}
nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-text-base);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s,color 0.2s;
  position: relative;
}
nav a.cta-primary {
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  font-size: 1.08rem;
  padding: 8px 22px;
  font-weight: 700;
  box-shadow: 0 3px 18px 0 rgba(22,91,138,0.22);
  letter-spacing: 0.1em;
  border: 2px solid transparent;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: var(--color-secondary);
  color: #181C22;
  border-color: var(--color-primary);
}
nav a:hover, nav a:focus {
  background: var(--color-metal);
  color: var(--color-secondary);
}
@media (max-width: 1024px) {
  nav {
    gap: 10px;
    padding: 10px 0;
  }
  nav img {
    height: 32px;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 301;
  padding: 8px 14px;
  border-radius: 7px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-metal);
  color: #fff06d;
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,28,34,0.98);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 40px 0 rgba(20,24,30,0.22);
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.41s cubic-bezier(0.57,0.28,0.36,0.98), opacity 0.29s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--color-secondary);
  margin: 16px 26px 0 0;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 301;
  border-radius: 7px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-metal);
  color: #fff06d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
  padding: 30px 32px 10px 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  padding: 10px 10px 10px 0;
  border-bottom: 1px solid #2e3842;
  width: 100%;
  border-radius: 0;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #181C22;
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  nav {
    display: none;
  }
}

/* ==== MAIN SECTIONS ==== */
.hero {
  background: linear-gradient(90deg, #181C22 80%, var(--color-primary) 115%);
  border-bottom: 5px solid var(--color-primary);
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 260px;
  min-width: 0;
}
.hero h1 {
  color: var(--color-secondary);
  text-shadow: 1px 3px 10px rgba(20,24,30,0.14);
}
.hero p {
  max-width: 600px;
  color: var(--color-text-base);
  font-size: 1.18rem;
}

.features {
  background: #1A2026;
}
.features h2 {
  color: var(--color-secondary);
}
.features .feature-grid,
.features .text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.features .feature-grid > div {
  flex: 1 1 220px;
  background: var(--color-bg-card);
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(38,42,47,0.05);
  margin-bottom: 20px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
}
.features .feature-grid > div img {
  width: 44px;
  margin-bottom: 10px;
  filter: grayscale(15%) brightness(1.12) drop-shadow(0 2px 4px #28303a22);
}
.features .feature-grid > div h3 {
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-size: 1.07rem;
  letter-spacing: 0.08em;
}
.features .feature-grid > div p {
  color: var(--color-text-muted);
}

.about-teaser,
.contact-teaser,
.our-mission,
.team,
.product-list,
.guides,
.blog,
.steps,
.contact-details,
.faq,
.legal,
.thank-you-section {
  background: #181C22;
}
.about-teaser ul,
.our-mission ul,
.team ul,
.product-list ul,
.guides ul,
.guide ol,
.blog ul,
.steps ul,
.faq ul,
.legal ul,
.thank-you-section ul {
  margin: 0 0 8px 18px;
  color: var(--color-text-base);
  line-height: 1.5;
  list-style: disc inside;
}
.about-teaser li,
.our-mission li,
.team li,.product-list li,
.guides li,
.steps li,
.faq li,
.legal li,
.thank-you-section li {
  margin-bottom: 7px;
  color: var(--color-text-base);
}

/* ==== CTA BUTTONS ==== */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9px;
  padding: 13px 36px;
  font-size: 1.09rem;
  line-height: 1;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(22,91,138,.17);
  letter-spacing: 0.09em;
  cursor: pointer;
  margin: 7px 0 0 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-secondary);
  color: #181C22;
  box-shadow: 0 5px 28px 0 rgba(244,180,0,0.13);
}
.cta-secondary {
  background: #212D36;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: #181C22;
}

/* ==== CARDS ==== */
.card {
  border-left: 5px solid var(--color-primary);
  background: var(--color-bg-card);
  transition: box-shadow 0.18s, border-color 0.18s;
  box-shadow: 0 1.5px 11px 0 rgba(38,42,47,0.13);
}
.card:hover, .card:focus-within {
  border-left: 5px solid var(--color-secondary);
  box-shadow: 0 2.5px 30px 0 rgba(38,42,47,0.19);
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: #F9F9F9;
  color: #20304A;
  padding-bottom: 20px;
}
.testimonials h2 {
  color: var(--color-primary);
}
.testimonial-card {
  border-left: 4px solid var(--color-primary);
  margin-bottom: 24px;
  background: #fff;
  color: #22252B;
}
.testimonial-card strong {
  color: var(--color-primary);
}

/* ==== FOOTER ==== */
footer {
  background: #1A2026;
  color: #D0D3D6;
  padding: 44px 0 22px 0;
  box-shadow: 0 -1px 12px 0 rgba(20,24,30,0.12);
  border-top: 5px solid var(--color-primary);
  margin-top: 64px;
  position: relative;
  z-index: 9;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}
.footer-menu a {
  color: #B1B4B6;
  letter-spacing: 0.08em;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-secondary);
}
.brand-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 12px;
}
.brand-contact img {
  height: 38px;
  min-width: 38px;
  margin-right: 2px;
}
.brand-contact > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-contact div img {
  height: 18px;
  margin-right: 6px;
  vertical-align: text-bottom;
  display: inline-block;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-bottom: 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #23272b;
  width: 36px;
  height: 36px;
  transition: background 0.19s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--color-secondary);
}
.footer-social img {
  width: 20px;
  height: 20px;
}

/* ==== FORM ELEMENTS ==== */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
}
input, textarea, select {
  border: 1.5px solid var(--color-metal);
  background: #1d2327;
  color: var(--color-accent);
  padding: 11px 12px;
  box-shadow: 0 1.5px 8px 0 rgba(38,42,47,0.07);
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
}
button {
  cursor: pointer;
  background: var(--color-metal);
  color: var(--color-btn-text);
  border: none;
  padding: 11px 26px;
  transition: background 0.18s;
  border-radius: 7px;
  font-weight: 700;
}
button:hover, button:focus {
  background: var(--color-secondary);
  color: #181C22;
}

/* ==== SPACING & RESPONSIVENESS ==== */
@media (max-width: 992px) {
  .container {
    max-width: 100vw;
    padding: 0 16px;
  }
  .footer-menu {
    gap: 14px;
    font-size: 0.96rem;
  }
  .brand-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .hero, .about-teaser, .features, .testimonials, .contact-teaser,
  .our-mission, .team, .product-list, .guides, .blog, .steps,
  .contact-details, .faq, .legal, .thank-you-section {
    padding: 32px 0 22px 0;
  }
  .container {
    padding: 0 8px;
  }
  .footer-menu {
    flex-wrap: wrap;
    gap: 10px;
  }
  .content-grid, .card-container, .features .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .cta-primary, .cta-secondary {
    width: 100%;
    padding: 12px 0;
    text-align: center;
  }
}

/* ==== COOKIES BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #23272B;
  color: var(--color-accent);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 24px 0 rgba(24,28,34,0.23);
  padding: 22px 8px 16px 12px;
  width: 100vw;
  min-height: 0px;
  opacity: 1;
  transition: opacity 0.27s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #f9f9f9;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 3px;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 6px;
  margin: 0;
  border: none;
  box-shadow: 0 1px 8px 0 rgba(24,28,34,0.12);
  transition: background 0.18s,color 0.18s;
}
.cookie-banner .accept {
  background: var(--color-success);
  color: #181C22;
  font-weight: bold;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #18b07c;
}
.cookie-banner .reject {
  background: var(--color-danger);
  color: #fff;
  font-weight: bold;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #8b2834;
}
.cookie-banner .settings {
  background: var(--color-secondary);
  color: #22252B;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #e3ac03;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 5px 10px 10px;
  }
  .cookie-banner .cookie-btns {
    gap: 7px;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,28,34,0.86);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #F9F9F9;
  color: #23272b;
  border-radius: 14px;
  box-shadow: 0 4px 40px 0 rgba(20,24,30,0.18);
  padding: 36px 34px 20px 32px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 12001;
  opacity: 1;
  animation: modalIn 0.33s cubic-bezier(0.71,0,0.39,1) both;
}
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  font-size: 2.14rem;
  color: var(--color-secondary);
  position: absolute;
  top: 13px;
  right: 13px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.16s;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  background: #f4b4002e;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-setting-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #ededed;
  padding: 13px 10px;
  border-radius: 6px;
  margin-bottom: 7px;
}
.cookie-setting-group label {
  font-size: 1.01rem;
  color: #165B8A;
  font-weight: 500;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1.2;
}
.cookie-switch input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 21px;
  height: 21px;
}
.cookie-category-desc {
  font-size: 0.97rem;
  color: #22252B;
  margin-top: 3px;
}
.cookie-modal .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 9px;
}
.cookie-modal button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  margin-right: 12px;
  transition: background 0.18s,color 0.18s;
}
.cookie-modal .accept {
  background: var(--color-success);
  color: #181C22;
}
.cookie-modal .reject {
  background: var(--color-danger);
  color: #fff;
}
.cookie-modal .save {
  background: var(--color-secondary);
  color: #23272B;
}
.cookie-modal .accept:hover,
.cookie-modal .accept:focus {
  background: #18b07c;
}
.cookie-modal .reject:hover,
.cookie-modal .reject:focus {
  background: #8b2834;
}
.cookie-modal .save:hover,
.cookie-modal .save:focus {
  background: #FFD95C;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 8px 14px 7px;
    min-width: 0;
  }
}

/* ==== MICRO-INTERACTIONS ==== */
.cta-primary, .cta-secondary, button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s,color 0.18s,box-shadow 0.14s, border-color .17s;
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.19s, border-color 0.17s, transform 0.14s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 4px 32px 0 rgba(38,42,47,0.16);
}

/* ==== SCROLLBAR STYLES (INDUSTRIAL/URBAN) ==== */
::-webkit-scrollbar {
  width: 12px;
  background: #181C22;
}
::-webkit-scrollbar-thumb {
  background: #262B32;
  border-radius: 7px;
  border: 3px solid #181C22;
}
::-webkit-scrollbar-thumb:hover {
  background: #495560;
}

/* ==== CUSTOM INDUSTRIAL DECORATIVE ELEMENTS ==== */
.section {
  border-radius: 10px;
  box-shadow: 0 2px 16px 0 rgba(36,41,49,0.08);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 22px 7px;
  }
}

/* ==== ENSURE NO OVERLAPPING ==== */
.card, .testimonial-card, .feature-grid > div {
  margin-bottom: 20px;
}
.content-wrapper > * + * {
  margin-top: 0;
}

/* ==== THANK YOU SECTION ==== */
.thank-you-section .text-section {
  margin: 22px 0;
}

/* ==== Z-INDEX COORDINATION ==== */
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay,
header {
  z-index: 11000;
}

/* ==== UTILITY CLASSES (URBAN AESTHETIC) ==== */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-metal {
  color: var(--color-metal) !important;
}
.bg-metal {
  background: var(--color-metal) !important;
}
.rounded {
  border-radius: 9px !important;
}
.shadow {
  box-shadow: 0 3px 18px 0 rgba(22,91,138,0.15) !important;
}

/* ==== ALL FLEX LAYOUTS - ENFORCE FLEXBOX ==== */
/* No grid/columns properties anywhere */
