/* === CSS RESET & NORMALIZER === */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; }
img { max-width: 100%; display: block; }
table { border-collapse: collapse; width: 100%; }

/* === BRAND VARIABLES === */
:root {
  --primary: #20406D;
  --secondary: #F0F0F2;
  --accent: #FFB100;
  --neutral-100: #fff;
  --neutral-200: #e9ecef;
  --neutral-800: #1a2533;
  --neutral-900: #18191c;
  --shadow-md: 0 4px 16px 0 rgba(32,64,109,0.12);
  --shadow-bold: 0 2px 24px 0 rgba(32,64,109,0.16);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --max-width: 1160px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--secondary);
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--neutral-900);
  font-size: 1rem;
  min-height: 100vh;
  background-color: var(--secondary);
}

/* === TYPOGRAPHY === */
h1, .hero-section h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.13;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.18;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.21;
}
h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--neutral-800);
  font-weight: 400;
  line-height: 1.7;
}
a {
  color: var(--primary);
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}
strong { font-weight: 700; }

/* === LAYOUT & CONTAINER === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === HEADER / NAVIGATION === */
header {
  width: 100%;
  background: var(--neutral-100);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  box-shadow: var(--shadow-md);
}
header {
  padding: 0 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--max-width);
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 14px 0 14px 0;
  margin-right: 20px;
}
.logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
}
.main-nav a {
  color: var(--primary);
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  background: var(--secondary);
}
.cta-btn {
  margin-left: auto;
  padding: 12px 30px;
  background: var(--primary);
  color: var(--neutral-100);
  border-radius: 48px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04rem;
  border: none;
  box-shadow: 0 2px 18px 0 rgba(32,64,109,0.11);
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 32px 0 rgba(255,177,0,0.13);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--primary);
  background: none;
  margin-left: 12px;
  z-index: 52;
  border-radius: 8px;
  transition: background 0.14s;
  width: 44px; height: 44px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(32,64,109,0.89);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s, transform 0.4s cubic-bezier(.4,.2,.3,1);
}
.mobile-menu.open {
  opacity: 1; pointer-events: auto; transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: var(--neutral-100);
  color: var(--primary);
  border-radius: 50%;
  width: 44px; height: 44px;
  margin: 24px 20px 0 0;
  align-self: flex-end;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--neutral-100);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin: 38px 32px 0 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--neutral-100);
  font-size: 1.25rem;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  margin-right: 0;
  background: none;
  transition: color 0.2s, background 0.2s;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(255,177,0,0.16);
}

/* --- Hide main nav on mobile, show burger --- */
@media (max-width: 1023px) {
  header .container {
    gap: 12px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* === HERO SECTION === */
.hero-section {
  display: flex;
  align-items: center;
  background: var(--neutral-100);
  min-height: 380px;
  margin-bottom: 44px;
  padding: 50px 0 44px 0;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--neutral-800);
  margin-bottom: 32px;
  margin-top: 6px;
  max-width: 700px;
}

/* === GENERAL FLEX CONTAINERS (FLEX ONLY) === */
.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;
}

/* === SECTION SPACING (MOBILE-FIRST) === */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 768px) {
  section {
    padding: 28px 0 32px 0;
    margin-bottom: 38px;
  }
}

/* === FEATURES, SERVICE CARDS, AND OVERVIEW === */
.features-section ul, .howitworks-section ul, .howitworks-section ol, .features-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.features-section ul li, .howitworks-section ul li, .howitworks-section ol li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--neutral-900);
  background: var(--secondary);
  border-radius: var(--border-radius-sm);
  padding: 13px 22px;
  margin-bottom: 0;
  box-shadow: var(--shadow-md);
  position: relative;
}
.features-section ul li:before, .howitworks-section ul li:before, .howitworks-section ol li:before {
  content: '\25A0';
  color: var(--accent);
  margin-right: 12px;
  font-size: 1rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .features-section ul li, .howitworks-section ul li, .howitworks-section ol li {
    font-size: 0.97rem;
    padding: 10px 14px;
  }
}

/* --- SERVICES LIST (INDEX & SERVICES) --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  justify-content: space-between;
}
.service-item, .service-card {
  background: var(--neutral-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 28px 26px 24px 26px;
  min-width: 250px;
  flex: 1 1 240px;
  min-height: 215px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.22s, transform 0.26s;
  border: 2px solid var(--secondary);
  position: relative;
}
.service-item:hover, .service-card:hover {
  box-shadow: var(--shadow-bold);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
  border-color: var(--accent);
}
.service-item img {
  width: 44px;
  height: 44px;
}
.service-item h3, .service-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
}
.service-item span, .service-card .price-tag, .service-item span {
  margin-top: auto;
  font-size: 1.07rem;
  color: var(--accent);
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
@media (max-width: 1130px) {
  .service-list {
    flex-direction: column;
    gap: 22px;
  }
  .service-item, .service-card {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .service-item, .service-card {
    padding: 18px 13px 14px 13px;
  }
}

/* --- Article Previews (Ratgeber) --- */
.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.article-previews .text-section {
  background: var(--neutral-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 24px 22px 18px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
}
.article-previews .text-section h3 {
  font-size: 1.1rem;
}
.article-previews .text-section a {
  color: var(--accent);
  font-family: 'Montserrat';
  font-weight: 600;
  margin-top: 8px;
  align-self: flex-start;
  transition: color 0.15s;
}
.article-previews .text-section a:hover {
  color: var(--primary);
  text-decoration: underline;
}
@media (max-width: 900px) {
  .article-previews {
    flex-direction: column;
    gap: 12px;
  }
}

/* === TESTIMONIALS === */
.testimonials-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card {
  background: var(--neutral-100);
  border: 3px solid var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  padding: 30px 34px 26px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.16s;
  min-width: 215px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--neutral-900);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card span {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-bold);
  transform: translateY(-3px) scale(1.007);
  background: var(--accent);
  color: var(--primary);
}
.testimonial-card:hover p, .testimonial-card:hover strong {
  color: var(--primary);
}
@media (max-width: 770px) {
  .testimonial-card {
    padding: 20px 14px 16px 14px;
    font-size: 0.98rem;
  }
}

/* === CTA SECTION === */
.cta-section {
  background: var(--primary);
  color: var(--neutral-100);
  border-radius: var(--border-radius);
  padding: 48px 0;
  text-align: center;
  margin-bottom: 44px;
}
.cta-section h2 {
  color: var(--neutral-100);
  margin-bottom: 18px;
  font-size: 2.1rem;
}
.cta-section .cta-btn {
  background: var(--accent);
  color: var(--primary);
  font-size: 1.17rem;
  margin: 0 auto 16px auto;
  font-weight: bold;
  min-width: 242px;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: var(--neutral-100);
  color: var(--primary);
}
.cta-section .text-section {
  margin: 20px auto 0 auto;
  color: var(--neutral-100);
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 460px;
}
.cta-section a {
  text-decoration: underline;
}

/* --- CONTACT SECTION --- */
.contact-section .text-section {
  margin-bottom: 20px;
}
.map {
  margin-top: 8px;
  color: var(--neutral-800);
  font-size: 0.96rem;
  padding: 14px 16px;
  background: var(--secondary);
  border-radius: var(--border-radius-sm);
}

/* === TABLES (PRICING/COMPARISON) === */
table {
  background: var(--neutral-100);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
  font-size: 1rem;
}
th, td {
  padding: 18px 16px;
  border: none;
  text-align: left;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
th {
  background: var(--primary);
  color: var(--neutral-100);
  font-weight: 700;
  font-size: 1.15rem;
}
tbody tr {
  border-top: 1px solid var(--secondary);
}
tbody tr:nth-child(even) {
  background: var(--secondary);
}
td {
  color: var(--neutral-800);
}
td:first-child {
  font-weight: 600;
  color: var(--primary);
}
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  th, td {
    padding: 10px 8px;
    font-size: 0.98rem;
  }
  th {
    background: var(--primary);
    color: var(--neutral-100);
  }
}

/* === FAQ SECTION === */
.faq-section ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-section li {
  background: var(--neutral-100);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  font-size: 1rem;
}

/* === LEGAL/TEXT SECTIONS === */
.legal-section .text-section, .about-section .text-section, .about-section .values-grid, .about-section .team-intro, .service-inclusions {
  background: var(--neutral-100);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  padding: 20px 28px 14px 23px;
  margin-bottom: 18px;
}
.legal-section .text-section h2, .legal-section .text-section h3, .about-section h3 {
  margin-top: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.13rem;
  color: var(--primary);
}
.values-grid ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--neutral-100);
  padding: 20px 0;
  box-shadow: 0 -2px 14px 0 rgba(32,64,109,0.13);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--neutral-100);
  opacity: 0.91;
  border-radius: var(--border-radius-sm);
  padding: 7px 13px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  opacity: 1;
}
footer p {
  color: var(--neutral-100);
  font-size: 0.98rem;
  opacity: 0.85;
}

/* === COOKIES BANNER + MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  z-index: 150;
  font-size: 1rem;
  box-shadow: 0 -4px 24px 0 rgba(32,64,109,0.20);
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: var(--neutral-100);
  margin-right: 30px;
  flex: 1 1 220px;
}
.cookie-banner button {
  margin-left: 8px;
  padding: 10px 22px;
  border-radius: var(--border-radius-sm);
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 9px 0 rgba(255,177,0,0.08);
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .cookie-accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--neutral-100);
  color: var(--primary);
}
.cookie-banner .cookie-reject {
  background: var(--neutral-200);
  color: var(--primary);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: var(--neutral-100);
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 700;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--accent);
  color: var(--primary);
}
/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,64,109,0.67);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--neutral-100);
  padding: 38px 26px 34px 34px;
  border-radius: var(--border-radius);
  max-width: 430px;
  width: 95%;
  box-shadow: var(--shadow-bold);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 201;
  position: relative;
  animation: modal-popin 0.31s cubic-bezier(.62,.02,.39,1.11);
}
@keyframes modal-popin {
  0% { opacity:0; transform: scale(0.82); }
  100% { opacity:1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.36rem;
  font-weight: 800;
  color: var(--primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--secondary);
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-category .cookie-switch {
  width: 42px; height: 24px;
  background: var(--secondary);
  border-radius: 24px;
  position: relative;
  display: inline-block;
  margin-left: 18px;
}
.cookie-category .cookie-switch input[type="checkbox"] {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 2px;
  right: 2px; bottom: 2px;
  background: var(--neutral-200);
  border-radius: 24px;
  transition: background 0.2s;
}
.cookie-category .cookie-switch input[type="checkbox"]:checked + .slider {
  background: var(--accent);
}
.cookie-category .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 1.5px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-category .cookie-switch input[type="checkbox"]:checked + .slider:before {
  transform: translateX(15px);
  background: var(--neutral-100);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 8px;
  }
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 0.97rem;
  }
}

/* === CATEGORY FILTER (Ratgeber) === */
.category-filter {
  font-size: 1rem;
  margin-top: 22px;
  color: var(--primary);
  font-family: 'Montserrat';
  font-weight: 600;
}

/* === COMPARISON TABLE SHORTCUTS (UEBER-UNS) === */
.comparison-table {
  margin-top: 18px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  background: var(--neutral-100);
  padding: 12px 8px;
  overflow: auto;
}
.comparison-table table {
  margin-bottom: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.comparison-table th, .comparison-table td {
  padding: 12px 8px;
  text-align: center;
  font-size: 1rem;
}
.comparison-table th {
  background: var(--primary);
  color: var(--neutral-100);
}
.comparison-table tr td:first-child {
  text-align: left;
}

/* === UTILITY & RESPONSIVE BREAKPOINTS === */
@media (max-width: 820px) {
  header .container, .footer-nav {
    gap: 8px;
  }
  h1, .hero-section h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
}
@media (max-width: 680px) {
  h1, .hero-section h1 { font-size: 1.52rem; }
  h2 { font-size: 1.11rem; }
  .content-wrapper { gap: 13px; }
}
@media (max-width: 910px) {
  .testimonials-section .content-wrapper {
    gap: 12px;
  }
}
@media (max-width: 630px) {
  .cta-section, .cta-section .container, .cta-section .content-wrapper {
    padding: 12px 0;
    border-radius: 0;
    min-width: 0;
  }
  .cta-section h2 {
    font-size: 1.11rem;
  }
  .cta-section .cta-btn {
    min-width: 172px;
  }
}

/* === FLEX LAYOUTS: MOBILE DIRECTION OVERRIDES === */
@media (max-width: 900px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .service-list, .card-container, .article-previews {
    flex-direction: column;
    gap: 14px;
  }
}

/* === MICROINTERACTIONS === */
.cta-btn, button, .service-item, .service-card, .testimonial-card {
  transition: box-shadow 0.18s, background 0.17s, color 0.17s, transform 0.23s;
}
.main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.13s, background 0.13s;
}

/* === SCROLLBAR (for modern browsers) === */
::-webkit-scrollbar { width: 9px; background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
body { scrollbar-color: var(--primary) var(--secondary); scrollbar-width: thin; }

/* === FOCUS/ACCESSIBILITY STATES === */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--accent);
}

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