/* --- CSS Reset & Normalize Section --- */
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.45;
  background: #FFF6ED;
  color: #22212A;
  font-family: 'Roboto', Arial, sans-serif;
}
* {
  box-sizing: inherit;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #212946;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A83C3A;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #3E2D24;
  letter-spacing: 0.01em;
}

/* --- Vintage Retro Color Palette (Brand adapted) --- */
:root {
  --primary: #212946;         /* Mighty Shadow Primary */
  --secondary: #0A7EA4;      /* Mighty Shadow Secondary */
  --accent: #EBF0F6;         /* Brand Accent */
  --retro-yellow: #F9D867;   /* Retro highlight */
  --retro-orange: #F3965B;   /* Retro accent */
  --retro-red: #A83C3A;      /* Vintage red */
  --retro-bg: #FFF6ED;       /* Light retro paper */
  --retro-brown: #A16D5D;    /* Vintage brown */
  --retro-blue: #528AAE;     /* Muted blue */
  --retro-green: #86A377;    /* Muted retro green */
  --text-dark: #3E2D24;      /* Retro text dark */
  --text-med: #5A4F47;
  --border-card: #D8C8B1;    /* Card border */
  --box-shadow: 0 4px 18px 0 rgba(120, 94, 50, 0.07);
}


/* --- Layout Utility Classes --- */
.container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF6ED;
  border: 1.5px solid var(--border-card);
  border-radius: 18px;
  box-shadow: var(--box-shadow);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.20s;
  min-width: 300px;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(90, 79, 71, 0.13);
  transform: translateY(-4px) scale(1.015);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF6ED;
  border: 2px dashed var(--retro-yellow);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px 0 rgba(115,98,54,0.08);
  color: var(--text-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* --- Header & Navigation --- */
header {
  background: linear-gradient(90deg, #F9D867 0%, #F3965B 100%);
  box-shadow: 0 6px 24px 0 rgba(168, 60, 58, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo img {
  height: 36px;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--primary);
  padding: 4px 6px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a::before {
  content: '';
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-red);
  background: #FFF6ED;
}
.main-nav a:hover::before,
.main-nav a:focus::before {
  opacity: 1;
}

/* --- CTA Buttons --- */
.cta, .cta.primary, .cta.secondary, .newsletter-signup button {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: inline-block;
  background: var(--retro-red);
  color: #FFF6ED;
  padding: 12px 32px;
  border-radius: 28px;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.19s;
  box-shadow: 0 3px 12px 0 rgba(236, 162, 60, 0.10);
  cursor: pointer;
  text-shadow: 0 1px 2px #b07643a1;
  margin: 10px 10px 10px 0;
}
.cta.primary {
  background: var(--primary);
  color: #FAF8F1;
  box-shadow: 0 4px 13px 0 rgba(45, 61, 120, 0.12);
}
.cta.secondary {
  background: var(--retro-yellow);
  color: var(--text-dark);
}
.cta:hover, .cta.primary:hover, .cta.secondary:hover, .newsletter-signup button:hover {
  background: var(--secondary);
  color: #f7e9e2;
  transform: translateY(-2px) scale(1.04);
}

/* --- Mobile Navigation --- */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-red);
  color: #FFF6ED;
  border: none;
  font-size: 32px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 1202;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--retro-yellow);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fffaf3;
  box-shadow: -3px 0 44px 0 rgba(50,38,27,0.12);
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 360px;
  height: 100vh;
  padding: 36px 26px 20px 26px;
  z-index: 1201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32,1.12,0.27,1.0);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--retro-yellow);
  color: var(--text-dark);
  font-size: 32px;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px 0 rgba(243,150,91,0.07);
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-red);
  color: #FFF6ED;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 18px;
  color: var(--primary);
  padding: 9px 0 9px 9px;
  border-radius: 6px;
  transition: background 0.19s, color 0.19s;
  margin-bottom: 4px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--retro-yellow);
  color: var(--retro-red);
}

/* --- Hide desktop navigation on mobile and show toggle --- */
@media (max-width: 1021px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1022px) {
  .mobile-menu, .mobile-menu.active,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}


/* --- Hero Section --- */
.hero {
  background: linear-gradient(90deg, #FFF6ED 85%, #F9D867 100%);
  padding: 64px 0 32px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 720px;
  background: #FFF6EDee;
  border-radius: 16px;
  box-shadow: 0 2px 32px 0 rgba(241, 199, 112, 0.06);
  padding: 35px 20px 42px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero h1 {
  font-size: 2.3rem;
  color: var(--primary);
  letter-spacing: 0.07em;
  margin-bottom: 7px;
}
.hero p {
  font-size: 1.17rem;
  color: var(--retro-blue);
}

/* --- Features Section --- */
.features {
  background: #FAE3C9;
  border-top: 3px dotted var(--retro-yellow);
}
.features .content-wrapper > h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  color: var(--retro-red);
  margin-bottom: 19px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.features ul li {
  padding-left: 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--retro-orange);
  background: #FFF9F0;
  border-radius: 6px;
  padding: 11px 9px 11px 19px;
}
.features ul li img {
  height: 28px;
  width: 28px;
  flex-shrink: 0;
}


/* --- About Section --- */
.about {
  background: #FFF6ED;
}
.about .content-wrapper > h2 {
  color: var(--retro-brown);
  font-size: 1.7rem;
  margin-bottom: 15px;
}
.about ul, .about ol {
  margin-top: 13px;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 11px;
}
.about ul li, .about ol li {
  color: var(--retro-blue);
  font-size: 1.06rem;
  margin-bottom: 7px;
  line-height: 1.35;
  padding-left: 13px;
  position: relative;
}
.about ul li:before {
  content: '\25A0';
  display: inline-block;
  margin-right: 8px;
  color: var(--retro-orange);
  font-size: 0.7em;
}
.about ol li {
  list-style-type: decimal;
  color: var(--retro-green);
  font-weight: 500;
}


/* --- Services Section --- */
.services {
  background: #FFF6ED;
}
.services .content-wrapper > h2 {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.service-card {
  background: #FFF9F0;
  border: 2px solid var(--retro-blue);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(80, 113, 174, 0.06);
  padding: 28px 20px 22px 20px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.13s;
}
.service-card:hover {
  box-shadow: 0 7px 40px 0 rgba(115, 134, 200, 0.12);
  transform: translateY(-4px) scale(1.02);
}
.service-card h3 {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card .price {
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--retro-brown);
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 600;
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}
.icon-grid img {
  height: 44px;
  width: 44px;
  background: #FAE3C9;
  border-radius: 11px;
  border: 1.5px solid var(--retro-yellow);
  padding: 8px;
  transition: box-shadow 0.2s;
}
.icon-grid img:hover {
  box-shadow: 0 3px 13px 0 rgba(243,150,91,0.16);
}

/* --- Industry grid in solutions.html --- */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.industry-grid > div {
  flex: 1 1 220px;
  min-width: 200px;
  background: #EBF0F6;
  padding: 26px 13px 16px 13px;
  border-radius: 12px;
  border: 1.5px solid var(--retro-green);
  box-shadow: 0 2px 11px 0 rgba(134,163,119,0.08);
  text-align: center;
}
.industry-grid h3 {
  margin: 10px 0 4px 0;
  font-size: 1.09rem;
  color: var(--retro-brown);
}
.industry-grid p {
  color: var(--text-med);
}

/* --- Article listing in knowledge.html --- */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 15px;
}
.article-list > div {
  flex: 1 1 240px;
  background: #FAE3C9;
  border-radius: 12px;
  border: 1.5px solid var(--retro-orange);
  box-shadow: 0 1.5px 8px 0 rgba(255,189,115,0.09);
  padding: 14px 12px 12px 14px;
  transition: box-shadow 0.17s, transform 0.11s;
}
.article-list > div:hover {
  box-shadow: 0 6px 20px 0 rgba(243,150,91,0.12);
  transform: translateY(-2px);
}
.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 17px;
}
.tag-filter span {
  background: #fffce4;
  color: var(--primary);
  border-radius: 9px;
  padding: 6px 13px;
  font-size: 0.97rem;
  border: 1.5px solid var(--retro-yellow);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.tag-filter span:hover, .tag-filter span.active {
  background: var(--retro-yellow);
  color: var(--retro-red);
}

.trending-topics {
  font-size: 1.07rem;
  color: var(--retro-red);
  background: #F9D86744;
  padding: 8px 13px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.summary-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 17px;
}
.summary-cards > div {
  background: #FAE3C9;
  border-radius: 11px;
  border: 1.5px solid var(--retro-green);
  flex: 1 1 220px;
  padding: 18px 17px 14px 18px;
  min-width: 200px;
}

.download-links {
  display: flex;
  gap: 16px;
}
.download-links a {
  color: var(--secondary);
  border-bottom: 1.5px dotted var(--retro-red);
  font-weight: 600;
  transition: color 0.14s;
}
.download-links a:hover {
  color: var(--retro-green);
}

/* --- Newsletter --- */
.newsletter-signup {
  display: flex;
  gap: 7px;
  margin: 8px 0 14px 0;
}
.newsletter-signup input[type="email"] {
  padding: 10px 13px;
  font-size: 1rem;
  border-radius: 14px;
  border: 2px solid var(--retro-blue);
  background: #FFF6ED;
  margin-right: 4px;
}
.newsletter-signup button {
  background: var(--retro-green);
  color: #FFF6ED;
  border: none;
  border-radius: 14px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Orbitron', Arial, sans-serif;
  transition: background 0.17s, color 0.17s;
}
.newsletter-signup button:hover {
  background: var(--retro-red);
  color: #FFF6ED;
}

.search-bar {
  width: 100%;
  max-width: 420px;
  margin: 19px 0 15px 0;
  padding: 11px 17px;
  border-radius: 19px;
  background: #FFF9F0;
  border: 2px solid var(--retro-yellow);
  font-size: 1rem;
  transition: border 0.17s, box-shadow 0.13s;
}
.search-bar:focus {
  border: 2px solid var(--secondary);
  box-shadow: 0 0 8px 0 rgba(10,126,164,0.1);
}

/* --- Testimonial Section --- */
.testimonials {
  background: #FAE3C9;
  border-top: 3px dotted var(--retro-yellow);
}
.testimonials .content-wrapper > h2 {
  color: var(--retro-brown);
  font-size: 1.7rem;
  margin-bottom: 17px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--text-dark);
}
.testimonial-card strong {
  color: var(--retro-red);
}
.client-logos {
  display: flex;
  gap: 24px;
  margin: 16px 0 12px 0;
  align-items: center;
}
.client-logos img {
  height: 34px;
  background: #fffbe6;
  border-radius: 7px;
  border: 1.5px solid var(--retro-yellow);
  padding: 5px 12px;
}
.project-highlights {
  margin-top: 19px;
  background: #EBF0F6;
  border-radius: 9px;
  border: 1.5px solid var(--secondary);
  padding: 10px 15px;
}

.value-statement {
  background: #e3cda1;
  color: var(--primary);
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 10px 15px;
  margin-top: 15px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* --- CTA Section --- */
.cta {
  background: linear-gradient(98deg,#F9D867 80%,#F3965B 100%);
  text-align: center;
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(249,216,103,0.09);
  padding: 46px 0 40px 0;
}
.cta .content-wrapper > h2 {
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.cta .content-wrapper > p {
  color: var(--text-med);
  font-size: 1.09rem;
  margin-bottom: 15px;
}

/* --- Cards, Fact Boxes etc. --- */
.impact-facts {
  background: #F9D86788;
  color: var(--primary);
  border-radius: 8px;
  padding: 15px 21px;
  font-size: 1.11rem;
  margin: 22px 0 14px 0;
  font-weight: 600;
}
.integration-flow {
  background: #EBF0F6;
  border-radius: 9px;
  border: 1.5px solid var(--retro-yellow);
  padding: 13px 18px;
  color: var(--retro-brown);
  margin-top: 16px;
}
.integration-flow strong {
  font-size: 1.15rem;
}

.industry-sectors {
  display: flex;
  gap: 19px;
  margin-bottom: 12px;
}
.industry-sectors ul {
  flex-direction: row;
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}
.industry-sectors ul li {
  background: #FAE3C9;
  color: var(--primary);
  border-radius: 8px;
  font-weight: 600;
  padding: 9px 19px;
}

/* --- Address/Contact Section --- */
.contact {
  background: #FFF9F0;
}
.contact .content-wrapper > h2 {
  color: var(--retro-red);
  font-size: 1.33rem;
  margin-bottom: 13px;
}
.address-details, .opening-hours, .contact-email {
  font-size: 1.07rem;
  margin-bottom: 9px;
  color: var(--primary);
}
.contact-email a {
  color: var(--secondary);
}
.contact-email a:hover {
  color: var(--retro-red);
}

.faq-snippet {
  margin-top: 11px;
  font-size: 1.01rem;
  color: var(--retro-blue);
  background: #e3f0ff6b;
  border-radius: 8px;
  padding: 10px 15px;
}


/* --- Footer --- */
footer {
  background: #3E2D24;
  color: #FFF6ED;
  font-size: 1rem;
  padding: 40px 0 10px 0;
  border-top: 2.5px solid var(--retro-yellow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F9D867;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: var(--retro-orange);
}
.contact-info {
  font-size: 1rem;
  color: #fff6edcc;
  margin-bottom: 13px;
}
.contact-info h3 {
  color: var(--retro-yellow);
  font-size: 1.03rem;
  font-family: 'Orbitron', Arial, sans-serif;
  margin-bottom: 5px;
}
.contact-info a {
  color: #FFF6ED;
}
.contact-info a:hover {
  color: var(--retro-yellow);
}
.footer-cta {
  display: flex;
  align-items: center;
}
.footer-cta .cta.primary {
  background: var(--retro-red);
  color: #fff6ed;
  margin: 0;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links a {
  display: inline-flex;
}
.social-links img {
  height: 32px;
  filter: grayscale(0.7) brightness(0.9) sepia(0.11);
  transition: filter 0.19s;
}
.social-links img:hover {
  filter: grayscale(0.1) brightness(1) sepia(0.45);
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #F9D867 90%, #F3965B 100%);
  color: var(--primary);
  border-top: 2px solid #EBF0F6;
  padding: 30px 18px 18px 18px;
  box-shadow: 0 -6px 30px 0 rgba(168, 60, 58, 0.08);
  font-size: 1rem;
  z-index: 1900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookie-banner-in 0.6s ease;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(220px); opacity: 0; }
  98% { transform: translateY(-4px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  padding: 10px 22px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .accept {
  background: var(--primary);
  color: #FFF6ED;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--retro-red);
  color: #FFF6ED;
}
.cookie-banner .reject {
  background: #FFF6ED;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--retro-yellow);
  color: var(--retro-red);
}
.cookie-banner .settings {
  background: var(--retro-yellow);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--retro-orange);
  color: #FFF6ED;
}

/* --- Cookie Modal --- */
.cookie-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(33,41,70, 0.33);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-bg.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%) scale(1.02);
  min-width: 340px;
  max-width: 92vw;
  background: #FFF9F0;
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 rgba(33,41,70,0.08);
  padding: 35px 30px 32px 30px;
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--retro-red);
  margin-bottom: 13px;
}
.cookie-modal ul {
  margin-bottom: 14px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.99rem;
}
.cookie-switch {
  min-width: 34px;
  height: 22px;
  border-radius: 16px;
  background: #D8C8B1;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-left: 3px;
  margin-right: 8px;
  transition: background 0.17s;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  height: 18px;
  width: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.5px 2px 0 rgba(100,78,41,0.12);
  transition: left 0.18s;
}
.cookie-switch input:checked + .slider {
  left: 13px;
  background: var(--retro-yellow);
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal button {
  background: var(--retro-green);
  color: #FFF6ED;
  padding: 9px 23px;
  border-radius: 10px;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.16s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--retro-red);
  color: #FFF6ED;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: transparent;
  color: var(--retro-brown);
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--retro-red);
}

/* --- Typography & Headings --- */
h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.21rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, address, label {
  font-size: 1rem;
  color: var(--primary);
}
strong {
  font-weight: 700;
  color: var(--retro-red);
}

/* --- Utility --- */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.pt-2 { padding-top: 16px; }
.pb-2 { padding-bottom: 16px; }

/* --- Responsive Design --- */
@media (max-width: 1179px) {
  .container { max-width: 980px; }
  .service-card, .industry-grid > div, .summary-cards > div {
    min-width: 170px;
    font-size: 0.97rem;
  }
}
@media (max-width: 910px) {
  .container {
    width: 99%;
    max-width: 99vw;
    padding-left: 5px; padding-right: 5px;
  }
  .service-grid, .content-grid, .card-container, .summary-cards, .article-list, .industry-grid {
    gap: 13px;
  }
  .hero .content-wrapper {
    padding: 27px 6px 32px 6px;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none!important; }
  .footer .container, .footer-nav, .industry-grid, .content-grid, .card-container, .team-overview {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .section { padding: 30px 7px; margin-bottom: 36px; }
  .features ul, .features .feature-item {
    gap: 13px;
  }
  .card, .service-card, .industry-grid > div, .article-list > div, .summary-cards > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .text-image-section { flex-direction: column; gap: 15px; }
}
@media (max-width: 729px) {
  .footer .container, footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start; 
  }
  .footer-cta { margin-top: 17px; }
  .social-links { margin-bottom: 11px; }
}
@media (max-width:480px) {
  header .container { min-height: 45px; }
  .hero, .cta, .features, .about, .services, .testimonials { padding-left: 0; padding-right: 0; }
  .section, .hero .content-wrapper { padding: 19px 2px 14px 2px; }
  .card, .service-card { padding: 9px 5px 12px 7px; }
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.1rem; }
  .testimonial-card p { font-size: 0.94rem; }
  .cookie-modal { min-width: 85vw; }
}

/* --- Micro Interactions / Effects --- */
a, .cta, .service-card, .article-list > div, .icon-grid img {
  transition: box-shadow .16s cubic-bezier(0.13,0.8,0.38,1), transform .13s cubic-bezier(.45,.7,.58,1), background 0.23s, color 0.19s;
}

/* --- Accessibility: Focus Outline --- */
a:focus, button:focus, input:focus, .cta:focus {
  outline: 2px solid var(--retro-yellow);
  outline-offset: 2px;
}

/* --- Misc --- */
::-webkit-input-placeholder { color: #bbb6a7; }
::-moz-placeholder { color: #bbb6a7; }
:-ms-input-placeholder { color: #bbb6a7; }
::placeholder { color: #bbb6a7; }

/* Hide scroll for mobile menu overlay if open */
body.mobile-menu-open {
  overflow: hidden;
}

/* --- END OF CSS FILE --- */
