/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #1f2227;
  color: #F7F7F7;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
a {
  color: #149B65;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #13c180;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #36393f;
}

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

:root {
  --primary: #274472;
  --primary-dark: #1a2940;
  --secondary: #F7F7F7;
  --accent: #149B65;
  --accent-dark: #12704A;
  --bg: #1f2227;
  --gray: #23262b;
  --gray-light: #2c2e33;
  --metal: #818389;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

/* GENERAL CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

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

@media (max-width: 900px) {
  .section, section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* TYPOGRAPHY ----------------------------------------------- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--secondary);
  margin-bottom: 12px;
}
@media (max-width: 600px) { h1, .hero h1 { font-size: 2rem; } }

h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
@media (max-width: 600px) { h2 { font-size: 1.4rem; } }

h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

p, li, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #e5e7e9;
}

strong {
  font-weight: 600;
  color: var(--accent);
}

.text-section p, .text-section ul, .text-section li {
  color: #cccccc;
}

blockquote {
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 4px;
}

hr {
  border: 0;
  height: 1px;
  background: var(--gray-light);
  margin: 32px 0;
}

/* HEADER & NAVIGATION ----------------------------------- */
header {
  background: var(--primary-dark);
  box-shadow: 0 2px 16px 0 rgba(39,68,114,0.12);
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.header-logo img {
  height: 40px;
  filter: grayscale(0.2) contrast(1.2) drop-shadow(0 1px 2px #17171730);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--secondary);
  padding: 4px 8px;
  border-radius: 5px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-bottom var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  background: #263142;
  border-bottom: 2px solid var(--accent);
  outline: none;
}
.cta-btn.primary {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 6px;
  border: none;
  padding: 11px 32px;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px 0 rgba(20,155,101,0.12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), transform 0.1s;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #13c180;
  color: #23262b;
  transform: translateY(-2px) scale(1.04);
}
.cta-btn {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  margin-top: 12px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform 0.17s;
  box-shadow: 0 2px 8px 0 rgba(39,68,114,0.2);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 4px 14px 0 rgba(20,155,101,0.10);
  transform: scale(1.04);
}

/* MOBILE NAVIGATION --------------------------- */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    font-size: 2rem;
    color: var(--secondary);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 130;
    margin-left: 8px;
    height: 38px;
    width: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    transition: background 0.1s;
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #23262b;
    color: var(--accent);
    outline: none;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    width: 100vw;
    height: 100vh;
    background: #23262be6;
    transform: translateX(-105%);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.65,0,.35,1), opacity var(--transition);
    box-shadow: 2px 0 20px #191c19aa;
  }
  .mobile-menu.active {
    transform: translateX(0);
    pointer-events: initial;
    opacity: 1;
  }
  .mobile-menu-close {
    align-self: flex-end;
    margin: 28px 30px 12px 0;
    background: none;
    color: var(--accent);
    font-size: 2.6rem;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 200;
  }
  .mobile-menu-close:focus, .mobile-menu-close:hover {
    color: var(--secondary);
    outline: none;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 28px 40px;
  }
  .mobile-nav a {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid #383838;
    width: 100%;
    transition: color 0.16s;
    text-align: left;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: var(--accent);
    background: rgba(50,77,111,.09);
    outline: none;
  }
  .cta-btn.primary {
    font-size: 1rem;
    padding: 11px 22px;
  }
}

/* HERO SECTION ---------------------------------- */
.hero {
  background: linear-gradient(90deg, rgba(39,68,114,0.97) 85%, rgba(20,155,101,0.13) 100%), url('../assets/bg-industrie.jpg') center/cover repeat;
  border-bottom: 4px solid var(--accent-dark);
  min-height: 340px;
  box-shadow: 0 1px 32px #00000022 inset;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #fff;
  text-shadow: 1px 2px 10px #13223655;
}
.hero p {
  font-size: 1.3rem;
  color: #d2e0ef;
  margin-bottom: 12px;
}

@media (max-width: 700px) {
  .hero {
    min-height: unset;
    padding: 32px 0 24px;
    background: var(--primary) linear-gradient(90deg, rgba(39,68,114,1) 90%, rgba(20,155,101,0.18) 100%);
  }
  .hero .container {
    min-height: unset;
  }
}

/* FLEXBOX UTILITY PATTERNS (MANDATORY) ---------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--gray-light);
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.10);
  padding: 24px 20px;
  flex: 1 1 240px;
  min-width: 230px;
  transition: box-shadow 0.18s, background 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #12704a55;
  background: #22242a;
}
.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: #F7F7F7;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px 0 rgba(39,68,114,0.06);
  min-width: 270px;
}
.testimonial-card blockquote {
  color: var(--primary-dark);
  font-size: 1.05rem;
  border-left: 4px solid var(--accent);
  margin: 0;
  padding-left: 16px;
}
.testimonial-card footer {
  color: #32364a;
  font-size: 0.98rem;
  margin-left: 12px;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 14px;
}
@media (max-width: 800px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* FEATURES & SERVICE CARDS -------------------------- */
.features {
  background: none;
}
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 20px;
  margin: 16px 0 18px;
}
.feature-grid li, .feature-list li {
  font-family: var(--font-display);
  background: #232934;
  color: #f7f7f7;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing:0.1px;
  box-shadow: 0 2px 8px 0 rgba(39,68,114,0.04);
  border-bottom: 2px solid var(--primary);
  margin: 0 10px 8px 0;
  min-width: 210px;
  position: relative;
}
.feature-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 10px;
}
.feature-icons img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 3px 9px #13223611) grayscale(0.2) contrast(1.15);
}
.feature-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  counter-reset: step;
}
.feature-steps li {
  background: #232934;
  color: #ececec;
  border-radius: 8px;
  padding: 18px 30px 18px 54px;
  min-width: 240px;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
.feature-steps li span {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-steps li span img {
  height: 32px;
  width: 32px;
}

/* SERVICES & PRICING -------------------------- */
.services .service-cards, .pricing-table, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 12px 0;
  align-items: stretch;
}
.service-card {
  background: #22242a;
  border-radius: 12px;
  box-shadow: 0 3px 18px 0 #12704a16;
  padding: 30px 20px 22px 20px;
  min-width: 250px;
  max-width: 320px;
  color: #f7f7f7;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  border-bottom: 5px solid var(--accent);
  position: relative;
  transition: box-shadow .16s, transform .15s, border-bottom-color .13s;
}
.service-card:hover {
  box-shadow: 0 8px 30px #12704a30, 0 2px 4px #191c1b22;
  background: #232a31;
  border-bottom-color: var(--primary);
  transform: translateY(-4px) scale(1.025);
}
.service-card h3 {
  margin: 0 0 8px;
  color: var(--accent);
}
.service-card .price {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  background: #f7f7f7;
  padding: 4px 12px;
  border-radius: 5px;
  align-self: flex-start;
  margin-top: 6px;
  box-shadow: 0 1px 4px #2744720f;
}

.pricing-table {
  background: #23262b;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px #1213161c;
  display: flex;
  flex-direction: column;
}
.pricing-table thead {
  background: var(--primary-dark);
}
.pricing-table th {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.pricing-table td {
  color: #e3e2df;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .services .service-cards, .pricing-table, .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-card, .card {
    min-width: 180px;
    max-width: 100vw;
    padding: 22px 12px 16px 12px;
  }
}

/* FAQ ---------------------------- */
.faq-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}
.faq-item {
  background: #232934;
  border-radius: 9px;
  padding: 18px 18px 10px 18px;
  min-width: 220px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px #12704a0d;
  color: #f7f7f7;
}
.faq-item h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.faq-item p {
  font-size: 0.97rem;
  color: #c9c7be;
}
@media (max-width: 900px) {
  .faq-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* CONTACT ---------------------------------- */
.contact-data {
  padding: 13px 18px 13px 0;
  background: #15171a;
  border-radius: 9px;
  color: var(--metal);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 220px;
}
.contact-data strong {
  color: var(--primary);
  font-weight: 600;
}
.contact-data a {
  color: var(--accent);
  word-break: break-all;
}
@media (max-width: 660px) {
  .contact-data { padding: 11px 9px 8px 0; }
}

/* TABLE LAYOUTS ---------------------------------- */
table.pricing-table {
  width: 100%;
  margin: 0;
}
@media (max-width: 600px) {
  table.pricing-table thead {
    display: none;
  }
  table.pricing-table tbody, table.pricing-table tr, table.pricing-table td {
    display: block;
    width: 100%;
  }
  table.pricing-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #313131;
    position: relative;
  }
  table.pricing-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--accent);
    min-width: 120px;
    display: block;
    margin-bottom: 4px;
    font-size: 0.93rem;
  }
}

/* FOOTER ---------------------------------- */
footer {
  background: #22262B;
  padding: 36px 0 27px 0;
  border-top: 2.5px solid var(--primary);
  margin-top: 40px;
}
.footer-flex {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 34px;
  filter: contrast(1.1) grayscale(0.06);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-family: var(--font-display);
  color: #cccccc;
  font-weight: 500;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.footer-contact {
  color: #b0b4ba;
  font-size: 0.99rem;
  margin-top: 2px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact a {
  color: var(--accent);
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer {
    padding-top: 32px;
    padding-bottom: 16px;
  }
}

/* CONFIRMATION / SUCCESS ---------------------- */
.confirmation .cta-btn.primary {
  margin-top: 22px;
  font-size: 1.13rem;
}
.confirmation h1 {
  color: var(--accent);
  margin-bottom: 16px;
}

/* COOKIE CONSENT BANNER -------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 220;
  background: linear-gradient(90deg, #22262B 80%, var(--primary-dark) 120%);
  color: #fafbfa;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 20px 36px 20px 24px;
  box-shadow: 0 -4px 20px #181e223c;
  font-family: var(--font-body);
  font-size: 1rem;
  border-top: 3px solid var(--accent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: all 0.35s cubic-bezier(.5,.14,.45,.99);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-message {
  flex: 1 1 auto;
  color: #ececec;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: var(--gray-light);
  color: var(--accent);
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .15s;
  box-shadow: 0 1px 5px #12704a08;
}
.cookie-btn.primary {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #13c180;
}
.cookie-btn.reject {
  background: #1c2820;
  color: var(--accent);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--accent-dark);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 10px;
    font-size: 0.97rem;
  }
}

/* COOKIE MODAL POPUP ----------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,32,39,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.66,0,.28,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #23262b;
  border-radius: 13px;
  box-shadow: 0 8px 48px #1D222930;
  padding: 36px 32px 26px 32px;
  min-width: 320px;
  max-width: 430px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: cookie-modal-in .39s cubic-bezier(.61,0,.39,1);
}
@keyframes cookie-modal-in {
  0% { transform: scale(0.97) translateY(80px); opacity: 0; }
  84% { transform: scale(1.04) translateY(-12px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-header {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-switch {
  margin-left: auto;
  min-width: 48px;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}

/* Custom toggle style for cookie settings */
.cookie-switch label {
  display: block;
  position: relative;
  width: 41px;
  height: 22px;
  background: var(--primary);
  border-radius: 11px;
  cursor: pointer;
  transition: background .18s;
}
.cookie-switch label:after {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  transition: left .17s cubic-bezier(.8,0,.32,1);
}
.cookie-switch input[type="checkbox"]:checked + label {
  background: var(--accent);
}
.cookie-switch input[type="checkbox"]:checked + label:after {
  left: 21px;
  background: #fff;
}
.cookie-switch input[type="checkbox"]:disabled + label {
  background: #49536F;
  opacity: 0.85;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  z-index: 20;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal-dialog {
    padding: 22px 7px 20px 7px;
    min-width: unset;
    max-width: 99vw;
  }
  .cookie-modal-header {
    font-size: 1.11rem;
  }
}

/* MICRO-INTERACTIONS, TRANSITIONS & MODERN EFFECTS */
.card, .service-card, .cta-btn, .feature-item, .faq-item {
  transition: box-shadow 0.18s, background 0.13s, transform 0.15s;
}
.cta-btn:active {
  transform: scale(0.98);
}
.card:active, .service-card:active {
  transform: scale(0.99);
}

/* SHADOWS & ROUNDED CORNERS ------------------------------ */
.card, .service-card, .testimonial-card, .feature-item, .faq-item, .footer-nav, .cookie-modal-dialog {
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 #21283811;
}

/* VISUAL HIERARCHY, CONTRASTS, SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  section {
    margin-bottom: 36px;
    padding: 23px 8px;
  }
}

/* FORM LAYOUT (simple fallback, since form is link-based here) */
.contact-form .cta-btn {
  margin-top: 20px;
}
.contact-form ul {
  margin-bottom: 12px;
}

/* UTILITY CLASSES ------------------------------------------- */
.d-none { display: none !important; }
.z-100 { z-index: 100 !important; }
.hide-on-mobile { display: block; }
@media (max-width: 800px) { .hide-on-mobile { display: none; } }

/* PRINT (optional for policy/legal pages) */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section, .container { box-shadow: none !important; background: #fff !important; color: #000 !important; }
  body { background: #fff!important; color: #000!important; }
}
