/* CSS RESET & NORMALIZE (flexbox safe) */
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 {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  min-height: 100%;
  background: #171c22;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #171c22;
  color: #e8ecf1;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

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

ul, ol {
  margin: 0 0 20px 25px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #F5B122;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff1c2;
}

strong {
  font-weight: 700;
}

hr {
  border: 0;
  border-top: 1px solid #2e4052;
  margin: 32px 0;
}

/* BRAND TYPOGRAPHIE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #f5faff;
  line-height: 1.13;
}
h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #F5B122;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}

@media (min-width: 520px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.3rem; }
}

.subheadline {
  color: #c0c7cf;
  font-size: 1.07rem;
  font-weight: 400;
  margin-bottom: 24px;
}

/* GENERAL CONTAINER */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* SECTIONS */
section {
  width: 100%;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
/* Responsive: stack text/image vertically on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* BRAND BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 6px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s, border-color 0.2s;
  outline: none;
  border: none;
  min-width: 160px;
  margin: 6px 0;
}
.btn-primary {
  background: #203750;
  color: #F5B122;
  border: 1.8px solid #F5B122;
  box-shadow: 0 2px 10px 0 rgba(32,55,80,0.12);
  position: relative;
  z-index: 2;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2e4052;
  color: #fff3ce;
  box-shadow: 0 4px 18px 0 rgba(245, 177, 34, 0.24);
  border-color: #fff3ce;
}

.btn-primary.btn-large {
  font-size: 1.18rem;
  padding: 18px 36px;
}

.btn-secondary {
  background: #E8ECF1;
  color: #203750;
  border: 1.4px solid #919aa6;
  box-shadow: 0 1px 6px 0 rgba(32,55,80,0.10);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #c0c7cf;
  color: #171c22;
  border-color: #F5B122;
}

/* HEADER & NAVIGATION */
header {
  background: #171c22;
  border-bottom: 1.5px solid #232a32;
  width: 100%;
  z-index: 999;
  position: sticky;
  top: 0;
  transition: box-shadow 0.22s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 18px 16px;
  flex-wrap: wrap;
  position: relative;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #E8ECF1;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: none;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #F5B122;
  transition: width 0.25s;
  position: absolute;
  bottom: -3px; left: 0;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 86%;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #F5B122;
  font-size: 2.06rem;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  line-height: 1;
  z-index: 2001;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #E8ECF1;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: rgba(23, 28, 34, 0.94);
  z-index: 3000;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.76,.01,.65,1), opacity 0.22s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 6px 0;
  background: none;
  font-size: 2rem;
  color: #F5B122;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 3002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff3ce;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  padding: 28px 32px 0 24px;
}
.mobile-nav a {
  color: #E8ECF1;
  background: none;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid #232a32;
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F5B122;
}

@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* MAIN LAYOUT SECTIONS & FLEX CARDS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1a212a;
  border-radius: 18px;
  box-shadow: 0 3px 32px 0 rgba(32,55,80,0.10);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #242c35;
  border-radius: 9px;
  min-width: 252px;
  flex: 1 1 240px;
  box-shadow: 0 2px 16px 0 rgba(32, 55, 80, 0.11);
  transition: box-shadow 0.18s, background 0.15s;
  position: relative;
  padding: 18px 16px;
}
.card:hover, .card:focus-within {
  background: #232a32;
  box-shadow: 0 6px 26px 0 rgba(245,177,34,0.13), 0 2px 10px 0 rgba(32,55,80,0.13);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.feature {
  background: #232a32;
  box-shadow: 0 2px 16px 0 rgba(32,55,80,0.09);
  border-radius: 8px;
  padding: 26px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 260px;
  gap: 15px;
  border-left: 3px solid #F5B122;
  transition: box-shadow 0.18s, border-color 0.25s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
  filter: grayscale(23%) brightness(0.87) drop-shadow(0px 3px 13px #0d0e10);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 28px 0 rgba(245,177,34,0.10), 0 2px 12px 0 rgba(32,55,80,0.17);
  border-left: 3px solid #ffe29a;
  z-index: 3;
}
.feature h3 {
  color: #F5B122;
  font-size: 1.11rem;
  margin: 10px 0 6px 0;
}
.feature p {
  color: #e8ecf1;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.value-item {
  background: #232a32;
  border-radius: 9px;
  padding: 24px 16px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-left: 3px solid #F5B122;
  box-shadow: 0 2px 12px 0 rgba(32,55,80,0.10);
  transition: border-color 0.2s, box-shadow 0.21s;
}
.value-item img {
  width: 38px;
  height: 38px;
  filter: grayscale(12%) brightness(0.89) drop-shadow(0px 2px 9px #1a212a);
}
.value-item:hover, .value-item:focus-within {
  border-left: 3px solid #ffe29a;
  box-shadow: 0 8px 22px 0 rgba(245,177,34,0.12), 0 2px 9px 0 rgba(32,55,80,0.17);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.service-item {
  background: #232a32;
  border-radius: 9px;
  border-left: 3px solid #F5B122;
  padding: 26px 18px 24px 18px;
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(32,55,80,0.09);
}
.service-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
  filter: grayscale(19%) brightness(0.92) drop-shadow(0px 3px 13px #232a32);
}
.service-item:hover, .service-item:focus-within {
  border-left: 3px solid #ffe29a;
  box-shadow: 0 8px 22px 0 rgba(245,177,34,0.13), 0 2px 9px 0 rgba(32,55,80,0.17);
}
.service-price {
  background: #171c22;
  color: #F5B122;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 1.08rem;
  font-weight: 700;
  align-self: flex-start;
}

.stepper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-position: outside;
  margin-left: 25px;
}
.stepper li {
  background: #232a32;
  color: #E8ECF1;
  border-radius: 7px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 1.5px 12px 0 rgba(32,55,80,0.07);
  border-left: 3px solid #F5B122;
  margin-bottom: 5px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.stepper li:hover, .stepper li:focus {
  border-left: 3px solid #ffe29a;
  box-shadow: 0 8px 19px 0 rgba(245,177,34,0.10), 0 2px 9px 0 rgba(32,55,80,0.13);
}
.stepper h3 { color: #F5B122; margin-bottom: 7px; }

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 12px;
}
.faq-item {
  background: #222933;
  border-radius: 9px;
  box-shadow: 0 1.5px 9px 0 rgba(32,55,80,0.08);
  padding: 18px 16px;
  border-left: 3px solid #F5B122;
  transition: border-color 0.16s, box-shadow 0.18s;
}
.faq-item h3 {
  color: #F5B122;
  font-size: 1.09rem;
  margin-bottom: 8px;
}
.faq-item p {
  color: #e8ecf1;
}
.faq-item:hover, .faq-item:focus-within {
  border-left: 3px solid #ffe29a;
  box-shadow: 0 8px 16px 0 rgba(245,177,34,0.11);
}

.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* TESTIMONIALS CARD */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fafbfc;
  color: #203750;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 22px 0 rgba(32,55,80,0.09);
  margin-bottom: 24px;
  border-left: 3px solid #F5B122;
  min-width: 215px;
  max-width: 470px;
  transition: box-shadow 0.18s, border-color 0.16s;
}
.testimonial-card p {
  font-size: 1.18rem;
  color: #203750;
  letter-spacing: 0.01em;
}
.testimonial-meta {
  color: #576574;
  font-size: 1rem;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 18px 0 rgba(245,177,34,0.11), 0 2px 9px 0 rgba(32,55,80,0.10);
  border-left: 3px solid #203750;
}

/* CONTACT DETAILS FLEX */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  margin-top: 12px;
}
.contact-details .text-section {
  min-width: 225px;
  flex: 1 1 225px;
}
.contact-info-extra {
  min-width: 225px;
  flex: 1 1 225px;
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.address-map-placeholder {
  background: #222933;
  padding: 22px 12px;
  border-radius: 8px;
  color: #E8ECF1;
  font-size: 1.02rem;
}

/* Parity with about + privacy text-section */
.text-section {
  background: none;
  color: #e8ecf1;
}
.text-section h2, .text-section h3 {
  color: #F5B122;
}

/* FEATURED ITEM BLOCKS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FOOTER */
footer {
  background: #1a212a;
  padding-top: 28px;
  padding-bottom: 26px;
  border-top: 2px solid #232a32;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #F5B122;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.2s;
  padding-bottom: 1px;
}
.footer-nav a:hover {
  color: #fff3ce;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.97rem;
  color: #90a2b6;
}

/* THANK YOU SCREEN */
.thank-you-message {
  font-size: 1.24rem;
  color: #cccccc;
  margin: 20px 0 14px 0;
}

/* COOKIE BANNER & CONSENT MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a212a;
  color: #E8ECF1;
  border-top: 2.5px solid #F5B122;
  box-shadow: 0 -6px 28px 0 rgba(32,55,80,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 16px 22px 16px;
  z-index: 3999;
  flex-wrap: wrap;
  gap: 28px;
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(.76,.01,.65,1), opacity 0.18s;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  max-width: 540px;
  font-size: 1rem;
  color: #E8ECF1;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner .btn-cookie {
  min-width: 145px;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  background: #203750;
  color: #F5B122;
  border: 1.6px solid #F5B122;
  cursor: pointer;
  transition: background 0.2s, color 0.19s, border 0.19s;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #2e4052;
  color: #fff3ce;
  border-color: #fff3ce;
}
.cookie-banner .btn-cookie.settings {
  background: #E8ECF1;
  color: #203750;
  border: 1.3px solid #203750;
}
.cookie-banner .btn-cookie.settings:hover, .cookie-banner .btn-cookie.settings:focus {
  background: #F5B122;
  color: #203750;
  border-color: #203750;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30, 37, 48, 0.92);
  z-index: 4001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s cubic-bezier(.76,.01,.65,1);
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #14181e;
  border-radius: 14px;
  max-width: 98vw;
  width: 400px;
  padding: 30px 26px 26px 26px;
  box-shadow: 0 4px 48px 0 rgba(32,55,80,0.24), 0 1.2px 12px 0 rgba(245,177,34,0.12);
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #e8ecf1;
  position: relative;
}
.cookie-modal .modal-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #F5B122;
  margin-bottom: 7px;
}
.cookie-modal .modal-section {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #f5faff;
  font-weight: 500;
}
.cookie-modal .toggle {
  width: 32px;
  height: 18px;
  background: #232a32;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  border: 1.5px solid #F5B122;
  transition: background 0.22s, border 0.18s;
}
.cookie-modal .toggle[data-active="true"] {
  background: #F5B122;
  border-color: #F5B122;
}
.cookie-modal .toggle-knob {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1.3px;
  left: 2px;
  transition: left 0.22s cubic-bezier(.76,.01,.65,1), background 0.18s;
}
.cookie-modal .toggle[data-active="true"] .toggle-knob {
  left: 15px;
  background: #203750;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie-save {
  min-width: 90px;
  font-size: 1rem;
  padding: 7px 17px;
  background: #203750;
  color: #F5B122;
  border: 1.2px solid #F5B122;
  border-radius: 4px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, border 0.19s;
}
.cookie-modal .btn-cookie-save:hover, .cookie-modal .btn-cookie-save:focus {
  background: #2e4052;
  color: #fff3ce;
}
.cookie-modal .cookie-modal-close {
  background: none;
  color: #F5B122;
  border: none;
  font-size: 1.7rem;
  position: absolute;
  top: 12px; right: 22px;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #fff3ce;
}

/* UTILS */
::-webkit-scrollbar {
  width: 10px;
  background: #1a212a;
}
::-webkit-scrollbar-thumb {
  background: #242c35;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #203750;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .container { max-width: 95vw; }
}
@media (max-width: 900px) {
  .card-container, .feature-grid, .values-list, .service-list, .footer-info, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .section, section {
    padding: 28px 8px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 768px) {
  html, body { font-size: 15px; }
  .section, section {
    margin-bottom: 32px;
    padding: 26px 5vw;
    border-radius: 11px;
  }
  .feature, .service-item, .value-item { min-width: 140px; max-width: 100vw; padding: 17px 10px; }
  .faq-list, .stepper { gap: 13px; }
  .footer-nav { gap: 8px; flex-wrap: wrap; }
  .footer-info { flex-direction: column; gap: 10px; }
  .contact-details { flex-direction: column; gap: 16px; }
}
@media (max-width: 520px) {
  .container { padding: 0 4px; }
  .section, section { padding: 14px 2px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .feature-grid, .values-list, .service-list, .card-container { gap: 13px; }
  .btn-primary, .btn-secondary { min-width: 110px; padding: 10px 9px; font-size: 0.97rem; }
  .cookie-banner { flex-direction: column; gap: 16px; padding: 16px 4px 14px 4px; font-size: 0.98rem; }
  .cookie-banner .cookie-actions { flex-direction: column; gap: 8px; }
  .cookie-banner .cookie-text { max-width: 98vw; }
}

/* INDUSTRIAL MODERN DECOR */
section, .section, .card, .feature, .service-item, .value-item {
  border-bottom: 1.5px solid #242c35;
  box-shadow: 0 4px 22px 0 rgba(37,37,38,0.13) inset;
}

/* Link underline for accessibility */
a:focus-visible {
  outline: 2px solid #F5B122;
  outline-offset: 1.4px;
}

/* Animations for micro-interactions */
.btn-primary, .btn-secondary, .service-item, .value-item, .feature, .testimonial-card, .card {
  transition: box-shadow 0.16s, transform 0.18s, background 0.13s, color 0.14s;
}
.btn-primary:active, .btn-secondary:active, .service-item:active, .feature:active {
  transform: scale(0.98);
}
.card:active, .testimonial-card:active {
  transform: scale(0.99);
}

/* Utility fade-in animation on page load (opt-in) */
.fade-in { animation: fadeIn 0.7s cubic-bezier(.61,.09,.5,1.15) both; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Print styles minimal */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  main, .section, section { background: #fff !important; color: #111 !important; }
}

/* End of CSS */
