/* =============================================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
.content-wrapper img {
  width: 100px;
}
footer p {
  color: white;
}
.main-nav img {
  width: 150px;
}
html {
  font-size: 16px;
  box-sizing: border-box;
  height: 100%;
}
body {
  min-height: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #16305B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #FCA311;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
}
button, .cta, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}
:focus-visible {
  outline: 2px dashed #16305B;
  outline-offset: 1px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #141414;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 0.75em;
  color: #111;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.6em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, li, span, label {
  font-size: 1rem;
  color: #242424;
}
p {
  margin-bottom: 1em;
}

strong, b {
  font-weight: bold;
}
em, i {
  font-style: italic;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
}

/* ============ COLOR PALETTE ============ */
:root {
  --primary: #111111;
  --secondary: #ffffff;
  --accent: #E0E1DD;
  --brand-primary: #16305B;
  --brand-secondary: #FCA311;
  --gray-100: #f8f8f8;
  --gray-200: #ececec;
  --gray-300: #dedede;
  --gray-400: #b0b0b0;
  --gray-500: #888888;
  --gray-600: #555555;
  --black: #111111;
  --white: #fff;
}

/* ============ BASIC LAYOUTS ============ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/* Card Container Example */
.card-container,
.feature-grid,
.service-cards,
.machine-category-list,
.service-details-list,
.testimonial-cards,
.step-list,
.contact-info,
.company-map {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  background: var(--gray-100);
  box-shadow: 0 1px 6px 0 rgba(17,17,17,0.06);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(17,17,17,0.15);
}

.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: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(17,17,17,0.08);
  min-width: 250px;
  flex: 1 1 320px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(17,17,17,0.13);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.company-map {
  display: flex;
  margin-top: 16px;
}

/* BUSINESS HOURS & CONTACT */
.business-hours, .company-address {
  margin-top: 16px;
  background: var(--gray-100);
  padding: 16px 20px;
  border-radius: 10px;
}

/* =========== HEADER & NAVIGATION =========== */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 19;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.main-nav .logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 26px;
  margin-left: 20px;
}
.main-nav li {
  display: flex;
}
.main-nav a {
  padding: 6px 4px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
  color: var(--black);
  position: relative;
}
.main-nav a.cta {
  margin-left: 32px;
}
.main-nav a[aria-current="page"],
.main-nav a.active {
  color: var(--brand-primary);
  font-weight: 700;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.25s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

/* Responsive nav */
.mobile-menu-toggle {
  display: none;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  padding: 6px 10px;
  margin-left: 16px;
  border: none;
  cursor: pointer;
  transition: background .15s;
  z-index: 28;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--gray-500);
  color: var(--brand-secondary);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--white);
  box-shadow: 0 0 48px rgba(17,17,17,0.15);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 20px 20px 20px;
  transform: translateX(110%);
  transition: transform .34s cubic-bezier(0.4, 0.1, 0.22, 1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.3rem;
  color: var(--brand-primary);
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 12px 0;
  color: var(--black);
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gray-200);
  color: var(--brand-secondary);
}

@media (max-width: 1024px) {
  .main-nav ul { gap: 18px; }
  .main-nav a.cta { margin-left: 10px; }
}
@media (max-width: 900px) {
  .container { padding: 0 10px; }
}
@media (max-width: 880px) {
  .main-nav ul {
    display: none;
  }
  .main-nav a.cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* =========== HERO & PRIMARY CTA SECTIONS =========== */
.hero {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(28,28,30,0.05);
  padding: 70px 0 60px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.hero h1 {
  color: var(--white);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.7rem;
  line-height: 1.07;
  letter-spacing: -0.01em;
  margin-bottom: 1.2em;
}
.hero p {
  color: var(--gray-300);
  font-size: 1.18rem;
  margin-bottom: 1.4em;
  max-width: 640px;
}
.hero .cta {
  font-size: 1.13rem;
  font-weight: 700;
  padding: 16px 38px;
}
@media (max-width: 765px) {
  .hero h1 { font-size: 2rem; }
  .hero .cta { padding: 13px 15px; font-size: 1rem; }
}

/* =========== FEATURES =========== */
.features {
  background: var(--secondary);
}
.features .feature-grid, .features .machine-category-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.features .feature-grid li, .machine-category-list li {
  background: var(--gray-100);
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(17,17,17,0.05);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  padding: 26px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.16s;
}
.features .feature-grid li:hover, .machine-category-list li:hover {
  box-shadow: 0 4px 16px rgba(17,17,17,0.13);
}
.features .feature-grid img, .machine-category-list img {
  width: 40px;
  margin-bottom: 10px;
}
.features .feature-grid h3, .machine-category-list h3 {
  color: var(--brand-primary);
  font-size: 1.13rem;
  margin-bottom: 5px;
}
.features.process {
  background: var(--gray-100);
}
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-left: 0;
  width: 100%;
  counter-reset: process-step;
}
.step-list li {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-300);
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 1px 5px rgba(25,28,30,0.04);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.step-list img {
  width: 34px;
  margin-bottom: 10px;
}
.step-list h3 {
  color: var(--brand-primary);
  font-size: 1rem;
}
/* for ordered steps with numbers */
.step-list li::before {
  counter-increment: process-step;
  content: counter(process-step) ". ";
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 1.09rem;
  margin-right: 6px;
}

@media (max-width: 850px) {
  .feature-grid, .machine-category-list, .step-list {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .machine-category-list, .step-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* =========== SERVICES =========== */
.services .service-cards, .services .service-details-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 30px 0;
}
.services .service-cards > div, .service-details-list > li {
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(36,36,36,0.07);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.14s;
  margin-bottom: 14px;
}
.services .service-cards > div:hover, .service-details-list > li:hover {
  box-shadow: 0 6px 22px rgba(17,17,17,0.12);
}
.services .service-cards img, .service-details-list img {
  width: 36px;
  margin-bottom: 8px;
}
.services .service-cards h3, .service-details-list h3 {
  font-size: 1.08rem;
  color: var(--brand-primary);
  margin-bottom: 4px;
}
.services .service-cards strong,
.service-details-list strong {
  color: var(--brand-secondary);
  font-size: 1.05rem;
  margin-top: 6px;
}
.services .service-cards .cta.small,
.service-details-list .cta.small {
  padding: 7px 14px;
  font-size: .95rem;
  margin-top: 8px;
}
@media (max-width: 620px) {
  .services .service-cards, .services .service-details-list {
    flex-direction: column;
    gap: 15px;
  }
}

/* ============= CONTACT INFO & FORM ============= */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 18px 0;
}
.contact-info > div {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  flex: 1 1 220px;
}
.contact-info img {
  width: 22px;
  height: 22px;
  display: block;
}
.contact-info a {
  color: var(--brand-primary);
  font-weight: 600;
  transition: color .18s;
}
.contact-info a:hover { color: var(--brand-secondary); }

.business-hours h3 {
  margin-bottom: 3px;
  font-size: 1.05rem;
  color: var(--black);
}

@media (max-width: 540px) {
  .contact-info {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============= TESTIMONIALS ============= */
.testimonials {
  background: var(--gray-100);
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #1c1c1c;
}
.testimonial-card span {
  font-size: 0.94rem;
  color: var(--gray-600);
}
.stars {
  display: flex;
  gap: 2px;
}
.stars img {
  width: 18px;
  height: 18px;
}

@media (max-width: 700px) {
  .testimonial-cards {
    flex-direction: column;
    gap: 14px;
  }
}

/* =========== FOOTER =========== */
footer {
  background: var(--black);
  color: var(--gray-100);
  padding: 34px 0 0 0;
  font-size: 0.98rem;
  margin-top: 80px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-nav a {
  color: var(--gray-300);
  font-size: 1rem;
  border-radius: 4px;
  padding: 4px 8px;
  transition: background .13s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-secondary);
  color: var(--black);
}
.footer-contact {
  border-top: 1px solid var(--gray-400);
  margin-top: 16px;
  padding: 18px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--gray-400);
}
.footer-contact a {
  color: var(--gray-300);
  text-decoration: underline;
  transition: color .13s;
}
.footer-contact a:hover { color: var(--brand-secondary); }

@media (max-width: 660px) {
  .footer-main {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* =========== BUTTONS & CTA =========== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 1px 8px rgba(44,44,44,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.22s;
  cursor: pointer;
  text-align: center;
}
.cta.primary {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-secondary);
  color: var(--black);
  border-color: var(--brand-secondary);
  box-shadow: 0 4px 18px rgba(239,170,41,0.08);
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: var(--secondary);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  margin-left: 0;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-primary);
  color: var(--white);
}
.cta.small {
  padding: 6px 14px;
  font-size: 0.99rem;
  border-radius: 6px;
  margin-top: 6px;
}
@media (max-width: 520px) {
  .cta { width: 100%; font-size: .97rem; padding: 12px 8px; }
}

/* =========== LEGAL & POLICY PAGES =========== */
.legal {
  background: var(--gray-100);
  padding: 50px 0;
  min-height: 60vh;
}
.legal .content-wrapper {
  max-width: 740px;
  margin: 0 auto;
  gap: 22px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--brand-primary);
}
.legal .text-section {
  background: var(--secondary);
  margin-bottom: 20px;
  padding: 26px 22px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 6px rgba(17, 17, 17, 0.06);
}

/* ============= UTILS, DIVIDERS ============= */
hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 30px 0;
}

/* =========== COOKIE BANNER =========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  z-index: 120;
  background: var(--gray-100);
  color: var(--black);
  box-shadow: 0 -2px 12px rgba(44,44,44,0.09);
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  animation: cookie-slideup .5s cubic-bezier(0.25,0.8,0.40,1) 1;
}
@keyframes cookie-slideup {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .cookie-btn {
  padding: 10px 21px;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  border: 1.3px solid var(--black);
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .19s, color .13s, border .13s, box-shadow .18s;
  cursor: pointer;
  margin: 0 2px;
  font-size: 1rem;
}
.cookie-banner .cookie-btn.accept {
  background: var(--brand-secondary);
  color: var(--black);
  border-color: var(--brand-secondary);
}
.cookie-banner .cookie-btn.reject {
  background: var(--white);
  color: var(--black);
  border: 1.3px solid var(--gray-400);
}
.cookie-banner .cookie-btn.settings {
  background: var(--white);
  color: var(--brand-primary);
  border: 1.3px solid var(--brand-primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--brand-primary);
  color: var(--white);
  border-color: var(--brand-primary);
}

/* Cookie modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 130;
  background: rgba(17,17,17,0.37);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  color: var(--black);
  border-radius: 16px;
  min-width: 320px;
  max-width: 96vw;
  width: 380px;
  box-shadow: 0 12px 36px rgba(44,44,44,0.19);
  padding: 34px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-fadein .35s;
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal .modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brand-primary);
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .modal-close:hover { color: var(--brand-secondary); }
.cookie-modal h3 {
  font-size: 1.19rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
}
.cookie-modal .category-label {
  font-weight: 500;
}
.cookie-modal .cookie-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cookie-modal .cookie-toggle input[type='checkbox'] {
  width: 32px;
  height: 20px;
  accent-color: var(--brand-secondary);
  border-radius: 12px;
}
.cookie-modal .category-desc {
  font-size: 0.96rem;
  color: var(--gray-500);
  margin: 2px 0 7px 0;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  border-radius: 6px;
  background: var(--brand-primary);
  color: var(--white);
  border: 1.3px solid var(--brand-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-left: 6px;
  transition: background .16s, color .14s, border .13s;
}
.cookie-modal .cookie-btn.cancel {
  background: var(--white);
  color: var(--brand-primary);
  border: 1.3px solid var(--brand-primary);
}
.cookie-modal .cookie-btn.save {
  background: var(--brand-secondary);
  color: var(--black);
  border-color: var(--brand-secondary);
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--brand-primary);
  color: var(--white);
  border-color: var(--brand-primary);
}

@media (max-width:460px){
  .cookie-modal{ width:98vw; min-width:0; padding:14px 8px 12px 12px; font-size:0.97rem; }
}

/* =========== ANIMATIONS & MICRO-INTERACTIONS =========== */
.cta, .cta.primary, .cta.secondary {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.17s;
}
.cta:active { transform: scale(0.97); }
.testimonial-card, .card, .features .feature-grid li, .machine-category-list li {
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:active, .card:active, .features .feature-grid li:active, .machine-category-list li:active {
  transform: scale(0.99);
}

/* =========== RESPONSIVE SPACING =========== */
@media (max-width: 800px) {
  .container { padding: 0 6px; }
  .content-wrapper { gap:13px; }
  .contact-info > div { min-width: 120px; padding:8px 8px; }
  .footer-main,
  .testimonial-cards,
  .feature-grid,
  .machine-category-list,
  .step-list {
    gap:10px;
  }
}

@media (max-width: 520px) {
  h1 { font-size:1.4rem; }
  h2 { font-size:1.13rem; }
  .hero { padding: 34px 0 20px 0; }
  .section { padding: 17px 2px; }
  .contact-info > div { padding:6px 4px; min-width:0; }
  .testimonial-card { padding:10px; }
  .features .feature-grid li, .machine-category-list li { padding:12px 5px; max-width:100%; }
  .footer-contact { font-size:0.91rem; }
}

/* =========== SCROLLBAR (MONOCHROME TOUCH) =========== */
::-webkit-scrollbar { width: 9px; background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

/* =========== FOCUS ACCESSIBILITY =========== */
:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* =============================================
   END OF STYLE.CSS FOR NOLEGGIO EDILBLAZE
   ============================================= */
