/* === 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
  -webkit-tap-highlight-color: rgba(25,58,90,0.08);
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
a {
  color: #193A5A;
  text-decoration: none;
  transition: color 0.16s cubic-bezier(.6,.1,.52,1.1);
}
a:hover, a:focus {
  color: #111;
  outline: none;
}
ul, ol {
  margin-left: 1.4em;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #0f1113;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 1.7rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4 { font-size: 1.03rem; margin-bottom: 8px; font-weight: 600; }
p, li {
  font-size: 1rem;
  color: #232323;
}
.subtitle {
  font-size: 1.1rem;
  color: #4a4a4a;
  font-weight: 400;
  margin-bottom: 18px;
}
strong { font-weight: 700; }

@media (max-width: 968px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
}


/* === LAYOUT WRAPPERS === */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

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

@media (max-width: 768px) {
  .section { padding: 32px 8px; margin-bottom: 36px; }
  .content-wrapper { padding: 0; }
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
  box-shadow: 0 2px 10px rgba(0,0,0,.03), 0 1px 1px rgba(0,0,0,.01);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  gap: 36px;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 6px;
  letter-spacing: 0.01em;
  transition: color 0.18s cubic-bezier(.5,0,.45,1.1);
  position: relative;
  border-radius: 4px;
}
nav a.btn-primary {
  background: #0f1113;
  color: #fff;
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px 0 rgba(25,25,25,0.04);
  transition: background 0.17s, color 0.17s;
}
nav a.btn-primary:hover,
nav a.btn-primary:focus {
  background: #222;
  color: #fff;
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #0f1113;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 104;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #0f1113;
  background: #ededed;
}
@media (max-width: 1000px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #111;
  align-self: flex-end;
  margin: 18px 22px 2px 0;
  padding: 4px 7px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:focus {
  background: #dcdcdc;
  outline: 2px solid #193A5A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  padding: 24px 28px;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f1113;
  display: block;
  padding: 12px 8px 12px 4px;
  border-radius: 6px;
  width: 100%;
  transition: background .2s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232323;
  color: #fff;
}

@media (max-width: 1000px) {
  .mobile-menu {
    display: flex;
  }
}


/* === BUTTONS === */
.btn-primary, .btn-primary:visited {
  appearance: none;
  background: #0f1113;
  color: #fff!important;
  border: none;
  padding: 11px 28px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,.06);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.19s, transform 0.13s;
  outline: none;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-top: 18px;
  margin-bottom: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #193A5A;
  color: #fff !important;
  box-shadow: 0 8px 40px 0 rgba(25, 58, 90, 0.11);
  transform: translateY(-2px) scale(1.02);
}

/* === HERO SECTION === */
.hero {
  background: #fff;
  padding: 62px 0 54px 0;
  border-bottom: 1px solid #eee;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 596px) {
  .hero { padding-top: 32px; padding-bottom: 28px; }
}

/* === FEATURES & CARDS === */
.features {
  background: #f8f8f8;
  margin-bottom: 60px;
  padding: 48px 8px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.feature-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 16px 0 rgba(35,35,35,.06);
  padding: 28px 24px 23px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1 232px;
  max-width: 264px;
  filter: grayscale(0.2);
  align-items: flex-start;
  margin-bottom: 20px;
  min-width: 200px;
  transition: box-shadow .18s, filter 0.18s, transform 0.17s;
  border: 1px solid #ececec;
}
.feature-card img {
  height: 38px; width: 38px; margin-bottom: 14px;
  opacity: .80;
}
.feature-card h3 {
  color: #111;
  font-size: 1.08rem;
  font-family: inherit;
  margin-bottom: 7px;
}
.feature-card p {
  color: #232323;
  font-size: 1rem;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 45px 0 rgba(35,35,35,.13);
  filter: grayscale(0.09) brightness(1.027);
  transform: translateY(-2px) scale(1.025);
  z-index: 2;
}

@media (max-width: 900px) {
  .feature-grid { gap: 18px; }
  .feature-card { min-width: 160px; padding: 18px 13px 16px 13px; }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-card {
    width: 100%;
    max-width: none;
    align-items: flex-start;
  }
}

/* === SERVICE CARDS === */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  justify-content: flex-start;
}
.service-card {
  background: #f8f8f8;
  border-radius: 13px;
  box-shadow: 0 4px 38px 0 rgba(0,0,0,0.04);
  padding: 24px 20px 19px 20px;
  min-width: 200px;
  max-width: 245px;
  min-height: 175px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 1px solid #ececec;
  transition: box-shadow .15s, background .13s, transform 0.22s;
}
.service-card img {
  height: 34px; width: 34px; margin-bottom: 14px;
}
.service-card h3 { font-size: 1.1rem; }
.service-card p { font-size: 0.98rem; color: #232323; }
.service-card.highlight {
  background: #fff;
  border: 1.5px solid #0f1113;
  box-shadow: 0 4px 46px 0 rgba(25,58,90,.11);
}
.service-card:hover, .service-card:focus-within {
  background: #fff;
  box-shadow: 0px 8px 54px 0 rgba(25,58,90,.125);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .service-card { min-width: 0; width: 100%; }
}

/* === HOW IT WORKS / PROCESS SECTION === */
.process-steps, .process-steps-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 24px;
  align-items: stretch;
}
.step {
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.045);
  padding: 28px 19px 22px 18px;
  flex: 1 1 200px;
  min-width: 170px;
  max-width: 236px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  transition: box-shadow .16s, background .15s, transform .16s;
}
.step img {
  height: 34px; width: 34px; margin-bottom: 13px;
}
.step h3 { font-size: 1rem; margin-bottom: 7px; }
.step p { font-size: 0.98rem; color: #242424; }
.step:hover, .step:focus-within {
  background: #fff;
  box-shadow: 0 5px 20px 0 rgba(25,58,90,0.08);
  transform: translateY(-2px) scale(1.025);
  z-index: 2;
}
@media (max-width: 800px) {
  .process-steps, .process-steps-detailed { flex-direction: column; gap: 18px; }
  .step { width: 100%; max-width: none; }
}
.process-steps-detailed ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.09rem;
  color: #232323;
  margin-bottom: 25px;
  margin-left: 1.1em;
  padding-left: 0.5em;
  line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #fff;
  padding: 56px 0 38px 0;
}
.testimonials .content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
  align-items: stretch;
}
.testimonial-card {
  flex: 1 1 242px;
  background: #fafbfb;
  border-radius: 10px;
  box-shadow: 0 5px 28px 0 rgba(30,30,30,0.08);
  padding: 22px 21px 19px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  border: 1px solid #e8e8e8;
  min-width: 215px;
  transition: box-shadow .15s, background .17s, transform 0.19s;
}
.testimonial-card p {
  color: #1a1a1a;
  font-size: 1.01rem;
  font-style: italic;
}
.testimonial-card strong {
  font-weight: 700;
  color: #222;
  font-style: normal;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #444;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #fff;
  box-shadow: 0 8px 46px 0 rgba(25,58,90,0.13);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}

/* === CTA SECTION === */
.cta {
  background: #0f1113;
  color: #fff;
  text-align: center;
  padding: 64px 8px 56px 8px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 20px;
}
.cta .btn-primary {
  background: #fff;
  color: #0f1113!important;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #f8f8f8;
  color: #111!important;
}


/* === FOOTER === */
footer {
  background: #1a1b1f;
  color: #f8f8f8;
  padding: 42px 0 34px 0;
  font-size: 1rem;
  border-top: 1.5px solid #222;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #eee;
}
.footer-branding img {
  height: 38px; width: auto;
  filter: grayscale(1) brightness(2);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #f3f3f3;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .15s;
  padding: 3px;
  border-radius: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #222;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #d0d3d4;
  font-size: 0.99rem;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* === PAGES & CONTENT BLOCKS === */
.text-section {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul, .text-section ol {
  margin-left: 1.3em;
  color: #232323;
  margin-bottom: 16px;
}
.text-section li {
  padding-bottom: 5px;
  font-size: 1rem;
}
.google-map, .office-hours-block {
  border-radius: 8px;
  background: #fafbfb;
  padding: 19px 15px;
  margin-top: 10px;
  box-shadow: 0 2px 18px 0 rgba(29,29,29,0.08);
  border: 1px solid #ececec;
}
.office-hours-block ul {
  margin-bottom: 0;
}

/* === TABLES (CENNIK) === */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  margin-top: 24px;
  margin-bottom: 26px;
  border-radius: 13px;
  box-shadow: 0 5px 37px 0 rgba(0,0,0,.045);
  overflow: hidden;
  font-family: 'Open Sans', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #1a1b1f;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.001em;
}
.pricing-table tr {
  border-bottom: 1px solid #ececec;
}
.pricing-table tr:last-child { border-bottom: none; }
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { padding: 9px 7px; font-size: 0.97rem; }
}

.pricing-highlights li {
  padding-left: 0;
  margin-left: 0.87em;
  color: #232323;
  font-size: 0.99rem;
  list-style-type: disc;
}

/* === FAQ STYLES === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #f8f8f8;
  border-radius: 7px;
  padding: 18px 15px 15px 17px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  border: 1px solid #ededed;
  transition: background .12s, box-shadow .14s;
}
.faq-item h3 {
  font-size: 1.05rem; font-weight: 600; margin-bottom: 7px; color: #193A5A;
}
.faq-item p {
  font-size: 0.99rem; color: #222;
}
.faq-item a { color: #1F8357; text-decoration: underline; }
.faq-item:hover, .faq-item:focus-within {
  background: #fff;
  box-shadow: 0 4px 30px 0 rgba(25,58,90,0.07);
}

/* === TIPS/ARTICLES === */
.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.articles-list article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,.06);
  padding: 19px 19px 14px 21px;
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 330px;
  margin-bottom: 20px;
  border: 1px solid #ececec;
}
@media (max-width: 850px) {
  .articles-list { flex-direction: column; gap: 14px; }
}
.quick-tips ul {
  color: #232323;
  margin-left: 1.1em;
  margin-bottom: 0;
}
.quick-tips li {
  font-size: 1rem;
}

/* === CONFIRMATION PAGE === */
.confirmation .btn-primary {
  margin-top: 24px;
  margin-bottom: 0;
}
.confirmation .text-section {
  margin-bottom: 16px;
}

/* === MONOCHROME SOPHISTICATED DECORATIVE ACCENTS === */
hr {
  border: none;
  border-top: 1px solid #e8e8e7;
  margin: 24px 0;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #18191b;
  color: #fafafa;
  z-index: 300;
  box-shadow: 0 0 40px rgba(30,30,30,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 20px 18px 20px;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  justify-content: space-between;
  animation: slide-up-banner 0.92s cubic-bezier(.28,.84,.34,1) 0s;
}
@keyframes slide-up-banner {
  from { transform: translateY(100%); }
  to { transform: none; }
}
.cookie-banner-text {
  flex: 1;
  max-width: 700px;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  appearance: none;
  background: #fff;
  color: #0f1113;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(25, 25, 25, 0.04);
  margin-right: 0;
  margin-bottom: 0;
  transition: background .18s, color .18s;
}
.cookie-btn.settings {
  background: #f0f0f0; color: #222;
}
.cookie-btn.accept {
  background: #169150;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #139a45;
  color: #fff;
}
.cookie-btn.reject {
  background: #ededed;
  color: #111;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c9c9c9;
  color: #0f1113;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #232323;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.99rem;
    padding: 12px 8px;
  }
  .cookie-banner-btns {
    flex-direction: row;
    gap: 9px;
    width: 100%;
    flex-wrap: wrap;
  }
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,26,26,0.48);
  z-index: 6000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #111;
  border-radius: 15px;
  box-shadow: 0 8px 64px 0 rgba(25,25,25,0.22);
  padding: 36px 32px 28px 32px;
  width: 92vw;
  max-width: 370px;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: modal-pop 0.35s cubic-bezier(.62,1.31,.66,.98) 0s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modal-pop {
  from { transform: scale(0.82); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #232323;
  padding: 3px 8px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f8f8;
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: #19202b;
  border: 1px solid #ececec;
}
.cookie-category label {
  font-family: inherit;
  margin-left: 0;
  font-weight: 600;
  user-select: none;
}
.cookie-category input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #169150;
  margin-left: 10px;
  cursor: pointer;
}
.cookie-modal-btn-btn {
  background: #169150;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 6px;
  border: none;
  margin-top: 16px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-end;
  transition: background .18s, color .12s;
}
.cookie-modal-btn-btn:hover, .cookie-modal-btn-btn:focus {
  background: #137b45;
}

/* === UTILITY: Hide visually === */
.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important; 
  margin: -1px !important; 
  overflow: hidden !important;
  padding: 0 !important; 
  position: absolute !important;
  width: 1px !important; 
  white-space: nowrap !important;
}

/* === RESPONSIVE ALIGNMENT: SECTION FLEX CONTAINERS === */
.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* === SPACING & ALIGNMENT === */
.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; }

/* === MICRO ANIMATIONS === */
.btn-primary, .service-card, .feature-card, .faq-item, .step, .testimonial-card {
  transition: box-shadow .14s, background .13s, transform .13s, color .11s;
}

/* === ACCESSIBILITY & HIGH CONTRAST === */
@media (max-width: 480px) {
  h1, .logo img { font-size: 1.27rem; height: 38px; }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
/* Hide all visually when JavaScript toggles classes as needed */
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
}
