/* =======================================================
   RESET & BASE
   ======================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #191919;
  background: #FAFBFC;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  margin-left: 1.4em;
  padding-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #111217;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: 2.7rem; margin-bottom: 24px; line-height: 1.17; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
h3 { font-size: 1.3rem; margin-bottom: 14px; line-height: 1.3; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

p, li, td, th { font-size: 1rem; }
p { margin-bottom: 18px; }
strong { font-weight: 600; }
a {
  color: #222831;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #317873; text-decoration: underline; }

/* =======================================================
   MONOCHROME SOPHISTICATED BRAND COLORS
   ======================================================= */
:root {
  --color-bg: #FAFBFC;
  --color-bg-dark: #1E2D3B;
  --color-bg-light: #FFFFFF;
  --color-primary: #1E2D3B;
  --color-secondary: #474747;
  --color-accent: #F7F7F2;
  --color-link: #1E2D3B;
  --color-text: #191919;
  --color-text-light: #ffffff;
  --color-gray: #A0A4A8;
  --color-gray-dark: #474747;
  --color-divider: #ececec;
}

/* =======================================================
   LAYOUT STRUCTURE & CONTAINERS
   ======================================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
main {
  flex: 1 0 auto;
  margin-bottom: 60px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* =======================================================
   HEADER & NAVIGATION
   ======================================================= */
header {
  background: var(--color-bg-light);
  box-shadow: 0 3px 18px 0 rgba(30, 45, 59, 0.05);
  z-index: 30;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 16px 0;
}
.logo {
  margin-right: 44px;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  padding: 8px 0;
  color: #222831;
  transition: color 0.2s;
  position: relative;
}
.main-nav a.cta.primary {
  color: var(--color-text-light);
  background: var(--color-primary);
  border-radius: 6px;
  padding: 10px 26px;
  margin-left: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s;
  box-shadow: 0 2px 12px 0 rgba(30, 45, 59, 0.10);
  border: none;
  outline: none;
  display: inline-block;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #222831;
  color: var(--color-accent);
  box-shadow: 0 3px 20px 0 rgba(30,45,59,0.18);
}

/* Hide mobile menu desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #191919;
  font-size: 2rem;
  cursor: pointer;
  z-index: 101;
  margin-left: auto;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ececec;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(30,45,59,0.98);
  color: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 1300;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(255,255,255,0.16);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 38px;
  gap: 0;
}
.mobile-nav a {
  color: #fafbf4;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 18px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: rgba(49,120,115,0.13);
  color: #fff;
}

@media (max-width: 1120px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav a:not(.cta.primary), .main-nav .logo {
    font-size: 0.98rem;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 820px) {
  .main-nav { gap: 8px; }
  h1 { font-size: 1.7rem; }
}
@media (max-width: 820px) {
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 17px;
  }
  header {
    padding-bottom: 0;
  }
  .logo {
    margin-right: 10px;
  }
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/* =======================================================
   HERO & PROMO
   ======================================================= */
.hero {
  background: linear-gradient(90deg, #F7F7F2 60%, #eaeaea 100%);
  padding: 56px 0 50px 0;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--color-divider);
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #1E2D3B;
  font-size: 2.7rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.11;
  letter-spacing: -.02em;
}
.hero p {
  max-width: 600px;
  color: #393939;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 0 30px 0;
    margin-bottom: 35px;
  }
  .hero h1 { font-size: 1.55rem; }
}

/* =======================================================
   FLEX GRID & PATTERNED LAYOUTS
   ======================================================= */
.feature-grid,
.service-overview-grid,
.step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 25px;
  margin-bottom: 6px;
}
.feature-grid li,
.service-overview-grid li,
.step-grid li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 20px 0 rgba(42,42,50,0.05), 0 1px 2px #E5E6EA;
  padding: 28px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 265px;
  min-width: 240px;
  max-width: 334px;
  margin-bottom: 12px;
  border: 1px solid #ececec;
  transition: box-shadow 0.19s, border 0.19s;
}
.feature-grid li:hover, .service-overview-grid li:hover, .step-grid li:hover {
  box-shadow: 0 14px 32px 0 rgba(30,45,59,0.13);
  border: 1.5px solid #CCC;
}
.feature-grid img, .service-overview-grid img, .step-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.feature-grid h3, .service-overview-grid h3, .step-grid strong {
  margin-bottom: 7px;
  font-size: 1.13rem;
  color: #1E2D3B;
}

.tips-highlights {
  background: #f7f7f2;
  border-left: 5px solid #1E2D3B;
  padding: 18px 24px;
  border-radius: 8px;
  margin-top: 28px;
}
.tips-highlights h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: .01em;
}

.tips-list {
  list-style-position: inside;
  padding-left: 0;
}
.tips-list li {
  margin-bottom: 12px;
}

.mistake-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.mistake-card {
  flex: 1 1 270px;
  padding: 24px 20px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 20px 0 rgba(30,45,59,0.09);
  border: 1px solid #ededed;
  margin-bottom: 20px;
}
/* Step-by-step grid list responsive */
@media (max-width: 900px) {
  .feature-grid,
  .service-overview-grid,
  .step-grid,
  .mistake-cards {
    gap: 18px;
  }
}
@media (max-width: 690px) {
  .feature-grid,
  .service-overview-grid,
  .step-grid,
  .mistake-cards {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li,
  .service-overview-grid li,
  .step-grid li,
  .mistake-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* =======================================================
   CARDS & CARD CONTAINERS
   ======================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 3px 24px 0 rgba(30,45,59,0.07);
  border: 1px solid #ececec;
  padding: 30px 22px 22px 22px;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(30,45,59,0.13);
  border-color: #cccccc;
  z-index: 3;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-list-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 28px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px 0 rgba(30,45,59,0.09);
  border: 1px solid #e6e6e6;
  padding: 26px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, border-color 0.17s;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 14px 36px 0 rgba(30,45,59,0.12);
  border-color: #aaa;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #317873;
  font-size: 1.17rem;
  margin-top: 10px;
  font-weight: 700;
}

/* =======================================================
   TABLES
   ======================================================= */
.service-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 38px 0 32px 0;
  font-size: 1.03rem;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 10px 0 rgba(30,45,59,0.06);
  overflow: hidden;
  border: 1px solid #eaeaea;
}
.service-pricing-table th,
.service-pricing-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid #f1f1f1;
}
.service-pricing-table th {
  background: #F7F7F2;
  font-size: 1.18rem;
  font-weight: 700;
  color: #222831;
}
.service-pricing-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 650px) {
  .service-pricing-table,
  .service-pricing-table thead, .service-pricing-table tbody, .service-pricing-table th, .service-pricing-table td, .service-pricing-table tr {
    display: block;
    width: 100%;
  }
  .service-pricing-table th {
    font-size: 1rem;
    padding: 11px 9px;
  }
  .service-pricing-table td {
    padding: 11px 9px;
  }
}

/* =======================================================
   TESTIMONIALS
   ======================================================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 8px 36px 0 rgba(30,45,59,0.08), 0 2px 4px #A0A4A8;
  margin-bottom: 20px;
  border: 1.4px solid #ececec;
  position: relative;
  min-height: 90px;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #222831;
  margin: 0;
}
.testimonial-details {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  color: #317873;
  font-weight: 700;
  margin-left: 8px;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Times New Roman', serif;
  font-size: 3rem;
  color: #DBDBDB;
  position: absolute;
  left: 12px;
  top: 6px;
}
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 15px 10px 10px 18px;
  }
  .testimonial-card:before {
    left: 1px;
    top: -3px;
    font-size: 2.4rem;
  }
}

/* =======================================================
   FAQ ENTRIES & ACCORDION
   ======================================================= */
.faq-entries, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #F7F7F2;
  border-radius: 9px;
  padding: 22px 20px 16px 24px;
  box-shadow: 0 2px 10px 0 rgba(30,45,59,0.08);
  border-left: 4px solid #1e2d3b;
  transition: box-shadow 0.16s, background 0.16s;
  margin-bottom: 12px;
}
.faq-item h3,
.faq-item h2 {
  font-size: 1.15rem;
  color: #1e2d3b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0;
}
.faq-item > div {
  color: #474747;
  font-size: 1rem;
  margin-bottom: 0;
}

/* =======================================================
   BUTTONS & CTAs
   ======================================================= */
.cta {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  border-radius: 7px;
  padding: 13px 32px;
  letter-spacing: .02em;
  font-size: 1.13rem;
  box-shadow: 0 2px 13px 0 rgba(30,45,59,0.10);
  border: none;
  outline: none;
  transition: background 0.18s, color 0.16s, box-shadow 0.19s;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta.primary {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}
.cta.primary:hover,
.cta.primary:focus {
  background: #191919;
  color: var(--color-accent);
  box-shadow: 0 8px 28px 0 rgba(30,45,59,0.19);
}
.cta.secondary {
  background: transparent;
  border: 2.2px solid var(--color-primary);
  color: var(--color-primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #1e2d3b;
  color: #fff;
  border-color: #1e2d3b;
}

/* General button behavior (cookie banners, settings) */
button, .button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-primary);
  border-radius: 7px;
  padding: 10px 18px;
  transition: background 0.14s, color 0.14s, border 0.16s;
}
button:focus, button:hover,
.button:focus, .button:hover {
  background: #ececec;
}

/* =======================================================
   MISC PATTERNS
   ======================================================= */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.map-placeholder {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #f3f3f3;
  border-radius: 8px;
  margin-top: 14px;
  padding: 15px 18px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  color: #1e2d3b;
}

@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  background: #212529;
  color: #DDD;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 2px solid #ececec;
  font-size: 1rem;
  letter-spacing: .01em;
  margin-top: 85px;
}
footer .container { max-width: 1080px; }
.footer-logo {
  width: 46px;
  height: auto;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  color: #DDD;
}
.footer-nav a {
  color: #DDD;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 3px 4px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #363636;
  color: #fff;
}
.footer-contact {
  margin-bottom: 10px;
  color: #CCC;
  font-size: 0.98rem;
}
.footer-contact > div {
  margin-bottom: 4px;
}
.footer-copy {
  font-size: 0.95rem;
  color: #a0a4a8;
  margin-top: 16px;
  letter-spacing: .01em;
}
@media (max-width: 700px) {
  footer {
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .footer-logo { margin-bottom: 9px; }
  .footer-nav { gap: 4px; font-size: 0.93rem; }
}

/* =======================================================
   COOKIE CONSENT BANNER
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1E2D3B;
  color: #fafbfc;
  z-index: 1500;
  padding: 22px 26px 19px 26px;
  box-shadow: 0 -1px 18px 0 rgba(30,45,59,0.18);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 38px;
  font-size: 1.08rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 0.31s ease, transform 0.33s cubic-bezier(.54,.19,.68,.88);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner__text {
  flex: 1 1 350px;
  color: #fafbfc;
  margin-right: 24px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.cookie-banner button,
.cookie-banner .button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #1E2D3B;
  border: 1.7px solid #F7F7F2;
  border-radius: 7px;
  padding: 9px 20px;
  margin-left: 0;
  font-weight: 700;
  font-size: 1.07rem;
  transition: background 0.18s, color 0.14s, border 0.13s;
}
.cookie-banner button.accept {
  background: #317873;
  border-color: #1E2D3B;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #17675e;
}
.cookie-banner button.reject {
  background: #fff;
  color: #1E2D3B;
  border-color: #ececec;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #ececec;
  color: #191919;
}
.cookie-banner button.settings {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.cookie-banner button.settings:hover {
  background: #fff;
  color: #1e2d3b;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 17px 10px 17px 10px;
    font-size: 15px;
  }
  .cookie-banner__actions {
    gap: 9px;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,45,59,0.65);
  z-index: 1700;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #222831;
  border-radius: 18px;
  box-shadow: 0 14px 46px 0 rgba(30,45,59,0.20);
  min-width: 320px;
  max-width: 430px;
  width: 90%;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: #1e2d3b;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #317873;
  width: 20px;
  height: 20px;
}
.cookie-category.label-disabled label {
  color: #A0A4A8;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 1.6rem;
  border: none;
  background: none;
  color: #757683;
  cursor: pointer;
  border-radius: 5px;
  padding: 2px 7px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ececec;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 6px 13px 8px;
    min-width: 0; max-width: 98vw; width: 99vw;
    border-radius: 11px;
  }
}

/* =======================================================
   TYPOGRAPHY SCALE (ADDITIONAL)
   ======================================================= */
@media (max-width: 650px) {
  h1 { font-size: 1.17rem; margin-bottom: 18px; }
  h2 { font-size: 1.05rem; margin-bottom: 11px; }
  h3, h4 { font-size: 1rem; margin-bottom: 9px;}
  .cta, .cta.primary, .cta.secondary { font-size: .98rem; padding: 11px 16px; }
}

/* =======================================================
   OTHER MOBILE STYLES
   ======================================================= */
@media (max-width: 700px) {
  .service-list-cards { flex-direction: column; gap: 16px; }
  .footer-nav { flex-direction: column; gap:2px; }
  .footer-contact > div { margin-bottom: 2px; }
}

/* =======================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ======================================================= */
.card, .service-card,
.testimonial-card, .mistake-card, .faq-item, .feature-grid li {
  transition: box-shadow 0.19s, border 0.19s, transform 0.19s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .mistake-card:hover, .faq-item:hover, .feature-grid li:hover {
  box-shadow: 0 8px 32px 0 rgba(30,45,59,0.18);
  transform: translateY(-2px) scale(1.016);
}
.cta, .cta.primary, .cta.secondary {
  transition: background 0.18s, color 0.17s, box-shadow 0.17s, transform 0.16s;
}
.cta:active, .cta.primary:active, .cta.secondary:active {
  transform: scale(0.97);
}
input[type='checkbox'] {
  transition: box-shadow 0.15s;
}
input[type='checkbox']:focus {
  box-shadow: 0 0 0 3px #31787333;
}

/* =======================================================
   FORCED FLEXBOX & CRITICAL CLASS PATTERNS
   ======================================================= */
.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; }

@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}

/* =======================================================
   SELECTION HIGHLIGHTS
   ======================================================= */
::selection {
  background: #1E2D3B;
  color: #fff;
}

/* =======================================================
   ACCESSIBILITY FOCUS STATES
   ======================================================= */
:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px dashed #317873;
  outline-offset: 2px;
  z-index: 10003;
}

/* ==============================
    END OF STYLE.CSS
   ============================== */
