/* --- 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #161c1e;
  color: #F3F9FB;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F3F9FB;
  text-decoration: none;
  transition: color 0.20s;
}
a:focus, a:hover {
  color: #4D8D57;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
}
strong {
  font-weight: 700;
}

/* --- INDUSTRIAL MODERN VARIABLES --- */
:root {
  --primary: #216C84;
  --secondary: #F3F9FB;
  --accent: #4D8D57;
  --accent-dark: #16642C;
  --industrial-bg: #161c1e;
  --industrial-card: #22292b;
  --metallic: #94968f;
  --industrial-border: #30363a;
  --industrial-shadow: 0 2px 10px rgba(38, 50, 56, 0.13);
  --radius: 9px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* --- BASE TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #F3F9FB;
  letter-spacing: 0.2px;
  line-height: 1.15;
  font-weight: 800;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
p, li, td, th, address {
  font-family: var(--font-body);
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
.section p:last-child {
  margin-bottom: 0;
}

/* TEXT HIERARCHY FOR "industrial_modern" */
.text-section h2 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}

/* CONTAINER + LAYOUT SYSTEM */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--industrial-card);
  border-radius: var(--radius);
  box-shadow: var(--industrial-shadow);
  border: 1.5px solid var(--industrial-border);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 250px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 26px 2px rgba(33,108,132,0.20);
  transform: translateY(-4px) scale(1.025);
}

.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;
    gap: 18px;
  }
  .card {
    min-width: 100%;
    padding: 20px 8px;
  }
}

/* TESTIMONIALS */
.testimonials, .testimonial-list, .testimonial-card {
  width: 100%;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  color: var(--industrial-bg);
  border-radius: var(--radius);
  border-left: 6px solid var(--primary);
  box-shadow: 0 2px 8px rgba(43,55,61,0.07);
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px 0px rgba(33,108,132,0.13);
}
.testimonial-card p {
  color: #22292b;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #555E64;
  font-size: 0.97rem;
  font-style: italic;
}

/* ENSURE CONTRAST FOR TESTIMONIALS */
.testimonials h2, .testimonials h1 {
  color: var(--secondary);
}

/* CARDS, FEATURES, SECTIONS */
.features {
  background: #192126;
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 0;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 16px;
  justify-content: flex-start;
}
.features-grid > div {
  background: var(--industrial-card);
  border-radius: var(--radius);
  box-shadow: 0 1px 12px 0px rgba(38,50,56,0.08);
  border: 1.5px solid var(--industrial-border);
  padding: 26px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .2s, border .2s;
}
.features-grid > div img {
  width: 38px;
  height: 38px;
  filter: grayscale(0.25) contrast(1.1);
}
.features-grid > div:hover {
  border: 1.5px solid var(--primary);
  box-shadow: 0 6px 24px 0px rgba(33,108,132,0.11);
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0;
}
.services-cards > div {
  background: var(--industrial-card);
  border-radius: var(--radius);
  min-width: 210px;
  flex: 1 1 230px;
  padding: 28px 20px;
  margin-bottom: 20px;
  box-shadow: var(--industrial-shadow);
  border: 1.5px solid var(--industrial-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.services-cards > div:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px 0px rgba(33,108,132,0.14);
}

@media (max-width: 900px) {
  .features-grid, .services-cards {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 10px;
}
.features h3 {
  color: var(--accent);
  font-size: 1.12rem;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(115deg, #1a252a 60%, #253942 140%);
  color: var(--secondary);
  padding: 56px 0 48px 0;
  margin-bottom: 60px;
  border-bottom: 4px solid var(--industrial-border);
}
.hero h1 {
  color: var(--secondary);
  font-size: 2.9rem;
  text-shadow: 0 2px 14px rgba(33,108,132,0.10);
}
.hero .cta-primary {
  margin-top: 22px;
}

@media (max-width: 700px) {
  .hero {
    padding: 32px 0 28px 0;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}

/* RATINGS, LOGOS */
.ratings {
  margin: 22px 0;
  color: #FFD700;
  font-weight: 700;
  font-size: 1.13rem;
  text-shadow: 0 2px 7px #222a2f1a;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0px #11141812;
  padding: 8px;
  border: 1px solid #ddd;
}

/* PRICING TABLE */
.pricing-tables {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-tables table {
  width: 100%;
  background: var(--industrial-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--industrial-shadow);
  margin-bottom: 11px;
  border: 1.5px solid var(--industrial-border);
}
.pricing-tables th, .pricing-tables td {
  padding: 14px 18px;
  color: var(--secondary);
  font-size: 1rem;
}
.pricing-tables th {
  background: #173d4a;
  text-align: left;
  letter-spacing: 1px;
}
.pricing-tables tr {
  border-bottom: 1px solid #23313833;
}
.pricing-tables tr:last-child {
  border-bottom: none;
}
.pricing-tables td {
  background: none;
}
.pricing-notes {
  font-size: 0.92rem;
  color: #cdd3d6;
}

@media (max-width: 700px) {
  .pricing-tables table, .pricing-tables th, .pricing-tables td {
    font-size: 0.97rem;
    padding: 9px 5px;
  }
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list dt {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  font-size: 1.13rem;
  margin-bottom: 6px;
  margin-top: 16px;
}
.faq-list dd {
  color: #F3F9FB;
  font-size: 0.98rem;
  margin-left: 0;
  margin-bottom: 2px;
}

.faq-support-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #212828;
  border: 1.5px solid var(--industrial-border);
  border-radius: var(--radius);
  padding: 22px 18px;
}

/* ADDRESS / CONTACT INFO */
.contact ul {
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #F3F9FB;
}
.contact ul li img {
  width: 22px;
  height: 22px;
}
.map address {
  font-size: 1.13rem;
  letter-spacing: .5px;
  color: #cdd3d6;
  margin-top: 9px;
}

/* CTA PRIMARY & SECONDARY BUTTONS */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  margin: 8px 8px 0 0;
  transition: background .18s, color .18s, box-shadow .22s, transform .14s;
  box-shadow: 0 1px 6px 0px #24424f26;
  letter-spacing: 0.5px;
  outline: none;
  text-align: center;
}
.cta-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px) scale(1.028);
}
.cta-secondary {
  background: #192126;
  color: var(--secondary);
  border: 2px solid var(--primary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #171D20;
  box-shadow: 0 2px 13px 0px #13141616;
  border-bottom: 2.6px solid #212828;
  position: relative;
  z-index: 42;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 12px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: #e4f4f8;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  border-radius: 0;
  transition: color .17s;
}
header nav a:not(.cta-primary):hover,
header nav a:not(.cta-primary):focus {
  color: var(--accent);
}
header nav a.cta-primary {
  margin-left: 10px;
}

/* Logo adjustments */
header img {
  height: 44px;
  width: auto;
}

@media (max-width: 1050px) {
  header nav {
    gap: 10px;
  }
  header .container {
    padding-top: 12px; padding-bottom: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 8px;
    font-size: 0.98rem;
  }
  header img { height: 36px; }
}

/* --- MOBILE HAMBURGER MENU --- */
.mobile-menu-toggle {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 2.1rem;
  cursor: pointer;
  padding: 2px 15px;
  border-radius: var(--radius);
  display: none;
  align-items: center;
  margin-left: 20px;
  transition: background 0.18s, border-color 0.16s, color 0.13s;
  z-index: 1090;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 930px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 380px;
  height: 100vh;
  background: #182126;
  box-shadow: -3px 0 32px 0 rgba(33,108,132,0.19);
  z-index: 1100;
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.8,.15,.32,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 22px 18px 22px;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: -2px 0 32px 1px rgba(33,108,132,.21);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-size: 2.1rem;
  align-self: flex-end;
  padding: 2px 15px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.17s, color 0.13s;
  z-index: 1200;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.13rem;
  padding: 13px 0 13px 8px;
  border-radius: 0;
  border-left: 3px solid transparent;
  transition: background .13s, color .16s, border-color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  border-left: 3px solid var(--accent);
  background: #202a2e;
}
@media (min-width: 931px) {
  .mobile-menu { display: none !important; }
}

/* --- FOOTER --- */
footer {
  background: #151D1F;
  border-top: 3px solid #233138;
  color: #bcccce;
  margin-top: 60px;
  padding-top: 32px;
  padding-bottom: 20px;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-content > * {
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer nav a {
  color: #bcccce;
  font-family: var(--font-body);
  font-weight: 500;
  transition: color .18s;
  font-size: 1rem;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}
.footer-contact {
  font-size: 0.95rem;
  color: #bcccce;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-body);
}
.footer-contact a {
  color: #cce3e7;
  border-bottom: 1px dotted #cce3e7;
  transition: color .16s;
}
.footer-contact a:hover {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
footer img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

@media (max-width: 850px) {
  .footer-content {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  footer img {
    margin-bottom: 5px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 12000;
  background: #23292b;
  color: #F3F9FB;
  padding: 22px 18px 15px 18px;
  box-shadow: 0 -6px 28px 2px #000b1d36;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 1.01rem;
  flex-wrap: wrap;
  opacity: 1;
  transition: transform .35s cubic-bezier(.85,.04,.21,1), opacity .3s;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  margin-left: 24px;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 10px 23px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  cursor: pointer;
  transition: background .17s, color .15s, border-color .19s, transform .18s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner .cookie-settings-btn {
  background: none;
  border: 2px solid var(--metallic);
  color: var(--metallic);
  margin-left: 6px;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--industrial-card);
  color: var(--accent);
  border-color: var(--accent);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(17, 25, 30, 0.92);
  z-index: 13000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
  opacity: 0;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
}
.cookie-modal .cookie-modal-box {
  background: #F3F9FB;
  color: #23292b;
  border-radius: var(--radius);
  padding: 38px 32px 28px 32px;
  max-width: 95vw;
  width: 440px;
  box-shadow: 0 12px 52px 8px #1932412f;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background .18s, color .16s, border-color .18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 9px;
  font-size: 1.32rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
  margin-right: 8px;
}
.cookie-modal-category label {
  color: #23292b;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-modal .cookie-category-desc {
  font-size: 0.97rem;
  color: #444950;
  margin-left: 34px;
  margin-bottom: 7px;
  margin-top: -6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 10px 28px;
  font-size: 1rem;
  font-family: var(--font-display);
}

@media (max-width: 600px) {
  .cookie-modal .cookie-modal-box {
    padding: 18px 7px 16px 9px;
    width: 97vw;
    font-size: 0.95rem;
  }
}

/* --- TRUST BADGES --- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.trust-badges img {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0px #11141814;
  padding: 8px;
  border: 1px solid #e0e6e7;
}

/* --- LEGAL SECTION, TEXT SECTION, THANK YOU --- */
.legal-section .text-section, .thank-you .content-wrapper, .about .text-section {
  background: var(--industrial-card);
  border-radius: var(--radius);
  border: 1.5px solid var(--industrial-border);
  box-shadow: 0 2px 10px rgba(38, 50, 56, 0.10);
  padding: 32px 25px;
  margin-bottom: 28px;
}
.legal-section ul, .legal-section ol, .about ul, .case-studies ul {
  margin-left: 18px;
  margin-bottom: 16px;
  color: #F3F9FB;
  font-family: var(--font-body);
  line-height: 1.6;
}
.legal-section ul li, .about ul li {
  list-style: disc inside;
  margin-bottom: 5px;
}
.thank-you ul {
  margin-left: 22px;
  margin-bottom: 16px;
  color: #F3F9FB;
  font-size: 1.05rem;
}

/* --- CASE STUDIES --- */
.case-studies ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-studies ul li {
  background: var(--industrial-card);
  border-radius: var(--radius);
  border: 1.5px solid var(--industrial-border);
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 290px;
  box-shadow: 0 1px 8px #0b11141a;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .case-studies ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- MISC/HELPER CLASSES --- */
.bg-metallic {
  background: var(--metallic);
  color: #23292b;
}
.text-accent {
  color: var(--accent)!important;
}
.text-primary {
  color: var(--primary)!important;
}

/* --- SCROLLBAR (for urban industrial) --- */
*::-webkit-scrollbar {
  width: 12px;
  background: #1b2324;
}
*::-webkit-scrollbar-thumb {
  background: #20282a;
  border-radius: 6px;
  border: 3px solid #161c1e;
}

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
a, button, input, .card, .cta-primary, .cta-secondary, .testimonial-card, .features-grid > div, .services-cards > div {
  transition: box-shadow .14s, background .16s, border .17s, color .15s, transform .18s;
}

/* --- RESPONSIVE TYPOGRAPHY & LAYOUT --- */
@media (max-width: 540px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.26rem; }
  h3 { font-size: 1.05rem; }
}

/* --- Print Styles --- */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  main, body, html { background: #fff !important; color: #000 !important; }
}
