/* --- CSS RESET (Normalize/Reset for consistent base) --- */
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, menu, 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;
}
article, aside, footer, header, main, nav, section {
  display: block;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  background: #FAFAF8;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
:focus {
  outline: 2px solid #FFD166;
  outline-offset: 2px;
}

/* --- BRAND COLOR VARIABLES --- */
:root {
  --brand-primary: #133D6A;
  --brand-secondary: #E2E2E2;
  --brand-accent: #FFD166;
  --brand-bg: #FAFAF8;
  --brand-bg-alt: #FFFFFF;
  --brand-card-bg: #F7F7F7;
  --brand-border: #DFDFDF;
  --brand-text-dark: #1A232A;
  --brand-text-light: #4D5D6A;
  --shadow-md: 0 2px 12px 0 rgba(30,37,52,0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 7px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* --- GENERAL STRUCTURE & CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (max-width: 1024px) {
  .section {
    padding: 28px 8px;
  }
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 36px;
    padding: 17px 3px;
  }
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--brand-primary);
}
.subheadline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--brand-text-light);
  margin-bottom: 16px;
}
p, address, ul, ol, table, .legal_text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-text-dark);
  margin-bottom: 14px;
}
strong {
  font-weight: 600;
  color: var(--brand-primary);
}
em {
  font-style: italic;
  color: var(--brand-text-light);
}
small {
  font-size: 0.9rem;
  color: var(--brand-text-light);
}

/* --- HEADER/NAVIGATION --- */
header {
  width: 100%;
  background: var(--brand-bg-alt);
  border-bottom: 1px solid var(--brand-secondary);
  box-shadow: 0 2px 12px 0 rgba(30,37,52,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  gap: 20px;
}
header img {
  height: 46px;
  margin-right: 20px;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-accent);
  color: #181820;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 8px 8px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-secondary);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background: var(--brand-bg-alt);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-110%);
  transition: transform 0.36s cubic-bezier(0.85,0,0.19,1);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-primary);
  cursor: pointer;
  margin-bottom: 24px;
  z-index: 202;
  padding: 4px 16px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-primary);
  padding: 10px 0;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: #222 !important;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(90deg, #FAFAF8 60%, var(--brand-secondary) 100%);
  padding: 48px 0 44px 0;
  margin-bottom: 24px;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 16px;
}
.hero h1, .hero .h1 {
  color: var(--brand-primary);
  margin-bottom: 8px;
  font-size: 2.3rem;
}
.hero .subheadline {
  font-size: 1.15rem;
  margin-bottom: 20px;
}
@media (min-width: 800px) {
  .hero .container {
    flex-direction: row;
    justify-content: center;
  }
  .hero .content-wrapper {
    align-items: center;
    max-width: 700px;
  }
  .hero h1, .hero .h1 {
    font-size: 3rem;
  }
}


/* --- BUTTONS (CTA) --- */
.cta, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  padding: 14px 30px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s;
  box-shadow: var(--shadow-md);
}
.cta.primary {
  background: var(--brand-primary);
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #153D5F;
  color: var(--brand-accent);
  box-shadow: 0 6px 24px 0 rgba(30,37,52,0.14);
}
.cta.secondary {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFE8A5;
  color: #1A232A;
  box-shadow: 0 6px 20px 0 rgba(255, 209, 102, 0.12);
}
.cta {
  background: var(--brand-bg-alt);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cta:hover, .cta:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* --- FLEXBOX PATTERNS (MANDATORY) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-card-bg);
  margin-bottom: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 240px;
  flex: 1 1 330px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(19,61,106,0.13);
  transform: translateY(-3px);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--brand-bg-alt);
  color: var(--brand-text-dark);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  min-width: 240px;
  font-size: 1.08rem;
  flex: 1 1 280px;
}
.testimonial-card p {
  margin-bottom: 6px;
  color: var(--brand-primary);
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--brand-text-light);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURE & SERVICE LIST SECTIONS --- */
.feature_grid, .service_highlights, .services_list, .value_icons, .discovery_list, .faq_list {
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.feature_grid li, .service_highlights li, .services_list li, .discovery_list li, .value_icons li, .faq_list li {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--brand-card-bg);
  border-radius: var(--radius-md);
  padding: 18px 18px 14px 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.19s;
}
.feature_grid li img,
.value_icons li img,
.services_list li img {
  width: 34px;
  height: 34px;
  margin-right: 4px;
  flex-shrink: 0;
}
.feature_grid li:hover,
.value_icons li:hover,
.services_list li:hover,
.service_highlights li:hover,
.discovery_list li:hover,
.faq_list li:hover {
  box-shadow: 0 4px 18px 0 rgba(19,61,106,0.10);
}

@media (max-width: 900px) {
  .feature_grid, .service_highlights, .services_list, .value_icons, .discovery_list, .faq_list {
    gap: 13px;
  }
  .feature_grid li, .services_list li, .value_icons li {
    padding: 14px 11px 12px 12px;
    min-width: 115px;
  }
}
@media (max-width: 500px) {
  .feature_grid, .service_highlights, .services_list, .value_icons, .discovery_list, .faq_list {
    flex-direction: column;
    gap: 13px;
  }
}

/* --- SERVICE PRICING TABLE (Dienstleistungen) --- */
.service_pricing_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 22px;
  margin-top: 8px;
  font-family: var(--font-body);
  background: var(--brand-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
}
.service_pricing_table th, .service_pricing_table td {
  text-align: left;
  padding: 18px 16px;
  color: var(--brand-text-dark);
}
.service_pricing_table th {
  background: var(--brand-secondary);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.service_pricing_table tr:not(:last-child) td {
  border-bottom: 1px solid var(--brand-secondary);
}

/* --- 2nd level FLEX - EXTRAS (cards in lists, founders, team, testimonials, etc.) --- */
.founder_bio {
  background: var(--brand-bg-alt);
  border-left: 5px solid var(--brand-accent);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 8px;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.team_list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.team_list li {
  background: var(--brand-card-bg);
  padding: 10px 15px;
  color: var(--brand-primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 5px 0 rgba(30,37,52,0.04);
  font-size: 1.02rem;
}
.experts_brief {
  background: var(--brand-secondary);
  padding: 16px 15px;
  border-radius: var(--radius-md);
  font-size: 1.04rem;
  color: var(--brand-primary);
}

.value_descriptions {
  padding: 12px 4px 6px 0;
  font-size: 1rem;
  color: var(--brand-text-light);
}

/* CONTACT & SNIPPETS */
.contact_snippet {
  background: var(--brand-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px 0 rgba(30,37,52,0.07);
  padding: 19px 18px;
  margin-bottom: 10px;
  font-size: 1.06rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.quick_links {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 11px 0;
}
.opening_hours {
  font-size: 1rem;
  color: var(--brand-text-light);
  margin-top: 5px;
}
.address {
  margin-bottom: 5px;
}

.map_snippet {
  font-size: 0.97rem;
  color: var(--brand-text-light);
  background: var(--brand-secondary);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
}

/***** THANK YOU SECTION ******/
.thankyou_message {
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 15px;
  background: var(--brand-card-bg);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.next_steps_info ul {
  padding-left: 14px;
  margin-bottom: 11px;
}
.next_steps_info li {
  list-style: disc;
  margin-left: 10px;
}

/* --- LEGAL TEXT --- */
.legal_text {
  background: var(--brand-card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 24px 10px 18px;
  font-size: 1.01rem;
}

/* --- FOOTER --- */
footer {
  background: var(--brand-bg-alt);
  border-top: 1px solid var(--brand-secondary);
  margin-top: 60px;
  font-size: 0.95rem;
  padding: 25px 0 15px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.footer-nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-accent);
  color: #181820;
}
footer small, footer address {
  color: var(--brand-text-light);
  font-size: 0.97rem;
}

/* --- RESPONSIVE BEHAVIOUR --- */
@media (max-width: 650px) {
  header .container {
    padding: 9px 6px;
  }
  footer .container {
    padding: 3px 4px 12px 4px;
  }
}
@media (max-width: 540px) {
  .footer-nav {
    gap: 10px;
    font-size: 0.95rem;
  }
}
@media (max-width: 540px) {
  .footer-nav, .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- TABLES (General) --- */
table {
  width: 100%;
  margin: 12px 0 32px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--brand-bg-alt);
  overflow-x: auto;
}
th, td {
  padding: 15px 13px;
  text-align: left;
}
th {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-weight: 600;
}
td {
  color: var(--brand-text-dark);
}

/* --- ANIMATIONS & TRANSITIONS --- */
html {
  scroll-behavior: smooth;
}
button, .cta, .card, a, .feature_grid li, .testimonial-card, .footer-nav a {
  transition: background 0.18s, color 0.23s, box-shadow 0.19s, transform 0.12s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--brand-bg-alt);
  border-top: 2px solid var(--brand-accent);
  box-shadow: 0 -3px 24px 0 rgba(19,61,106,0.13);
  padding: 24px 10px 20px 10px;
  gap: 18px;
  font-size: 1rem;
  animation: cookie-banner-slidein 0.6s cubic-bezier(0.7,0,0.19,1);
}
@keyframes cookie-banner-slidein {
  from { opacity: 0; transform: translateY(65%); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  color: var(--brand-text-dark);
  max-width: 520px;
  text-align: center;
}
.cookie-consent-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 11px 22px;
  margin: 0 2px;
  font-family: var(--font-display);
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #102f52;
}
.cookie-btn.reject {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-btn.reject:hover,.cookie-btn.reject:focus {
  background: #ebecec;
  color: #153D5F;
}
.cookie-btn.settings {
  background: var(--brand-accent);
  color: #212937;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFE8A5;
  color: #222;
}

@media (max-width: 430px) {
  .cookie-consent-banner {
    padding: 17px 3px 10px 3px;
    font-size: 0.96rem;
    gap: 10px;
  }
  .cookie-consent-actions {
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(30,37,52,0.23);
  animation: fade-in 0.34s ease;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: var(--brand-bg-alt);
  border-radius: var(--radius-lg);
  padding: 34px 22px 22px 22px;
  max-width: 430px;
  min-width: 230px;
  box-shadow: 0 6px 34px 0 rgba(19,61,106,0.17);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: modal-pop 0.3s cubic-bezier(0.7,0,0.23,1);
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(20%); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-secondary);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  color: var(--brand-primary);
  font-size: 1.08rem;
  min-width: 0;
}
.cookie-category .toggle {
  margin-left: auto;
}
.cookie-category.essential {
  opacity: 0.8;
  font-style: italic;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 13px;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 2px 10px;
  transition: background 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-secondary);
}

/* Custom Toggle Switch for Cookie Modal */
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.toggle input { display: none; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #c9d1da;
  border-radius: 16px;
  transition: background 0.2s;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(19,61,106,0.08);
  transition: transform 0.2s;
}
.toggle input:checked + .toggle-slider {
  background: var(--brand-accent);
}
.toggle input:checked + .toggle-slider:before {
  transform: translateX(20px);
}
.toggle[aria-disabled='true'] {opacity: 0.6; pointer-events: none;}

/* --- RESPONSIVE FONT SIZES --- */
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  .container { padding: 0 7px; }
  .card { padding: 19px; }
}
@media (max-width: 540px) {
  h1, .h1 { font-size: 1.55rem; }
  h2, .h2 { font-size: 1.17rem; }
  .card { padding: 12px; }
  .testimonial-card { font-size: 0.98rem; }
}

/* --- OVERRIDES, Z-INDEX/SPECIFIC FIXES --- */
main {
  width: 100%;
  margin-top: 0;
}

/* Prevent overlap: gap between main and footer on mobile */
@media (max-width: 600px) {
  main { margin-bottom: 37px; }
}

/*****  ENFORCE FLEXBOX --- FORBID display:grid/COLUMNS ******/
/* (No 'display: grid', 'grid-*' or column-count/width etc.) */

/* --- MISC STYLES --- */
a {
  cursor: pointer;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--brand-accent);
  text-decoration: underline;
}
.card a.cta, .feature_grid a.cta {
  margin-top: 14px;
}

/* --- SCANDINAVIAN CLEAN EXTRAS --- */
.card, .testimonial-card, .feature_grid li, .services_list li, .value_icons li {
  border: 1px solid var(--brand-secondary);
}

hr {
  border: none;
  border-top: 1px solid var(--brand-secondary);
  margin: 32px 0;
}

/* --- UTILITY CLASSES --- */
.hide { display: none; }
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.gap-24 { gap: 24px !important; }

/* --- PRINT STYLES --- */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal { display: none !important; }
  body, main { margin: 0; padding: 0; background: #fff; }
}
