/* --- 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;
}
html {
  line-height: 1.15;
  -webkit-tap-highlight-color: transparent;
}
body {
  line-height: 1.5;
  background: #181f24;
  color: #f6f9f8;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
}
*:focus {
  outline: 2px solid #329d9c;
  outline-offset: 0;
}

/* --- FONT LOADING: Montserrat & Roboto --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #181f24;
  color: #f6f9f8;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.015em;
  color: #f6f9f8;
}
h1 { font-size: 2.25rem; font-weight: 900; margin-bottom: 16px; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 14px; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; font-weight: 500; }

p, li, span, strong, em {
  font-size: 1rem;
  color: #f6f9f8;
}
strong {
  font-weight: 700;
  color: #329d9c;
}

/* --- COMMON CONTAINER/LAYOUT --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* --- HEADER/NAV --- */
header {
  background: #1b262c;
  box-shadow: 0 2px 16px 0 rgba(32, 80, 114, 0.14);
  position: relative;
  z-index: 100;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}
.main-nav a img {
  height: 46px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0 28px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f6f9f8;
  font-weight: 500;
  font-size: 1.08rem;
  position: relative;
  transition: color .17s;
}
.main-nav li a:hover, .main-nav li a:focus,
.footer-nav li a:hover {
  color: #59e0e0;
}
.btn-primary {
  --neon: #59e0e0;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #329d9c;
  color: #181f24;
  border-radius: 40px;
  padding: 11px 30px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  box-shadow: 0 0 0 0 transparent;
  border: none;
  cursor: pointer;
  border: 2px solid #329d9c;
  transition: all .15s cubic-bezier(0.7,0.3,0.3,1);
  margin-left: 2px;
  box-shadow: 0 4px 24px 0 rgba(89,224,224,0.12);
  position: relative;
  z-index: 2;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #329d9c 80%, #59e0e0 100%);
  color: #181f24;
  border-color: #59e0e0;
  box-shadow: 0 0 15px 2px #59e0e0;
}
.btn-secondary {
  color: #329d9c;
  background: #f6f9f8;
  border-radius: 40px;
  padding: 10px 26px;
  border: 2px solid #329d9c;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 16px;
  transition: all .18s cubic-bezier(0.64,0,0.34,1);
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 10px 0 rgba(32, 80, 114, 0.12);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #329d9c;
  color: #f6f9f8;
  border-color: #59e0e0;
  box-shadow: 0 0 13px 0 #329d9c;
}

/* Hamburger for Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #59e0e0;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 22px;
  border-radius: 6px;
  padding: 2px 10px;
  transition: background .2s;
  z-index: 105;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(89, 224, 224, 0.1);
}

/* --- MOBILE MENU STYLES --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 2000;
  transform: translateX(-100%);
  background: #181f24ee;
  backdrop-filter: blur(6px);
  transition: transform .32s cubic-bezier(.92,.01,.52,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 28px;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #59e0e0;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 0 25px 24px 0;
  padding: 2px 10px;
  border-radius: 6px;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(89, 224, 224, 0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
  align-items: flex-start;
  padding-left: 45px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #59e0e0;
  font-size: 1.24rem;
  font-weight: 700;
  padding: 7px 0;
  border-radius: 5px;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #205072;
  color: #f6f9f8;
}

/* --- HERO SECTION (Landing) --- */
.hero {
  width: 100%;
  padding: 0;
  margin-bottom: 60px;
  background-color: #205072;
  background-image: linear-gradient(117deg, #205072 85%, #329d9c 100%);
  box-shadow: 0 6px 50px 0 rgba(32, 82, 115, 0.23);
}
.hero .container {
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.9rem;
  color: #f6f9f8;
  text-shadow: 0 3px 15px #205072d0;
  font-weight: 900;
}
.hero p {
  font-size: 1.25rem;
  color: #f6f9f8;
  margin-bottom: 14px;
  max-width: 670px;
}
.hero .btn-primary {
  margin-top: 16px;
}

/* --- SECTION: GENERAL SPACING/LAYOUT --- */
section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 18px;
}

/* --- FEATURES SECTION --- */
.features {
  background: #1b262c;
}
.features .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #205072;
  border-radius: 18px;
  box-shadow: 0 3px 22px 0 rgba(89, 224, 224, 0.09);
  padding: 30px 20px 26px 20px;
  flex: 1 1 212px;
  min-width: 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform .18s cubic-bezier(0.7,0,0.6,1), box-shadow .18s;
  border: 2px solid transparent;
}
.feature-grid li img {
  width: 48px; height: 48px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 8px #59e0e080);
}
.feature-grid li h3 {
  color: #59e0e0;
  font-weight: 700;
}
.feature-grid li p {
  margin: 0;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 5px 23px 2px #329d9c50, 0 0 0 2px #59e0e0;
  border-color: #59e0e0;
}

/* --- SERVICE OVERVIEW / GRID --- */
.services-overview {
  background: #205072;
}
.services-overview .btn-secondary {
  margin-top: 12px;
}
.services-overview .service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0;
}
.services-overview .service-list li {
  font-size: 1.05rem;
  color: #f6f9f8;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 2px;
  border-left: 3px solid #329d9c;
  background: rgba(89,224,224,0.045);
  border-radius: 4px;
  padding: 11px 16px 11px 12px;
  transition: background .15s;
}
.services-overview .service-list li span {
  font-weight: 700;
  color: #59e0e0;
  margin-left: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- CTA BANNER --- */
.cta-banner {
  margin-bottom: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(90deg, #205072 0%, #329d9c 70%, #59e0e0 100%);
  border-radius: 22px;
  box-shadow: 0 5px 32px 0 #20507218;
  color: #181f24;
}
.cta-banner h2 {
  color: #f6f9f8;
  font-weight: 800;
  text-shadow: 0 2px 8px #20507290;
  margin-bottom: 10px;
}
.cta-banner p {
  color: #f6f9f8;
}
.cta-banner .btn-primary {
  margin-top: 10px;
}

/* --- TESTIMONIAL SLIDER --- */
.testimonial-slider {
  background: #181f24;
}
.testimonial-slider .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 22px 28px;
  background: #f6f9f8;
  color: #205072;
  border-radius: 18px;
  box-shadow: 0 5px 25px 0 #329d9cb0;
  min-width: 320px;
  flex: 1 1 320px;
  max-width: 380px;
  margin-bottom: 20px;
  border: 2px solid #329d9c18;
  position: relative;
  transition: box-shadow .16s, transform .16s;
}
.testimonial-card p {
  color: #205072;
  font-size: 1.09rem;
}
.testimonial-card .testimonial-name {
  color: #329d9c;
  font-size: 1.04rem;
  font-weight: 600;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Montserrat', Arial, sans-serif;
  color: #329d9c;
  font-size: 3.3rem;
  position: absolute;
  left: 15px; top: 4px;
  opacity: 0.13;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: 0 8px 44px 0 #329d9ccc, 0 0 0 2px #59e0e0;
  transform: translateY(-5px) scale(1.03);
}

/* --- ABOUT/TEAM/WHY US (chi-siamo.html) --- */
.about, .team, .why-us {
  background: #1b262c;
  border-radius: 15px;
}
.about ul, .team ul, .why-us ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  margin-left: 20px;
}
.about ul li, .team ul li, .why-us ul li {
  list-style-type: disc;
  font-size: 1rem;
  color: #f6f9f8;
}

/* --- SERVICES GRID (servizi.html) --- */
.hero-services {
  background: linear-gradient(90deg, #205072 85%, #329d9c 100%);
  box-shadow: 0 6px 44px 0 rgba(32, 82, 115, 0.17);
  margin-bottom: 60px;
  border-radius: 18px 18px 0 0;
}
.services-grid {
  background: #205072;
}
.services-grid .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 13px;
}
.service-card {
  background: #1b262c;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 #329d9c42;
  padding: 24px 18px 20px 18px;
  flex: 1 1 203px;
  min-width: 180px;
  max-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid #205072;
  transition: border .14s, box-shadow .13s, transform .13s;
}
.service-card h3 {
  color: #59e0e0;
}
.service-card span {
  font-weight: 700;
  color: #59e0e0;
  margin-left: 0;
}
.service-card:hover {
  box-shadow: 0 4px 24px 1px #329d9c99;
  border-color: #59e0e0;
  transform: translateY(-4px) scale(1.04);
}

/* --- PROCESS STEPS SECTION --- */
.process-steps {
  background: #1b262c;
}
.process-steps .steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}
.process-steps .steps-grid li {
  background: #205072;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 #329d9c26;
  padding: 20px 14px 18px 14px;
  flex: 1 1 176px;
  min-width: 146px;
  max-width: 205px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  transition: border .12s, box-shadow .13s;
}
.process-steps .steps-grid li img {
  width: 36px; height: 36px;
  margin-bottom: 3px;
  filter: drop-shadow(0 0 6px #59e0e080);
}
.process-steps .steps-grid li h3 {
  color: #59e0e0;
  font-size: 1.05rem;
}
.process-steps .steps-grid li:hover {
  box-shadow: 0 4px 22px 0 #59e0e070;
  border-color: #59e0e0;
}

/* --- CATALOGO (catalogo.html) --- */
.catalog-intro, .catalog-listing, .how-to-order {
  background: #1b262c;
  border-radius: 16px;
}
.catalog-categories, .catalog-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 20px;
  margin-top: 8px;
}
.catalog-categories li, .catalog-items li {
  list-style-type: disc;
  color: #59e0e0;
  font-weight: 500;
  font-size: 1rem;
}
.filter-options {
  margin: 18px 0 10px 0;
  color: #59e0e0;
}
.filter-options span {
  font-size: 1.04rem;
  color: #f6f9f8;
  font-weight: 500;
}
.order-steps {
  margin-left: 22px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #59e0e0;
}
.info-banner {
  margin-top: 22px;
  padding: 13px 20px;
  background: #205072;
  border-radius: 9px;
  color: #f6f9f8;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 #329d9c18;
}

/* --- FAQ --- */
.faq-list {
  background: #1b262c;
  border-radius: 17px;
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}
.faq-items li h2 {
  font-size: 1.22rem;
  color: #59e0e0;
  margin-bottom: 7px;
}
.faq-items li p {
  max-width: 620px;
  color: #f6f9f8;
  font-size: 1rem;
}

/* --- CONTACT PAGE --- */
.contact-hero, .contact-banner {
  background: #205072;
  border-radius: 17px;
}
.contact-info {
  background: #1b262c;
  border-radius: 12px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-left: 20px;
}
.map-static p {
  color: #59e0e0;
  margin-top: 13px;
  max-width: 420px;
}
.contact-info-brief p {
  color: #205072;
}
.contact-banner .btn-primary {
  margin-top: 12px;
}

/***** THANK YOU PAGE *****/
.thank-you-message {
  background: #205072;
  border-radius: 16px;
  box-shadow: 0 3px 14px #329d9c80;
  color: #f6f9f8;
  margin-bottom: 60px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.thank-you-message h1 {
  color: #f6f9f8;
  margin-bottom: 18px;
}
.thank-you-message .btn-primary {
  margin-top: 28px;
}

/* --- LEGAL PAGES SECTIONS --- */
.legal-section {
  background: #1b262c;
  border-radius: 15px;
  color: #f6f9f8;
  box-shadow: 0 2px 14px 0 #329d9c18;
  margin-bottom: 70px;
  padding-top: 42px;
  padding-bottom: 42px;
}
.legal-section a {
  color: #59e0e0;
  text-decoration: underline;
  transition: color .13s;
}
.legal-section a:hover {
  color: #329d9c;
}

/* --- FOOTER --- */
footer {
  background: #1b262c;
  color: #f6f9f8;
  padding-top: 14px;
}
.footer-main {
  border-top: 2px solid #329d9c26;
  padding-top: 24px;
  padding-bottom: 20px;
  background: #1b262c;
  box-shadow: 0 2px 32px 0 #329d9c0d;
}
.footer-main .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand img {
  width: 120px; height: auto;
}
.brand-tagline {
  color: #329d9c;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 8px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav li a {
  color: #f6f9f8;
  font-size: 1.01rem;
  letter-spacing: 0.01em;
  transition: color .13s;
}
.footer-contact p, .footer-contact a {
  color: #59e0e0;
  font-size: 1rem;
  margin-bottom: 3px;
}
.footer-legal {
  color: #f6f9f8;
  padding-top: 13px;
  font-size: 0.96rem;
  text-align: left;
  border-top: 1px solid #20507244;
}
.footer-legal a {
  color: #59e0e0;
  margin-right: 5px;
  text-decoration: underline;
  transition: color .13s;
}
.footer-legal a:hover {
  color: #329d9c;
}

/* --- SPACING/ALIGNMENT PATTERNS PER BRIEF --- */
.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;
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #205072;
  color: #f6f9f8;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 16px 24px 28px;
  box-shadow: 0 -3px 30px 0 #329d9c40;
  transition: transform 0.32s cubic-bezier(.79,.14,.33,1), opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(130%);
  pointer-events: none;
}
.cookie-consent-banner-message {
  flex: 1 1 70%;
  font-size: 1rem;
  font-weight: 400;
  color: #f6f9f8;
}
.cookie-consent-actions {
  display: flex;
  gap: 17px;
  align-items: center;
}
.btn-cookie {
  padding: 7px 24px;
  border-radius: 40px;
  background: #f6f9f8;
  color: #205072;
  border: 2px solid #59e0e0;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  margin-right: 7px;
  transition: background .14s, color .14s, box-shadow .17s;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #59e0e0;
  color: #181f24;
  box-shadow: 0 0 10px 0 #59e0e0;
}
.btn-cookie-settings {
  background: transparent;
  color: #59e0e0;
  border-color: #59e0e0;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: #59e0e0;
  color: #205072;
}

/* --- Cookie Preferences Modal --- */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  top: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 31, 36, 0.88);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .28s, visibility .28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal-content {
  background: #1b262c;
  border-radius: 18px;
  padding: 30px 28px 24px 28px;
  min-width: 340px;
  max-width: 98vw;
  color: #f6f9f8;
  box-shadow: 0 8px 46px 0 #329d9ccc;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: fade-in .28s cubic-bezier(.92,.01,.52,1);
}
.cookie-modal-close {
  position: absolute;
  top: 8px; right: 14px;
  background: none;
  border: none;
  color: #59e0e0;
  font-size: 1.9rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 6px;
  transition: background .13s;
}
.cookie-modal-close:hover {
  background: #329d9c22;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid #329d9c18;
}
.cookie-cat-title {
  flex: 1 1 60%;
  color: #59e0e0;
  font-weight: 700;
}
.cookie-cat-desc {
  font-size: 0.96rem;
  color: #f6f9f8;
}
.cookie-switch {
  appearance: none;
  width: 40px;
  height: 24px;
  background: #205072;
  border-radius: 19px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 2px solid #329d9c;
  transition: background .15s, border-color .15s;
}
.cookie-switch:checked {
  background: #59e0e0;
  border-color: #59e0e0;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f6f9f8;
  transition: transform .15s, background .14s;
}
.cookie-switch:checked:before {
  transform: translateX(16px);
  background: #205072;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}
.cookie-cat-disabled,
.cookie-cat-disabled .cookie-switch {
  opacity: 0.44;
  pointer-events: none;
  filter: grayscale(1);
}

/* --- Animate modal/fade-ins --- */
@keyframes fade-in {
  0% { opacity: 0; transform: scale(.93); }
  100% { opacity: 1; transform: scale(1); }
}

/* --- UTILITIES --- */
.hide { display: none !important; }

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1020px) {
  .main-nav ul {
    gap: 18px;
    margin: 0 8px;
  }
  .footer-main .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-main .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  /* --- Main nav adjusts for mobile --- */
  .main-nav ul, .main-nav .btn-primary {
    display: none;
  }
  .main-nav {
    padding: 12px 0 8px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-main .content-wrapper {
    flex-direction: column;
    gap: 17px;
  }
  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 7px;
  }
  .section, section {
    padding: 24px 6px;
    margin-bottom: 35px;
  }
  .cta-banner {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid, .services-grid .service-cards, .process-steps .steps-grid, .testimonial-slider .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    padding: 20px 13px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.35rem; }
  .hero h1 { font-size: 2rem; }
  .hero p, .cta-banner p, .testimonial-card p {
    font-size: 1rem;
  }
  .about ul, .team ul, .why-us ul, .catalog-categories, .catalog-items {
    margin-left: 12px;
  }
  .order-steps {
    margin-left: 8px;
  }
  .footer-brand img { width: 87px; }
  .testimonial-card {
    padding: 18px 8px;
  }
}
