/* =========================================================
   Cradox Glow — tech_futuristic styles (Flexbox-only)
   Author: Senior CSS Developer & UI Designer
   Notes:
   - Mobile-first, flexbox for ALL layouts (no grid/columns)
   - Brand-forward with futuristic neon accents
   - Solid color fallbacks + subtle linear gradients where suitable
   - Accessibility: contrasts, focus states, readable testimonials
   ========================================================= */

/* ===========================
   Reset & Base Normalize
   =========================== */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
blockquote { margin: 0; padding: 0; }

/* ===========================
   Design Tokens (CSS Vars)
   =========================== */
:root {
  --brand-primary: #1D3B2A; /* deep green */
  --brand-secondary: #E09F3E; /* warm amber */
  --brand-accent: #F6F7F2; /* light accent */
  --bg-deep: #0C1117; /* techy deep base */
  --bg-panel: #121A17; /* panels over base */
  --text: #E8F1ED; /* light text */
  --text-muted: #B9C7C0;
  --text-dark: #111418; /* dark for light surfaces */
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(0, 229, 255, 0.45);
  --neon-cyan: #00E5FF; /* neon accent */
  --neon-violet: #8E5DFF; /* secondary neon */
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.24);
  --shadow-neon: 0 0 0px rgba(0,229,255,0), 0 0 18px rgba(0,229,255,0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --transition-fast: 180ms ease;
  --transition-med: 280ms ease;
  --container-max: 1200px;
}

/* ===========================
   Body & Typography
   =========================== */
body {
  font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, "Trebuchet MS", sans-serif;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image: linear-gradient(180deg, rgba(29,59,42,0.35), rgba(12,17,23,0.6)); /* subtle depth */
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: "Trebuchet MS", Arial, sans-serif; color: var(--brand-accent); margin: 0 0 12px; letter-spacing: 0.2px; }
h1 { font-size: 32px; line-height: 1.2; }
h2 { font-size: 24px; line-height: 1.3; }
h3 { font-size: 20px; }
p { margin: 0 0 14px; color: var(--text); }
strong { color: #fff; font-weight: 700; }

@media (min-width: 768px) {
  h1 { font-size: 44px; }
  h2 { font-size: 28px; }
  p { font-size: 17px; }
}
@media (min-width: 1024px) {
  h1 { font-size: 52px; }
  h2 { font-size: 32px; }
}

/* Links */
a { color: var(--neon-cyan); transition: color var(--transition-fast), opacity var(--transition-fast); }
a:hover { color: #79f3ff; }
a:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; border-radius: 4px; }

/* ===========================
   Containers & Global Layout (Flex-only)
   =========================== */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px; width: 100%;
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* Section spacing rules */
section { display: flex; }
section > .container { width: 100%; }
section:not(:last-of-type) { margin-bottom: 60px; }

/* Mandatory spacing/alignment classes */
.section { margin-bottom: 60px; padding: 40px 20px; display: flex; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; display: flex; flex-direction: column; }
.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; }

/* Responsive alignment rule */
@media (max-width: 768px) { .text-image-section { flex-direction: column; align-items: flex-start; } }

/* ===========================
   Header & Navigation
   =========================== */
header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 20px;
  background-color: rgba(12,17,23,0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
header > a img { height: 34px; }

/* Desktop nav hidden by default (mobile-first) */
header nav { display: none; }
header nav a { padding: 10px 14px; border-radius: 8px; color: var(--text); opacity: 0.9; }
header nav a:hover { background-color: rgba(255,255,255,0.06); opacity: 1; }

/* Header CTAs */
header .btn-primary, header .btn-secondary { display: none; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,26,23,0.9), rgba(18,26,23,0.6));
  color: var(--brand-accent);
  cursor: pointer; transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.mobile-menu-toggle:hover { transform: translateY(-1px); box-shadow: var(--shadow-neon); border-color: var(--line-strong); }
.mobile-menu-toggle:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }

/* Mobile slide menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
  background-color: var(--brand-primary);
  background-image: linear-gradient(180deg, rgba(29,59,42,0.98), rgba(12,17,23,0.98));
  transform: translateX(100%);
  transition: transform 320ms ease;
}
.mobile-menu.open, .mobile-menu.active, .mobile-menu.is-open { transform: translateX(0); }
body.menu-open { overflow: hidden; }

.mobile-menu-close {
  align-self: flex-end; margin: 14px; width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.2); color: var(--brand-accent); cursor: pointer;
}
.mobile-nav { display: flex; flex-direction: column; gap: 8px; padding: 0 20px 20px; }
.mobile-nav a {
  display: flex; align-items: center; min-height: 44px; padding: 10px 14px;
  border-radius: 10px; color: #EAF5EF; background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.07); border-color: var(--line-strong); transform: translateX(4px); }

/* Desktop header adjustments */
@media (min-width: 992px) {
  header { padding: 14px 28px; }
  header nav { display: flex; align-items: center; gap: 6px; }
  header .btn-primary, header .btn-secondary { display: inline-flex; }
  .mobile-menu-toggle { display: none; }
}

/* ===========================
   Buttons (Primary/Secondary)
   =========================== */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px; padding: 10px 18px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.btn-primary {
  background-color: var(--brand-secondary);
  color: #1A1207;
  box-shadow: 0 8px 18px rgba(224,159,62,0.28), var(--shadow-neon);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(224,159,62,0.36), 0 0 24px rgba(0,229,255,0.26); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }

.btn-secondary {
  background-color: transparent; color: var(--brand-accent);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-neon);
}
.btn-secondary:hover { background-color: rgba(0,229,255,0.08); border-color: var(--neon-cyan); }

/* ===========================
   Hero Sections
   =========================== */
.hero { width: 100%; padding: 40px 0; }
.hero .content-wrapper {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.35), rgba(0,229,255,0)); filter: blur(8px);
}
.hero h1 { color: #fff; }
.hero p { color: var(--text-muted); max-width: 750px; }
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding-top: 8px; }
.trust-badges img { width: 36px; height: 36px; opacity: 0.9; }

/* ===========================
   Common Sections & Lists
   =========================== */
.features .content-wrapper,
.services .content-wrapper,
.process .content-wrapper,
.stats .content-wrapper,
.blog-teaser .content-wrapper,
.pricing .content-wrapper,
.faq .content-wrapper,
.cta .content-wrapper,
.about .content-wrapper,
.case-studies .content-wrapper,
.blog-list .content-wrapper,
.blog-filters .content-wrapper,
.cta-newsletter .content-wrapper,
.cta-project-support .content-wrapper,
.contact-data .content-wrapper,
.contact-form .content-wrapper,
.location .content-wrapper,
.legal .content-wrapper,
.confirmation .content-wrapper,
.cta-brief-calendar .content-wrapper,
.features-related .content-wrapper,
.return-home .content-wrapper {
  gap: 18px;
}

/* Grid-like lists (flex only) */
.feature-grid,
.service-list,
.service-categories,
.service-items,
.deliverables-list,
.steps-overview,
.step-list,
.stepper,
.kpi-list,
.featured-posts-list,
.contact_channels,
.case-list,
.kpi-definitions,
.qa-list,
.values-grid,
.vision-points,
.toolstack-list,
.quality-standards,
.eco-principles,
.category-list,
.post-list,
.pricing-models,
.cookie-categories,
.benefits-bullets,
.logo-list-textual,
ul:not(.mobile-nav) {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; margin: 0; padding: 0;
}

/* List items as cards/chips */
.feature-grid li,
.service-list li,
.service-categories li,
.service-items li,
.deliverables-list li,
.steps-overview li,
.step-list li,
.stepper li,
.kpi-list li,
.featured-posts-list li,
.contact_channels li,
.case-list li,
.kpi-definitions li,
.qa-list li,
.values-grid li,
.vision-points li,
.toolstack-list li,
.quality-standards li,
.eco-principles li,
.category-list li,
.post-list li,
.pricing-models li,
.benefits-bullets li,
.logo-list-textual span,
.stats ul li,
.contact-data ul li,
.contact-form .text-section ul li,
.location .text-section ul li,
.processing-records li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.feature-grid li img,
.service-list li img,
.contact_channels li img { width: 22px; height: 22px; opacity: 0.9; }

/* Tags & badges */
.methodology-badges,
.material-tags,
.result-highlights,
.lead-times,
.quality-gates,
.handoff_checklist,
.materials-policy,
.community-initiatives,
.sustainability-commitments,
.team-overview,
.expertise-areas,
.measurement-method,
.before-after-points,
.logo-list-textual,
.filters,
.rating-summary,
.dpo-contact,
.request-procedure,
.request-forms,
.response-times,
.timeline-estimates,
.eco_certifications,
.topic-filters,
.tag-cloud,
.preferences-toggle,
.handoff_checklist,
.escalation-policy,
.communication_cadence,
.data-controller-info,
.data-categories,
.processing-purposes,
.legal-basis,
.data-retention,
.data-receivers,
.user-rights,
.complaint-procedure,
.scope-of-policy,
.what-are-cookies,
.types-of-cookies,
.purposes-of-cookies,
.consent-management,
.how-to-disable,
.changes-to-policy,
.data-subjects,
.purpose-details,
.rights-exercise,
.transfer-outside-eea,
.security-measures,
.definitions,
.scope-of-services,
.user-obligations,
.intellectual-property,
.liability,
.complaints,
.final-provisions,
.hours {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  padding: 12px 14px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}

/* Icons inside detail rows */
.contact-details { display: flex; flex-direction: column; gap: 10px; }
.contact-details div { display: flex; align-items: center; gap: 10px; }
.contact-details img { width: 18px; height: 18px; opacity: 0.9; }

/* ===========================
   Testimonials (light surfaces, dark text)
   =========================== */
.testimonials { width: 100%; }
.testimonials .content-wrapper { background: var(--brand-accent); border-color: #E1E4DE; }
.testimonials h2, .testimonials p, .testimonials blockquote, .testimonials strong, .testimonials span { color: var(--text-dark); }

.testimonial-card {
  background: #ffffff; color: var(--text-dark);
  border: 1px solid #E7EAE4; border-radius: var(--radius-lg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.testimonial-card blockquote { font-size: 16px; color: #222; }
.testimonial-card p { margin: 0; color: #333; }
.rating-summary { display: flex; align-items: center; gap: 10px; }
.rating-summary img { width: 18px; height: 18px; }

/* ===========================
   Stats, Certifications, Logos
   =========================== */
.kpi-list li strong { color: #fff; font-size: 20px; }
.certifications-list { display: flex; flex-wrap: wrap; gap: 10px; }
.certifications-list span,
.logo-list-textual span {
  padding: 8px 12px; border-radius: 999px;
  background: #fff; color: var(--brand-primary); border: 1px solid #E3E7E0;
}

/* ===========================
   Blog elements
   =========================== */
.search-bar { display: flex; align-items: center; gap: 10px; }
.search-bar input {
  flex: 1 1 260px; min-height: 44px; padding: 10px 14px;
  border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.06); color: var(--brand-accent);
}
.pagination { display: flex; align-items: center; gap: 10px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; min-width: 36px; border-radius: 10px;
  border: 1px solid var(--line);
}
.pagination span { background: rgba(0,229,255,0.08); border-color: var(--line-strong); }
.sorting-controls { display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud span { padding: 6px 10px; border-radius: 999px; border: 1px dashed var(--line-strong); background: rgba(0,229,255,0.05); }

/* ===========================
   Footer
   =========================== */
footer {
  background: #0A100D; border-top: 1px solid var(--line);
  padding: 32px 0; color: var(--text-muted);
}
footer .content-wrapper { background: transparent; border: none; padding: 0; gap: 16px; }
.footer-navigation, .legal-links, .newsletter-signup {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.footer-navigation a, .legal-links a { color: var(--text); opacity: 0.85; }
.footer-navigation a:hover, .legal-links a:hover { opacity: 1; color: #fff; }
.newsletter-signup a { margin-left: auto; display: inline-flex; }
@media (max-width: 768px) { .newsletter-signup { flex-direction: column; align-items: flex-start; } .newsletter-signup a { margin-left: 0; } }

/* ===========================
   CTA sections
   =========================== */
.cta .content-wrapper,
.cta-newsletter .content-wrapper,
.cta-project-support .content-wrapper,
.cta-brief-calendar .content-wrapper,
.features-related .content-wrapper,
.return-home .content-wrapper {
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-neon);
}

/* ===========================
   Header navigation (Desktop spacing)
   =========================== */
@media (min-width: 1200px) {
  header nav a { padding: 10px 16px; }
}

/* ===========================
   Cards (generic)
   =========================== */
.card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft), var(--shadow-neon); border-color: var(--line-strong); }

/* ===========================
   Forms & Inputs baseline
   =========================== */
input[type="text"], input[type="email"], input[type="search"], textarea, select {
  min-height: 44px; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.06); color: var(--brand-accent);
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }

/* ===========================
   Legal pages (content blocks)
   =========================== */
.legal .content-wrapper { background: rgba(255,255,255,0.02); border: 1px solid var(--line); }
.legal h2 { color: #fff; }

/* ===========================
   Process & Steps
   =========================== */
.stepper li, .step-list li, .steps-overview li { position: relative; padding-left: 16px; }
.stepper li::before, .step-list li::before, .steps-overview li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,229,255,0.8); margin-right: 8px;
}

/* ===========================
   Portfolio-specific helpers
   =========================== */
.filters { border-color: var(--line-strong); }
.before-after-points, .measurement-method { background: rgba(255,255,255,0.03); }

/* ===========================
   Success badge (thank you)
   =========================== */
.success-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #E8FFF9; color: #0C3A2C; border: 1px solid #B6F2E2; }
.success-badge img { width: 18px; height: 18px; }

/* ===========================
   Mobile-responsive stacks
   =========================== */
/* Text-image orientation already covered by .text-image-section rule */

/* Widen layouts on desktop */
@media (min-width: 768px) {
  .content-wrapper { padding: 28px; }
}
@media (min-width: 992px) {
  .content-wrapper { padding: 32px; }
  /* Typical two/three across layouts using flex wrap */
  .feature-grid li, .service-items li, .service-categories li, .values-grid li, .vision-points li, .kpi-list li, .post-list li, .pricing-models li {
    flex: 1 1 calc(33% - 20px);
  }
  .featured-posts-list li, .case-list li, .qa-list li { flex: 1 1 calc(50% - 20px); }
}

/* ===========================
   Header layout tightening on larger screens
   =========================== */
@media (min-width: 992px) {
  header { gap: 18px; }
  header nav { gap: 6px; margin-left: 8px; }
  header a.btn-primary, header a.btn-secondary { margin-left: 6px; }
}

/* ===========================
   Contact lists
   =========================== */
.contact_channels li strong, .contact-data ul li strong { color: #fff; }

/* ===========================
   Accessibility focus for links in content
   =========================== */
.content-wrapper a:not(.btn-primary):not(.btn-secondary):focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; border-radius: 6px; }

/* ===========================
   Cookie Consent Banner & Modal
   =========================== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 20px; background: rgba(12,17,23,0.96);
  border-top: 1px solid var(--line-strong);
  transform: translateY(100%);
  transition: transform var(--transition-med);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .cookie-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px; width: 100%; max-width: var(--container-max);
}
.cookie-banner p { margin: 0; flex: 1 1 220px; color: var(--text-muted); }
.cookie-actions { display: flex; align-items: center; gap: 10px; }
.cookie-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 8px 14px; border-radius: 10px; border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--brand-accent); cursor: pointer; }
.cookie-accept { background: var(--brand-secondary); color: #1A1207; border-color: transparent; }
.cookie-reject { border-color: var(--line-strong); }
.cookie-settings { border-color: var(--line-strong); background: rgba(0,229,255,0.08); }
.cookie-btn:hover { transform: translateY(-1px); }

/* Cookie Preferences Modal */
.cookie-modal-backdrop { position: fixed; inset: 0; z-index: 3100; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity var(--transition-med); }
.cookie-modal-backdrop.show { opacity: 1; pointer-events: all; }
.cookie-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -40%);
  z-index: 3200; width: min(92%, 720px);
  display: flex; flex-direction: column; gap: 16px; padding: 20px;
  background: #0E1612; border: 1px solid var(--line-strong); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft), 0 0 24px rgba(0,229,255,0.2);
  opacity: 0; pointer-events: none; transition: opacity var(--transition-med), transform var(--transition-med);
}
.cookie-modal.show { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }
.cookie-modal h3 { color: #fff; margin-bottom: 6px; }
.cookie-category-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,0.02); }
.cookie-category-row .label { display: flex; flex-direction: column; gap: 2px; }
.cookie-modal .actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

/* Toggle switch */
.toggle { position: relative; display: inline-flex; align-items: center; }
.toggle input { position: absolute; opacity: 0; inset: 0; }
.toggle .slider { width: 46px; height: 26px; border-radius: 999px; background: rgba(255,255,255,0.15); border: 1px solid var(--line); position: relative; transition: background var(--transition-fast), border-color var(--transition-fast); }
.toggle .slider::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform var(--transition-fast); }
.toggle input:checked + .slider { background: rgba(0,229,255,0.35); border-color: var(--line-strong); }
.toggle input:checked + .slider::after { transform: translateX(20px); }

/* ===========================
   Micro-interactions & Utilities
   =========================== */
.fade-in { animation: fadeIn 400ms ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.hr-line { width: 100%; height: 1px; background: var(--line); }

/* ===========================
   Specific minor tweaks
   =========================== */
.eco_certifications img { width: 48px; height: auto; }
.material-tags span, .methodology-badges span, .topic-filters a { padding: 6px 10px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--brand-accent); background: rgba(0,229,255,0.06); }
.filters span { color: var(--text-muted); }

/* ===========================
   Desktop refinements for layout spacing
   =========================== */
@media (min-width: 992px) {
  .trust-badges { gap: 20px; }
  .testimonial-card { padding: 24px; }
  .filters, .result-highlights { justify-content: space-between; }
  .contact-details { flex-direction: row; flex-wrap: wrap; gap: 16px 28px; }
  .footer-navigation, .legal-links { justify-content: flex-start; }
}

/* ===========================
   Ensure min 20px between content blocks
   =========================== */
.content-wrapper > * + * { margin-top: 0; }
.content-wrapper { gap: 20px; }

/* ===========================
   Prevent overlaps via spacing
   =========================== */
section .container .content-wrapper > :not(:last-child) { margin-bottom: 0; }

/* End of stylesheet */
