@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ================================
   FIXPROF – Complete Redesign
   ================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1a56db;
  --blue-dark:   #1344b4;
  --blue-soft:   #eff6ff;
  --blue-mid:    #dbeafe;
  --green:       #059669;
  --dark:        #0c1a2e;
  --dark-2:      #1e2d3d;
  --text:        #1f2937;
  --muted:       #64748b;
  --muted-2:     #94a3b8;
  --border:      #e2e8f0;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --orange:      #ea7424;
  --shadow-sm:   0 2px 8px rgba(12,26,46,.06);
  --shadow:      0 8px 28px rgba(12,26,46,.10);
  --shadow-lg:   0 20px 50px rgba(12,26,46,.14);
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
}

html { scroll-behavior: smooth; overflow-y: scroll; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================
   HEADER
   ================================ */

header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

/* Logo */
.brand { display: flex; flex-direction: column; align-items: flex-start; }

.brand-name {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--dark);
}

.brand-name .accent {
  color: var(--blue);
}

.brand-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: all .15s ease;
}

.nav-links a:hover { color: var(--dark); background: var(--bg); }
.nav-links a.active { color: var(--blue); }

.nav-links a.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  margin-left: 8px;
}

.nav-links a.nav-cta:hover { background: var(--blue-dark); }

/* Mobile */
#navToggle { display: none; }

.hamburger {
  display: none;
  width: 40px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  background: #fff;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.mobile-nav a.active { color: var(--blue); }

.mobile-nav a.nav-cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
}

/* ================================
   BUTTONS
   ================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .15s ease;
  box-shadow: 0 4px 14px rgba(26,86,219,.25);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,.32);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .15s ease;
}

.btn-secondary:hover { background: var(--bg); border-color: #c7d2e0; }

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .15s ease;
  box-shadow: 0 4px 16px rgba(234,116,36,.30);
}

.btn-orange:hover {
  background: #d4601a;
  transform: translateY(-1px);
}

/* ================================
   HERO – HOME
   ================================ */

.hero-home {
  background: linear-gradient(160deg, #ffffff 0%, #f0f6ff 60%, #e8f0fe 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--blue-mid);
  margin-bottom: 20px;
}

.hero-badge::before {
  content: "●";
  color: var(--green);
  font-size: 0.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-title .blue { color: var(--blue); }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.hero-trust-item .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Rechter kolom */
.hero-visual-wrap {
  position: relative;
}

.hero-visual-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,86,219,.1);
}

.hero-visual-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.hero-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-lbl {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ================================
   TRUST BAND
   ================================ */

.trust-band {
  padding: 16px 0;
}

.trust-band-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  gap: 0;
  box-shadow: var(--shadow-sm);
  justify-content: space-around;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
}

.trust-item .icon {
  font-size: 1.1rem;
}

/* ================================
   SECTIONS
   ================================ */

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-top {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ================================
   STEPS
   ================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all .2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--dark);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ================================
   PROJECT CARDS
   ================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-body {
  padding: 22px;
}

.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.project-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ================================
   FEATURE CARDS
   ================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ================================
   SPLIT BAND (CTA blokken)
   ================================ */

.split-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.split-dark h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}

.split-dark p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
}

.split-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.split-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.split-light {
  background: linear-gradient(135deg, #fff 0%, var(--blue-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}

.split-light h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 14px;
}

.split-light p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ================================
   FINAL CTA SECTION
   ================================ */

.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #1344b4 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-orange {
  font-size: 1.1rem;
  padding: 18px 36px;
}

/* ================================
   FORMS
   ================================ */

.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 600px;
}

.form-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Renovatie type knoppen */
.reno-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.reno-type {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: all .15s ease;
  text-align: left;
}

.reno-type:hover, .reno-type.selected {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.reno-type-icon { font-size: 1.4rem; margin-bottom: 6px; }
.reno-type-name { font-size: 0.92rem; font-weight: 700; color: var(--dark); }
.reno-type-desc { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ================================
   PAGE HEADER (inner pages)
   ================================ */

.page-header {
  background: linear-gradient(160deg, #fff 0%, var(--blue-soft) 100%);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-header .kicker { margin-bottom: 10px; }

.page-header h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 14px;
}

.page-header p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
}

/* ================================
   LISTS
   ================================ */

.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================
   FAQ
   ================================ */

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ================================
   FOOTER
   ================================ */

footer {
  margin-top: auto;
  background: var(--dark);
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 32px;
}

.footer-col a.footer-col-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 14px; }
.footer-col-logo span { font-size: 20px; font-weight: 800; letter-spacing: 0.04em; color: #fff; line-height: 1; display: inline-block; }
.footer-col-logo span .accent { color: #ea7424; }

.footer-tagline { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,.5); max-width: 320px; margin-bottom: 18px; }

.footer-col-title {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,.4); margin-bottom: 16px;
}

.footer-col a { display: block; margin-bottom: 11px; color: rgba(255,255,255,.65); text-decoration: none; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-logo, .footer-tagline { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ================================
   UTILITY
   ================================ */

.bg-white { background: #fff; }
.bg-light { background: var(--bg); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 980px) {
  .hero-grid,
  .split-dark,
  .split-light { grid-template-columns: 1fr; }

  .steps-grid,
  .projects-grid,
  .features-grid { grid-template-columns: 1fr; }

  .split-dark,
  .split-light { padding: 32px 24px; }

  .hero-visual-img { display: none; }
  .hero-stats { display: none; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #navToggle:checked ~ .mobile-nav { display: block; }
}

@media (max-width: 640px) {
  .reno-types { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .split-pills { grid-template-columns: 1fr; }
  .trust-band-inner { flex-direction: column; gap: 8px; }
  .section { padding: 56px 0; }
  .hero-home { padding: 48px 0 40px; }
}


/* === CONSISTENTE TYPOGRAFIE === */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .page-header h1,
.step-title, .feature-title, .project-title,
.form-title, .brand-name {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.hero-title { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 900; }
.page-header h1 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 900; }
.section-title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; }
.step-title { font-size: 1.1rem; font-weight: 700; }
.feature-title { font-size: 1.08rem; font-weight: 700; }
.project-title { font-size: 1.1rem; font-weight: 700; }
.card-title { font-size: 1rem; font-weight: 700; }

.wizard-secure .wizard-price-btn{
    background:#ea7424 !important;
    color:#fff !important;
    text-decoration:none !important;
    padding:12px 22px !important;
    border-radius:999px !important;
    font-weight:800 !important;
    font-size:15px !important;
    display:inline-flex !important;
    align-items:center !important;
    gap:6px !important;
    box-shadow:0 6px 16px rgba(234,116,36,.28) !important;
}

.wizard-secure .wizard-price-btn:hover{
    background:#d86416 !important;
    color:#fff !important;
}

/* ===== PRIJSINDICATIE MENU ===== */

.nav-price{
    background:#ea7424;
    color:#fff !important;
    padding:8px 16px;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    transition:all .25s ease;
}

.nav-price:hover{
    background:#d86416 !important;
    color:#fff !important;
}
/* FixProf brand + language selector */
.fixprof-brand { flex-shrink: 0; }
.fixprof-logo { display:block; width:210px; max-width:28vw; height:auto; }
.fixprof-footer-logo { display:block; width:190px; max-width:100%; height:auto; filter: brightness(0) invert(1); opacity:.98; }
.footer-logo-link { display:inline-block; margin-bottom:14px; text-decoration:none; }
.language-switcher { display:flex; align-items:center; gap:3px; margin-left:4px; padding-left:8px; border-left:1px solid var(--border); }
.lang-link { display:inline-flex!important; align-items:center; justify-content:center; min-width:30px; padding:6px 7px!important; border-radius:8px; font-size:.72rem!important; font-weight:800!important; color:var(--muted)!important; background:transparent; }
.lang-link:hover, .lang-link.active { color:var(--blue)!important; background:var(--blue-soft); }
.mobile-language-switcher { display:flex; gap:8px; padding:12px 0 4px; border-top:1px solid var(--border); margin-top:6px; }
.mobile-language-switcher .lang-link { min-width:auto; padding:8px 10px!important; }
@media (max-width: 1050px) {
  .fixprof-logo { width:180px; max-width:42vw; }
}
@media (max-width: 560px) {
  .fixprof-logo { width:155px; max-width:58vw; }
  .fixprof-footer-logo { width:165px; }
}
