/* =====================================================================
   Scandinavian Clean CSS for FarbZauber Salzburg
   Responsive, Accessible, Flexbox-only, Brand-Faithful
   ===================================================================== */

/* ========================= CSS RESET ============================= */
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, 
main, 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; }
*, *:before, *:after { box-sizing: inherit; }

body {
  background: #F4F7FA;
  color: #253858;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

body, #root {
  width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #253858;
  text-decoration: none;
  transition: color 0.24s;
}
a:hover, a:focus {
  color: #E87722;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}

/* ===================== COLORS & TYPOGRAPHY ========================== */
:root {
  --clr-primary: #253858;
  --clr-bg: #F4F7FA;
  --clr-accent: #E87722;
  --clr-bg-alt: #fff;
  --clr-muted: #DAE1E7;
  --clr-shadow: rgba(37,56,88,0.05);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--clr-primary);
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, .paragraph {
  color: var(--clr-primary);
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}
.subheadline {
  font-size: 1.125rem;
  font-family: var(--font-body);
  color: #4b566a;
  margin-bottom: 26px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.text-section,
.text-image-section,
.card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-section ul,
.text-section ol {
  margin-left: 18px;
  margin-bottom: 18px;
}

.text-section h2, .text-section h3 { margin-top: 20px; }

/* =================== HEADER & NAVIGATION =================== */
header {
  background: var(--clr-bg-alt);
  box-shadow: 0 2px 6px var(--clr-shadow);
  position: relative;
  z-index: 40;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header a img {
  height: 52px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-primary);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width 0.2s;
  border-radius: 1px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--clr-accent);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 12px var(--clr-shadow);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  outline: none;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #253858;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 18px var(--clr-shadow);
}

/* =============== MOBILE NAVIGATION ================ */
.mobile-menu-toggle {
  display: none;
  background: var(--clr-accent);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  margin-left: 12px;
  cursor: pointer;
  z-index: 102;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--clr-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(244,247,250,0.96);
  z-index: 101;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transition: transform 0.3s cubic-bezier(.71,.16,.34,1.34);
  box-shadow: -4px 0 32px var(--clr-shadow);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: transparent;
  color: var(--clr-primary);
  font-size: 2.2rem;
  padding: 25px 30px 4px 20px;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-right: 5px;
  transition: color 0.2s;
  z-index: 103;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--clr-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 15px;
  padding: 10px 35px 20px 35px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--clr-primary);
  padding: 14px 0;
  width: 100%;
  margin-bottom: 0;
  border-radius: 10px;
  background: none;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-muted);
  color: var(--clr-accent);
}

/* ============= HERO SECTION ============= */
.hero-section {
  background: linear-gradient(110deg, #ffffff 60%, #f4f7fa 100%);
  padding: 60px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-section h1 {
  font-size: 2.7rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.hero-section .btn-primary {
  margin-left: 0;
  margin-top: 22px;
}

/* =============== FEATURES SECTION =============== */
.features-section .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 16px;
}
.feature-item {
  background: var(--clr-bg-alt);
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--clr-shadow);
  padding: 28px 24px 18px 24px;
  min-width: 238px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 0 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.19s;
  border: 1px solid var(--clr-muted);
}
.feature-item img {
  width: 46px;
  height: 46px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px var(--clr-shadow);
  transform: translateY(-4px) scale(1.027);
  border-color: var(--clr-accent);
}
.feature-item h3 {
  margin-bottom: 2px;
  font-size: 1.18rem;
  color: var(--clr-primary);
  font-family: var(--font-display);
}

/* =============== ABOUT & PREVIEW SECTION =============== */
.about-preview-section, .about-section, .usp-section {
  background: var(--clr-bg-alt);
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--clr-shadow);
}
.text-section ul {
  margin-bottom: 12px;
}
.text-section li {
  color: #253858;
  font-size: 1rem;
}
.text-section strong {
  color: var(--clr-accent);
  font-weight: 700;
}

/* ================ TESTIMONIALS =============== */
.testimonials-section, .references-testimonials-section {
  background: #f4f7fa;
  background: linear-gradient(90deg, #f4f7fa 75%, #ffffff 100%);
  padding-bottom: 48px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  color: #253858;
  border-radius: 14px;
  margin-bottom: 20px;
  margin-top: 8px;
  margin-right: 0;
  box-shadow: 0 2px 14px var(--clr-shadow);
  border: 1px solid var(--clr-muted);
  max-width: 520px;
  transition: box-shadow 0.19s, border-color 0.19s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 5px 24px rgba(37,56,88,0.09);
  border-color: var(--clr-accent);
}
.testimonial-rating {
  color: var(--clr-accent);
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.testimonial-card p {
  color: #222;
  margin-bottom: 6px;
  font-size: 1.06rem;
  line-height: 1.45;
}
.testimonial-card span {
  color: #6b768d;
  font-size: 1rem;
}

/* ============== CTA SECTIONS ============== */
.cta-section, .about-cta-section, .contact-cta-section,
.references-cta-section, .prices-cta-section {
  background: #fffefb;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--clr-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: left;
}
.cta-section h2, .about-cta-section h2,
.contact-cta-section h2, .references-cta-section h2, .prices-cta-section h2 {
  margin-bottom: 10px;
}

/* ============== FOOTER ============= */
footer {
  background: var(--clr-primary);
  color: #fff;
  padding: 32px 0;
  width: 100vw;
  min-width: 100vw;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
footer a img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  opacity: 0.82;
  transition: opacity 0.2s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--clr-accent);
  opacity: 1;
}
.footer-contact {
  color: #fff;
  font-size: 0.99rem;
  font-family: var(--font-body);
  opacity: 0.82;
  line-height: 1.6;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.96;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--clr-accent);
}

/* ============== CARD & CONTENT LAYOUTS (FLEX ONLY) ============ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px var(--clr-shadow);
  flex: 1 1 260px;
  padding: 24px 18px;
  min-width: 240px;
}
.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;
}

.materials-quality-list {
  margin-top: 18px;
  margin-bottom: 10px;
}

/* ================ SERVICES PAGE =============== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}
.service-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--clr-muted);
  padding: 24px 20px 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px var(--clr-shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.19s, border-color 0.17s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 32px var(--clr-shadow);
  border-color: var(--clr-accent);
}
.service-item h2 {
  font-size: 1.23rem;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 7px;
  color: var(--clr-primary);
}
.service-price {
  color: var(--clr-accent);
  font-size: 1.07rem;
  font-weight: 500;
  margin-left: 12px;
}

/* =========== PRICING TABLES & FAQ =========== */
.pricing-section .pricing-table {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 14px var(--clr-shadow);
  border: 1px solid var(--clr-muted);
  width: 100%;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 16px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: #253858;
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-muted);
}
.pricing-row:last-child {
  border: none;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--clr-muted);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--clr-shadow);
  padding: 18px 16px 12px 16px;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.faq-item h3 {
  margin-bottom: 5px;
  font-size: 1.04rem;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 6px 18px var(--clr-shadow);
  border-color: var(--clr-accent);
}

/* =========== CONTACT PAGE BLOCKS ============ */
.contact-details-block {
  background: #fff;
  border-radius: 13px;
  padding: 24px 24px 12px 28px;
  box-shadow: 0 2px 14px var(--clr-shadow);
  border: 1px solid var(--clr-muted);
  margin-bottom: 22px;
  font-size: 1.05rem;
  font-family: var(--font-body);
}
.contact-info-tip {
  padding: 12px 11px 12px 18px;
  color: #48609b;
  background: #f6f5f3;
  border-radius: 9px;
  border: 1px solid #e5e8ee;
  font-size: 1rem;
  margin-bottom: 10px;
}
.google-map-section {
  margin-bottom: 60px;
}
.map-placeholder {
  background: #E0E7EF;
  color: #364366;
  min-height: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 15px;
  font-family: var(--font-body);
  font-size: 1.03rem;
  margin-bottom: 4px;
}

/* ========== THANK YOU SECTION ========== */
.thank-you-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--clr-shadow);
  padding: 48px 20px;
  margin: 42px 0 60px 0;
}
.thank-you-section h1 {
  margin-bottom: 18px;
}
.thank-you-message {
  font-size: 1.18rem;
  margin-bottom: 24px;
  color: var(--clr-accent);
}
.next-steps ul {
  margin-top: 0;
}
.next-steps li {
  font-size: 1rem;
  color: #253858;
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 20px var(--clr-shadow);
  padding: 24px 5vw 24px 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 5000;
  font-size: 1rem;
  border-radius: 16px 16px 0 0;
  border-top: 1px solid var(--clr-muted);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.37s;
  transform: translateY(40px);
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-text {
  font-family: var(--font-body);
  color: var(--clr-primary);
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 28px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-right: 8px;
  box-shadow: 0 1px 8px var(--clr-shadow);
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.15s;
  outline: none;
}
.cookie-btn.accept {
  background: var(--clr-accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--clr-primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #edeef0;
  color: var(--clr-primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #d8dbe1;
  color: var(--clr-accent);
}
.cookie-btn.settings {
  background: none;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
  box-shadow: none;
  font-weight: 700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--clr-accent);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 320px;
  max-width: 96vw;
  width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 30px rgba(37, 56, 88, .13);
  z-index: 6000;
  transform: translate(-50%,-54%) scale(0.93);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.33s;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-48%) scale(1);
}
.cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.23rem;
  font-weight: 700;
  color: var(--clr-primary);
  padding-bottom: 8px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--clr-primary);
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: 14px;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--clr-accent);
}
.cookie-modal .modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #253858;
}
.toggle-switch {
  position: relative;
  width: 43px;
  height: 24px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  border-radius: 13px;
  background: #d5dbe5;
  transition: background .22s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--clr-accent);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left .22s;
  box-shadow: 0 1px 5px rgba(37,56,88,.07);
}
.toggle-switch input:checked + .toggle-slider:before {
  left: 21px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}

/* ========== SECTION REUSE STYLES ========== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ================ RESPONSIVE DESIGN (MOBILE-FIRST) ================== */
@media (max-width: 1100px) {
  .features-section .features-grid, .card-container {
    justify-content: flex-start;
  }
  .main-nav {
    gap: 18px;
  }
  .footer-container {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .header-container,.footer-container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    margin-top: 10px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding-bottom: 8px;
  }
  .features-section .features-grid, .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .about-preview-section,.about-section,.cta-section,
  .about-cta-section, .contact-cta-section, .references-cta-section,
  .prices-cta-section {
    padding: 32px 9px;
    margin-bottom: 40px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 4px;
  }
  h1, .h1 {
    font-size: 1.55rem;
  }
  h2, .h2 {
    font-size: 1.22rem;
  }
  .btn-primary, .cookie-btn {
    font-size: 0.98rem;
    padding: 10px 16px;
  }
  .card, .testimonial-card, .service-item, .contact-details-block {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* =============== UTILITY STYLES =============== */
.hide-mobile {
  display: block;
}
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

.hide-desktop {
  display: none;
}
@media (max-width: 768px) {
  .hide-desktop { display: block !important; }
}

/* ================= ACCESSIBILITY FOCUS =================== */
a, .btn-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}
a:focus-visible, .btn-primary:focus-visible, .cookie-btn:focus-visible,
.mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
}

/* ===================== ANIMATIONS ====================== */
.btn-primary, .cookie-btn {
  transition: background 0.17s, color 0.18s, box-shadow 0.14s, transform 0.11s;
}
.feature-item, .card, .testimonial-card, .faq-item, .service-item {
  transition: box-shadow 0.21s, border-color 0.14s, transform 0.13s;
}

/* ================ SHADOW EFFECTS ================ */
.card, .testimonial-card, .feature-item, .service-item, .faq-item, .pricing-section .pricing-table, .contact-details-block {
  box-shadow: 0 2px 14px var(--clr-shadow);
}

/* =================== PRINT STYLES =================== */
@media print {
  header, .mobile-menu, footer, .cookie-consent-banner, .cookie-modal {
    display: none !important;
  }
  .container, .content-wrapper, .section {
    max-width: 100% !important;
    padding: 0 !important;
  }
}
