/* --- CSS RESET & NORMALIZATION --- */
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;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  background-color: #1A2329;
  color: #F3F6F8;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: inherit;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

a {
  color: #FFB844;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #fff;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F3F6F8;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

p, ul, li, blockquote, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

strong {
  font-weight: 700;
}

/* --- INDUSTRIAL MODERN VARIABLES --- */
:root {
  --primary: #184261;
  --secondary: #F3F6F8;
  --accent: #FFB844;
  --dark: #1A2329;
  --medium-dark: #222C34;
  --card-bg: #242E35;
  --card-shadow: 0 4px 24px rgba(20,30,40, 0.15);
  --metal-light: #BDC5CC;
  --metal-dark: #586972;
  --border-radius: 10px;
  --transition: 0.2s cubic-bezier(.58,.28,0,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --- CONTAINER SYSTEM --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section spacing patterns (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--dark);
  border-bottom: 2px solid var(--metal-dark);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
  border-radius: var(--border-radius);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  background: rgba(24,66,97,0.15);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 2px solid var(--accent);
  margin-left: 8px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(255,184,68, .16);
  border-color: var(--primary);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 2rem;
  margin-left: 18px;
  box-shadow: 0 2px 10px rgba(20,30,40,.08);
  z-index: 110;
  transition: background var(--transition);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 66, 97, 0.97);
  box-shadow: 0 8px 48px rgba(24,66,97,.25);
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(-100vw);
  transition: transform var(--transition);
  z-index: 1200;
  padding: 30px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 6px 14px;
  transition: background var(--transition);
  z-index: 1300;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 0 12px 8px;
  border-radius: 8px;
  background: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* --- HERO & CTA SECTIONS --- */
.hero,
.cta {
  background: linear-gradient(120deg, #1A2329 80%, #184261 120%);
  border-bottom: 1px solid var(--metal-dark);
}
.hero h1, .cta h2 {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.24);
}
.hero p, .cta p {
  color: var(--metal-light);
  font-size: 1.15rem;
}
.hero .btn-primary, .cta .btn-primary {
  margin-top: 24px;
}

/* --- SECTION GENERICS --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

.features, .solutions-overview, .solutions-offer, .solutions-benefits, .about-team, .about-stats, .pricing-tables, .pricing-faq, .blog-list {
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
}
.features h2,
.solutions-overview h2,
.solutions-offer h2,
.about-team h2,
.about-stats h2,
.pricing-tables h1,
.pricing-faq h2,
.blog-list h2 {
  color: var(--accent);
}

/* --- CARD & CONTENT LAYOUTS --- */
.features .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.features .content-wrapper > ul > li {
  flex: 1 1 240px;
  background: var(--medium-dark);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  min-width: 220px;
  max-width: 350px;
  box-shadow: 0 2px 14px rgba(20,30,40,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), background var(--transition);
  border: 1.5px solid var(--metal-dark);
}
.features .content-wrapper > ul > li:hover,
.features .content-wrapper > ul > li:focus-within {
  background: #26323B;
  box-shadow: 0 6px 18px rgba(24,66,97,0.12), 0 2px 8px rgba(0,0,0,0.05);
}
.features img {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  filter: brightness(0.93) contrast(1.1) drop-shadow(0 2px 0 #555a);
}
.features h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.features p {
  color: var(--metal-light);
}

/* Solution cards */
.solutions-overview .content-wrapper,
.pricing-tables .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.solution-card, .pricing-card {
  background: #222D35;
  border: 1.5px solid var(--metal-dark);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(20,30,40,0.07);
  flex: 1 1 260px;
  min-width: 225px;
  max-width: 335px;
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.solution-card:hover, .pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(255,184,68,0.10);
  background: #26323B;
}

.solution-card h3, .pricing-card h3 {
  font-size: 1.18rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.solution-card p, .pricing-card p,
.pricing-card span {
  color: var(--metal-light);
}
.pricing-card span {
  margin-top: 12px;
  font-size: 0.98rem;
  color: var(--accent);
  font-weight: 600;
}

/* Testimonials */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F3F6F8;
  color: #222C34;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px rgba(24,66,97,0.07), 0 2px 6px rgba(0,0,0,0.06);
  min-width: 240px;
  flex: 1 1 285px;
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
  font-family: var(--font-body);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 8px 32px rgba(24,66,97,0.09), 0 2px 8px rgba(255,184,68,.03);
  transform: translateY(-3px) scale(1.012);
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  color: #222C34;
  margin-bottom: 10px;
  font-style: italic;
  line-height: 1.4;
}
.testimonial-card span {
  color: #184261;
  font-size: 0.97rem;
  font-weight: 600;
}

/* PLAN HIGHLIGHTS & FAQ */
.plan-highlights, .pricing-faq .content-wrapper, .about-team .content-wrapper, .about-stats .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan-highlights ul, .pricing-faq ul, .about-stats ul, .about-team ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.plan-highlights li, .pricing-faq li, .about-stats li, .about-team li {
  flex: 1 1 225px;
  color: var(--metal-light);
}

/* BLOG LIST */
.blog-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article {
  background: #1A2329;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(24,66,97,0.08);
  margin-bottom: 20px;
  padding: 24px 20px;
  flex: 1 1 265px;
  min-width: 225px;
  transition: box-shadow var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-list article:hover {
  background: #222C34;
  box-shadow: 0 9px 32px rgba(255,184,68,0.07);
}

.featured-post {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--border-radius);
  margin-top: 24px;
  box-shadow: 0 2px 8px rgba(255, 184, 68, .09);
  padding: 18px 22px;
  font-weight: 600;
}

/* NEWSLETTER CTA */
.newsletter-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.newsletter-cta .btn-primary {
  margin: 0;
}

/* SUPPORT PAGE */
.support-options .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.support-options ul {
  gap: 18px;
}
.support-options a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition);
}
.support-options a:hover,
.support-options a:focus {
  color: var(--metal-light);
}

/* --- FOOTER --- */
footer {
  background: #10161D;
  border-top: 2px solid var(--metal-dark);
  padding: 36px 0 18px 0;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--metal-light);
  font-size: 0.98rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  padding: 4px 8px;
  transition: color var(--transition);
  border-radius: 6px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent);
  background: rgba(24,66,97,0.12);
}
.footer-contact {
  color: var(--metal-dark);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-top: 8px;
}

/* --- MAP EMBED & CONTACT --- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.map-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222C34;
  border-radius: var(--border-radius);
  min-height: 170px;
  max-width: 480px;
  padding: 14px 8px;
  box-shadow: 0 2px 10px rgba(24, 66, 97, 0.09);
}

/* --- PRIVACY / RODO / POLICY TEXT --- */
.privacy-policy-content, .rodo-information, .cookies-policy-content, .terms-of-use {
  background: var(--medium-dark);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(32, 40, 55, 0.05);
}
.privacy-policy-content h1, .rodo-information h1, .terms-of-use h1 {
  color: var(--accent);
  margin-bottom: 18px;
}
.privacy-policy-content h2, .rodo-information h2, .terms-of-use h2 {
  color: var(--accent);
  margin-bottom: 10px;
}
.privacy-policy-content ul, .rodo-information ul, .terms-of-use ul {
  margin-bottom: 18px;
}
.privacy-policy-content li, .rodo-information li, .terms-of-use li {
  color: var(--metal-light);
  margin-bottom: 4px;
  list-style: disc inside;
}

/* --- THANK YOU --- */
.thank-you-message .content-wrapper {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(24,66,97,0.06);
  padding: 32px 20px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.thank-you-message h1 {
  color: var(--accent);
}

/* --- CONTACT --- */
.contact-form-section, .contact-map {
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  margin-bottom: 36px;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  background: #21272D;
  color: #fff;
  padding: 24px 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -3px 34px rgba(24,66,97,0.18);
  border-top: 2px solid var(--accent);
  font-size: 1rem;
  min-width: 280px;
  animation: fadeInBottom 0.55s;
}
@keyframes fadeInBottom {
  from {transform: translateY(80px); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 128px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  outline: none;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .accept-cookies {
  background: var(--accent);
  color: #222C34;
  border: 2px solid var(--accent);
}
.cookie-banner .accept-cookies:hover {
  color: #fff;
  background: var(--primary);
}
.cookie-banner .reject-cookies {
  background: #222C34;
  color: #fff;
  border: 2px solid #3e4956;
}
.cookie-banner .reject-cookies:hover {
  background: #BA492B;
  border-color: #BA492B;
  color: #fff;
}
.cookie-banner .settings-cookies {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .settings-cookies:hover {
  background: var(--primary);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,29,34,0.85);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.28s;
}
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal {
  background: #21272D;
  max-width: 425px;
  width: 96%;
  border-radius: var(--border-radius);
  padding: 36px 22px 28px 22px;
  box-shadow: 0 8px 38px rgba(24,66,97,.23);
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
  animation: slideDownModal 0.22s;
}
@keyframes slideDownModal {
  from {transform: translateY(-40px); opacity:0;}
  to {transform:none; opacity:1;}
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #333b43;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #3d4960;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  transition: background var(--transition);
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  left: 3px;
  top: 3px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition), background var(--transition);
}
.cookie-toggle input:checked + .slider {
  background: var(--accent);
  transform: translateX(16px);
}
/* Essential cookies (locked) */
.cookie-modal .cookie-category.essential label {
  color: #77809a;
  font-style: italic;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  pointer-events: none;
  opacity: .7;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 4px;
}
.cookie-modal .modal-actions button {
  min-width: 110px;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: background var(--transition), color var(--transition);
}
.cookie-modal .modal-actions .save-cookies {
  background: var(--accent);
  color: #184261;
}
.cookie-modal .modal-actions .save-cookies:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .modal-actions .cancel-cookies {
  background: none;
  color: var(--secondary);
  border: 1.5px solid var(--metal-dark);
}
.cookie-modal .modal-actions .cancel-cookies:hover {
  background: #232c33;
  color: var(--accent);
}

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
.card, .solution-card, .pricing-card, .testimonial-card, .blog-list article {
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-primary, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

/* Utility classes for flexbox only layouts */
.d-flex {
  display: flex !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.align-center {
  align-items: center !important;
}
.align-start {
  align-items: flex-start !important;
}
.align-end {
  align-items: flex-end !important;
}
.justify-between {
  justify-content: space-between !important;
}
.justify-center {
  justify-content: center !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-24 {
  gap: 24px !important;
}
.gap-32 {
  gap: 32px !important;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 12px;
  }
  .main-nav {
    gap: 16px;
  }
  .footer-nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .content-wrapper,
  .features .content-wrapper > ul,
  .solutions-overview .content-wrapper,
  .testimonials .content-wrapper,
  .pricing-tables .content-wrapper,
  .blog-list .content-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }
  .plan-highlights ul, .pricing-faq ul, .about-stats ul, .about-team ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
  section {
    padding: 24px 0;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    height: 64px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  .solution-card, .pricing-card, .testimonial-card, .blog-list article {
    min-width: 90vw !important;
    max-width: 96vw !important;
    padding: 20px 14px;
  }
  .testimonials .content-wrapper,
  .features .content-wrapper > ul,
  .solutions-overview .content-wrapper,
  .pricing-tables .content-wrapper,
  .blog-list .content-wrapper {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .map-container {
    min-height: 110px;
    padding: 8px 4px;
  }
  .newsletter-cta {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cta .content-wrapper, .hero .content-wrapper {
    gap: 18px;
  }
}

@media (max-width: 520px) {
  html { font-size: 15px; }
  h1 { font-size: 1.16rem; }
  h2 { font-size: 1rem; }
  .btn-primary, .cookie-banner button {
    font-size: 0.92rem;
    padding: 11px 8vw;
  }
  .footer-contact {
    font-size: 0.82rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 7px;
    font-size: 0.98rem;
  }
}

/* --- HIDE OUTLINE FOR MOUSE, SHOW FOR KEYBOARD --- */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- INDUSTRIAL METALLIC ACCENTS & SHADOWS --- */
.card, .solution-card, .pricing-card, .testimonial-card, .featured-post,
.footer-nav a, .main-nav a, .btn-primary {
  box-shadow: 0 4px 16px rgba(32,55,80,0.09), 0 2px 4px 1px rgba(128,136,138,0.06);
}

/* Hide scroll on mobile menu open for underlying content */
body.mobile-menu-open {
  overflow: hidden !important;
}

/* --- END STYLES --- */
